Public archive for the Return to Ritherdon project. https://www.nicolaellisandritherdon.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
870 B

{% extends "layouts/default.html" %}
{% block title %}{{db-data.title}}{% endblock %}
{% block content %}
<article class="fe-article">
<div class="fe-article-header">
<div class="flex-row">
<img alt="{{db-data.title}}"
src="/storage/thumb/archive/{{db-data.slug}}">
<h1>{{db-data.title}}</h1>
</div>
<p>
Added to Site:
{{ db-data.created-at | datetime:
((:day 2) "/" (:month 2) "/" (:year 4) " " (:hour 2) ":" (:min 2)) }}
Last Updated:
{{ db-data.updated-at | datetime:
((:day 2) "/" (:month 2) "/" (:year 4) " " (:hour 2) ":" (:min 2)) }}
</p>
<p>{{ db-data.keywords | replace:, | with:" • " }}</p>
</div>
<div class="fe-article-body">
{{data | safe}}
</div>
</article>
{% endblock %}