94 lines
1.9 KiB
Markdown
Executable File
94 lines
1.9 KiB
Markdown
Executable File
---
|
|
layout: default
|
|
title: Pessoas
|
|
displaymenu: true
|
|
lang: pt
|
|
---
|
|
|
|
<H1>Coordenador</H1>
|
|
|
|
<div>
|
|
{% assign people_group = site.people | where:"grouped_by", "coordinator" %}
|
|
{% for people_item in people_group %}
|
|
{% include people.html %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<br style='clear: both;' />
|
|
|
|
<hr />
|
|
|
|
<H1>Discentes de Mestrado</H1>
|
|
|
|
<div>
|
|
{% assign people_group = site.people | where:"grouped_by", "master_students" %}
|
|
{% for people_item in people_group %}
|
|
{% include people.html %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<br style='clear: both;' />
|
|
|
|
<H1>Discentes de Graduação</H1>
|
|
|
|
<div>
|
|
{% assign people_group = site.people | where:"grouped_by", "undergraduate_students" %}
|
|
{% for people_item in people_group %}
|
|
{% include people.html %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<br style='clear: both;' />
|
|
|
|
<H1>Discentes de Ensino Médio</H1>
|
|
|
|
<div>
|
|
{% assign people_group = site.people | where:"grouped_by", "high_school_students" %}
|
|
{% for people_item in people_group %}
|
|
{% include people.html %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<br style='clear: both;' />
|
|
|
|
|
|
<hr />
|
|
|
|
<H1>Ex-alunos</H1>
|
|
|
|
<br style='clear: both;' />
|
|
|
|
<H2>Discentes de Mestrado</H2>
|
|
|
|
<div>
|
|
{% assign people_group = site.people | where:"grouped_by", "alumni_master_students" %}
|
|
{% for people_item in people_group %}
|
|
{% include people.html %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<br style='clear: both;' />
|
|
|
|
<H2>Discentes de Graduação</H2>
|
|
|
|
<div>
|
|
{% assign people_group = site.people | where:"grouped_by", "alumni_undergraduate_students" %}
|
|
{% for people_item in people_group %}
|
|
{% include people.html %}
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<!-- div class='people'>
|
|
<img src="/assets/people/rabbit.png"/>
|
|
<h1>Roney Rodrigo Ribeiro dos Santos</h1>
|
|
<!-- a href='?'>Github</a>
|
|
<a href='?'>Lattes</a>
|
|
</div>
|
|
|
|
<div class='people'>
|
|
<img src="/assets/people/rabbit.png"/>
|
|
<h1>Valdir de Siqueira Santos Junior</h1>
|
|
<!-- a href='?'>Github</a>
|
|
<a href='?'>Lattes</a>
|
|
</div -->
|