Relicense and mark drafts
All checks were successful
/ deploy (push) Successful in 12s

This commit is contained in:
Minecon724 2025-01-20 17:34:20 +01:00
parent e0faa48810
commit 6106cd62d1
Signed by untrusted user who does not match committer: Minecon724
GPG key ID: 3CCC4D267742C8E8
2 changed files with 12 additions and 3 deletions

View file

@ -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>

View file

@ -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>