Skip to content
Snippets Groups Projects
Commit befeac99 authored by Pedro da Rocha Pinto's avatar Pedro da Rocha Pinto
Browse files

Updatdd the people's page.

parent cf7a3e73
No related branches found
No related tags found
No related merge requests found
</p>
<div class="col-sm-4 card text-xs-center">
</br>
<a href="{{ person.url }}">
<img class="img-circle" style="width: 75%" src="{{ person.image | prepend: site.baseurl }}" alt="Photo of {{ person.firstname }} {{ person.lastname }}" />
<h4 class="card-title">{{ person.firstname }} {{ person.lastname }}</h4>
</a>
<h6 class="card-subtitle text-muted">{{ person.position }}</h6>
</br>
</div>
......@@ -261,3 +261,7 @@ h6, .h6 {
.site-footer :last-child {
margin-bottom: 0;
}
.people {
min-height: 280px;
}
\ No newline at end of file
......@@ -5,5 +5,13 @@ menu_order: 2
permalink: /people/
---
<div class="row">
{% for person in site.people %}{% include person-card.html %}{% endfor %}
{% for person in site.people %}
<div class="col-sm-4 col-md-3 card card-block text-xs-center people">
<a href="{{ person.url }}">
<img class="img-circle" style="width: 75%" src="{{ person.image | prepend: site.baseurl }}" alt="Photo of {{ person.firstname }} {{ person.lastname }}" />
<h4 class="card-title">{{ person.firstname }} {{ person.lastname }}</h4>
</a>
<h6 class="card-subtitle text-muted">{{ person.position }}</h6>
</div>
{% endfor %}
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment