mirror of
https://github.com/almet/notmyidea.git
synced 2025-05-01 13:02:23 +02:00
9 lines
258 B
HTML
9 lines
258 B
HTML
{% extends "base.html" %}
|
|
{% block links %}
|
|
<li><a href="{{ SITEURL }}">↵ </a></li>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<h1>{{ article.title }}</h1>
|
|
<p class="date">Published on {{ article.locale_date }}</p>
|
|
{{ article.content }}
|
|
{% endblock %}
|