This commit is contained in:
parent
e0faa48810
commit
6106cd62d1
2 changed files with 12 additions and 3 deletions
|
@ -22,6 +22,9 @@
|
|||
<header>
|
||||
<p id="title">
|
||||
<a href="">{{ article.title }}</a>
|
||||
{% if article.draft %}
|
||||
<small class="fading">DRAFT DRAFT D</small>
|
||||
{% endif %}
|
||||
</p>
|
||||
<p id="description">
|
||||
{{ article.summary }}
|
||||
|
@ -52,7 +55,7 @@
|
|||
|
||||
<div id="footer">
|
||||
<p>Last modified {{ article.modifiedAt | date("dd.MM.yyyy HH:mm") }} UTC by {{ article.modifiedBy }}</p>
|
||||
<p>Content on m724.eu is licensed under <a href="https://creativecommons.org/licenses/by/4.0" target="_blank" rel="license noopener noreferrer">CC BY 4.0</a></p>
|
||||
<p>Content on m724.eu is licensed under <a href="https://creativecommons.org/licenses/by-nc/4.0" target="_blank" rel="license noopener noreferrer">CC BY-NC 4.0</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -17,7 +17,13 @@
|
|||
<a href="post/{{ article.slug }}.html" class="post-short">
|
||||
<article>
|
||||
<header>
|
||||
<p class="title">{{ article.title }}</p>
|
||||
<p class="title">
|
||||
{{ article.title }}
|
||||
|
||||
{% if article.draft %}
|
||||
<small>DRAFT</small>
|
||||
{% endif %}
|
||||
</p>
|
||||
<p class="description">{{ article.summary }}</p>
|
||||
</header>
|
||||
|
||||
|
@ -30,7 +36,7 @@
|
|||
</div>
|
||||
|
||||
<div id="footer">
|
||||
<p>Content on m724.eu is licensed under <a href="https://creativecommons.org/licenses/by/4.0" target="_blank" rel="license noopener noreferrer">CC BY 4.0</a></p>
|
||||
<p>Content on m724.eu is licensed under <a href="https://creativecommons.org/licenses/by-nc/4.0" target="_blank" rel="license noopener noreferrer">CC BY-NC 4.0</a></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Reference in a new issue