By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 projects.html

View raw Download
text/html • 419 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}Projects{% endblock %}
3
{% block content %}
4
<h1>Projects</h1>
5
6
{% for article in projects %}
7
<article class="content-area">
8
<h2><a href="/projects/{{ article.file_name }}" class="article-title">{{ article["title"] }}</a></h2>
9
<p>{{ article.content | first_paragraph | markdown }}</p>
10
</article>
11
{% endfor %}
12
{% endblock %}