1
0
ami.sc/projects.html
2023-11-22 17:14:28 -06:00

182 lines
5.6 KiB
HTML

---
title: "Ami :: Projects"
layout: projects
parent: "Projects"
---
<div class="projects_box">
<h2>Research Projects</h2>
<p>Projects developed as part of a research initiative</p>
<table class="projects_table">
<thead>
<tr>
<th scope="col">Project Name</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
{% assign projs = site.projects | where: "type", "research" %}
{% for project in projs %}
<tr>
<th scope="row">
<a href="{{ project.url }}" class="project_link">
<img src="/assets/project_icons/{{ project.icon }}"/>
<h3>{{ project.title }}&nbsp;&nbsp;🔗</h3>
</a>
</th>
<td>
{% if project.status == "In Progress" %}
<p class="progress_status">
◕ In Progress
</p>
{% elsif project.status == "Ended" %}
<p class="completed_status">
✓ Ended
</p>
{% else %}
<p class="incomplete_status">
✗ Incomplete
</p>
{% endif %}
</td>
</tr>
</a>
{% endfor %}
</tbody>
</table>
</div>
<div class="projects_box">
<h2>Public Projects</h2>
<p>Various projects of public interest</p>
<table class="projects_table">
<thead>
<tr>
<th scope="col">Project Name</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
{% assign projs = site.projects | where: "type", "public" %}
{% for project in projs %}
<tr>
<th scope="row">
<a href="{{ project.url }}" class="project_link">
<img src="/assets/project_icons/{{ project.icon }}"/>
<h3>{{ project.title }}&nbsp;&nbsp;🔗</h3>
</a>
</th>
<td>
{% if project.status == "In Progress" %}
<p class="progress_status">
◕ In Progress
</p>
{% elsif project.status == "Ended" %}
<p class="completed_status">
✓ Ended
</p>
{% else %}
<p class="incomplete_status">
✗ Incomplete
</p>
{% endif %}
</td>
</tr>
</a>
{% endfor %}
</tbody>
</table>
</div>
<div class="projects_box">
<h2>School Projects</h2>
<p>Projects developed as part of school assignments</p>
<table class="projects_table">
<thead>
<tr>
<th scope="col">Project Name</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
{% assign projs = site.projects | where: "type", "school" %}
{% for project in projs %}
<tr>
<th scope="row">
<a href="{{ project.url }}" class="project_link">
<img src="/assets/project_icons/{{ project.icon }}"/>
<h3>{{ project.title }}&nbsp;&nbsp;🔗</h3>
</a>
</th>
<td>
{% if project.status == "In Progress" %}
<p class="progress_status">
◕ In Progress
</p>
{% elsif project.status == "Ended" %}
<p class="completed_status">
✓ Ended
</p>
{% else %}
<p class="incomplete_status">
✗ Incomplete
</p>
{% endif %}
</td>
</tr>
</a>
{% endfor %}
</tbody>
</table>
</div>
<div class="projects_box">
<h2>Personal Projects</h2>
<p>Personal-interest projects</p>
<table class="projects_table">
<thead>
<tr>
<th scope="col">Project Name</th>
<th scope="col">Status</th>
</tr>
</thead>
<tbody>
{% assign projs = site.projects | where: "type", "personal" %}
{% for project in projs %}
<tr>
<th scope="row">
<a href="{{ project.url }}" class="project_link">
<img src="/assets/project_icons/{{ project.icon }}"/>
<h3>{{ project.title }}&nbsp;&nbsp;🔗</h3>
</a>
</th>
<td>
{% if project.status == "In Progress" %}
<p class="progress_status">
◕ In Progress
</p>
{% elsif project.status == "Ended" %}
<p class="completed_status">
✓ Ended
</p>
{% else %}
<p class="incomplete_status">
✗ Incomplete
</p>
{% endif %}
</td>
</tr>
</a>
{% endfor %}
</tbody>
</table>
</div>