Browse Source

update artchive-entry.html template.

Starting to add extra HTML and CSS tags and rules. This is just the start to
building out this template.
stable
Craig Oates 2 years ago
parent
commit
f74ae90e02
  1. 25
      templates/archive-entry.html

25
templates/archive-entry.html

@ -1,7 +1,26 @@
{% extends "layouts/default.html" %}
{% block title %}{{db-data.title}}{% endblock %}
{% block content %}
<main>
{{data | safe}}
</main>
<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 %}

Loading…
Cancel
Save