diff options
Diffstat (limited to 'theme/templates')
| -rw-r--r-- | theme/templates/index.html | 2 | ||||
| -rw-r--r-- | theme/templates/post.html | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/theme/templates/index.html b/theme/templates/index.html index 48176e3..4491f14 100644 --- a/theme/templates/index.html +++ b/theme/templates/index.html @@ -1,5 +1,5 @@ {% extends "base.html" %} {% block main %} -<section> +<section class="metadata"> <b>User</b> <span>Christian Cleberg <[email protected]></span> <b>Context</b> <span>Technology Assurance Manager</span> <b>Status</b>Active</span> diff --git a/theme/templates/post.html b/theme/templates/post.html index 0dc35e7..780a959 100644 --- a/theme/templates/post.html +++ b/theme/templates/post.html @@ -8,11 +8,11 @@ <meta property="og:description" content="{{ project_description }}" /> {% endif %} {% endblock %} {% block main %} <article> - <section class="post-metadata"> - <b>Object</b> <span>{{ post.title }}</span> - <b>Timestamp</b> <span><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time></span> - <b>Summary</b> <span>{{ post.description }}</span> - </section> + <section class="metadata"> + <b>Object</b> <span>{{ post.title }}</span> + <b>Timestamp</b> <span><time datetime='{{ post.date|strftime("%Y-%m-%d") }}'>{{ post.date|strftime("%Y-%m-%d %H:%M:%S") }}</time></span> + <b>Summary</b> <span>{{ post.description }}</span> + </section> <section>{{ post.html | safe }}</section> <div class="reply-link"><a href="mailto:[email protected]">Reply via email →</a></div> </article> |
