diff options
Diffstat (limited to 'templates/post.html')
| -rw-r--r-- | templates/post.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..794c715 --- /dev/null +++ b/templates/post.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} {% block content %} + +<div class="window"> + <div class="title-bar"> + <b>📰 Post: {{ page.title }}</b> + <div class="title-bar-controls"> + <button + aria-label="Help" + data-tooltip="Posted {{ page.date }}
{{ page.word_count }} words ({{ page.reading_time }} minutes)" + ></button> + <a href="../"><button aria-label="Close"></button></a> + </div> + </div> + <div class="window-body"> + <h1>{{ page.title }}</h1> + <article>{{ page.content | safe}}</article> + </div> +</div> +{% endblock content %} |
