Skip to content

Commit

Permalink
add alumni page
Browse files Browse the repository at this point in the history
  • Loading branch information
damanikjosh committed Mar 13, 2024
1 parent c95fffd commit 6c2237c
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ collections:
people:
output: true
permalink: /:collection/:path/
alumni:
output: true
permalink: /:collection/:path/
projects:
output: true
permalink: /:collection/:path/
33 changes: 33 additions & 0 deletions alumni/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
layout: page
title: Alumni
description: Meet our alumni
background: '/img/lics_homecoming.jpeg'
---

<!--# Filter by position "Professor"-->



<div class="container">
<h2 class="mb-5">Alumni <span>({{ site.alumni | size }})</span></h2>
{% for person in site.alumni %}
<div class="row mb-5 mx-2">
<div class="col-md-2">
<div class="d-none d-md-block">
<img class="img-fluid rounded mb-3 mb-md-0" src="{{ person.image | prepend: site.baseurl | replace: '//', '/' }}", alt="">
</div>
<!-- <img class="img-fluid rounded mb-3 mb-md-0" src="{{ "/img/4lics.png" | relative_url }}" alt="">-->
</div>
<div class="col-md-10">
<a href="{{ person.url | prepend: site.baseurl | replace: '//', '/' }}">
<h3>{{ person.name }} {% if person.korean %}<span class="text-muted">{{ person.korean }}</span> {% endif %}</h3>
</a>

<p class="mt-1">{{ person.position }}</p>
</div>
</div>
{% endfor %}

<!-- /.row -->
</div>
1 change: 1 addition & 0 deletions people/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ <h3>{{ person.name }} {% if person.korean %}<span class="text-muted">{{ person.k
</div>
</div>
{% endfor %}
<a href="/alumni"><h2 class="mb-5">Alumni</h2></a>

<!-- /.row -->
</div>

0 comments on commit 6c2237c

Please sign in to comment.