home.html
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{% if not article.hidden %} 8<article class="content-area"> 9{% if article["image"] %} 10<img src="{{ article['image'] }}" alt="{{ article['image-alt'] }}" class="article-image"> 11{% endif %} 12<h2><a href="/articles/{{ article.file_name }}" class="article-title">{{ article["title"] }}</a></h2> 13<div class="home-article-date">{{ article.date | strftime("%Y-%m-%d") }}</div> 14<p>{{ article.content | first_paragraph | markdown }}</p> 15</article> 16{% endif %} 17{% endfor %} 18{% endblock %}