summaryrefslogtreecommitdiff
path: root/themes/simple/templates/article.html
diff options
context:
space:
mode:
authorDaniel Hader <[email protected]>2026-08-29 13:06:16 -0500
committerDaniel Hader <[email protected]>2026-08-29 13:06:16 -0500
commit5fa81500dcc07a853a01b0b0d813069467995807 (patch)
tree4edb04d0a99ee88492f99eb7a09d8982b56280f9 /themes/simple/templates/article.html
work in progress css
Diffstat (limited to 'themes/simple/templates/article.html')
-rw-r--r--themes/simple/templates/article.html65
1 files changed, 65 insertions, 0 deletions
diff --git a/themes/simple/templates/article.html b/themes/simple/templates/article.html
new file mode 100644
index 0000000..a01de10
--- /dev/null
+++ b/themes/simple/templates/article.html
@@ -0,0 +1,65 @@
+{% extends "base.html" %}
+{% block html_lang %}{{ article.lang }}{% endblock %}
+
+{% block title %}{{ SITENAME|striptags }} - {{ article.title|striptags }}{% endblock %}
+
+{% block head %}
+ {{ super() }}
+
+ {% import 'translations.html' as translations with context %}
+ {% if translations.entry_hreflang(article) %}
+ {{ translations.entry_hreflang(article) }}
+ {% endif %}
+
+ {% if article.description %}
+ <meta name="description" content="{{article.description}}" />
+ {% endif %}
+
+ {% for tag in article.tags %}
+ <meta name="tags" content="{{tag}}" />
+ {% endfor %}
+
+{% endblock %}
+
+{% block content %}
+ <article>
+ <header>
+ <h2>
+ <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
+ title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
+ {% import 'translations.html' as translations with context %}
+ {{ translations.translations_for(article) }}
+ </header>
+ {{ article.content }}
+ <footer>
+ <p>Published: <time datetime="{{ article.date.isoformat() }}">
+ {{ article.locale_date }}
+ </time></p>
+ {% if article.modified %}
+ <p>Last updated: <time datetime="{{ article.modified.isoformat() }}">
+ {{ article.locale_modified }}
+ </time></p>
+ {% endif %}
+ {% if article.authors %}
+ <address>
+ By {% for author in article.authors %}
+ <a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
+ {% endfor %}
+ </address>
+ {% endif %}
+ {% if article.category %}
+ <p>
+ Category: <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
+ </p>
+ {% endif %}
+ {% if article.tags %}
+ <p>
+ Tags:
+ {% for tag in article.tags %}
+ <a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>
+ {% endfor %}
+ </p>
+ {% endif %}
+ </footer>
+ </article>
+{% endblock %}