Initial template work

This commit is contained in:
2021-02-15 17:26:06 +00:00
parent 9b3ea461b8
commit cb8a8d7374
9 changed files with 111 additions and 6 deletions

18
_layouts/post.lqd.html Normal file
View File

@@ -0,0 +1,18 @@
---
layout: default
---
<h2>{{ page.title }}</h2>
<div id="metadata">
{% if page.date %}
<span id="date">{{ page.date }}</span> by <span id="author">{{ page.author }}</span>
{% else %}
By <span id="author">{{ page.author }}</span>
{% endif %}
{% if page.tags %}
Tags: <span id="taglist">{{ page.tags | array_to_sentence_string: "" }}</span>
{% endif %}
</div>
<div id="content">
{{ content }}
</div>