jekyll-theme-basic/_layouts/page.lqd.html

20 lines
438 B
HTML
Raw Normal View History

2021-02-15 17:26:06 +00:00
---
layout: default
---
<h2>{{ page.title }}</h2>
<div id="metadata">
2021-02-16 23:52:34 +00:00
<span id="url">{{ page.url }}</span>
2021-02-15 17:26:06 +00:00
{% 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>