mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
16 lines
414 B
HTML
16 lines
414 B
HTML
{% extends "samhuri.net.html" %}
|
|
{% block body %}
|
|
<article class="container">
|
|
<h1>Projects</h1>
|
|
|
|
{% for project in projects %}
|
|
<div class="project-listing">
|
|
<h4><a href="{{ project.path }}">{{ project.title }}</a></h4>
|
|
<p class="description">{{ project.description }}</p>
|
|
</div>
|
|
{% endfor %}
|
|
</article>
|
|
<div class="row clearfix">
|
|
<p class="fin"><i class="fa fa-code"></i></p>
|
|
</div>
|
|
{% endblock %}
|