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

 home.html

View raw Download
text/html • 678 B
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}Home{% endblock %}
3
{% block content %}
4
<h1>All articles</h1>
5
6
{% for article in articles %}
7
<article class="content-area">
8
{% if article["image"] %}
9
<img src="{{ article['image'] }}" alt="{{ article['image-alt'] }}" class="article-image">
10
{% endif %}
11
<h2><a href="/articles/{{ article.file_name }}" class="article-title">{{ article["title"] }}</a></h2>
12
<div class="home-article-date">{{ article.date | strftime("%Y-%m-%d") }}</div>
13
<p>{{ article.content | first_paragraph | markdown }}</p>
14
</article>
15
{% endfor %}
16
{% endblock %}