cpred/_layouts/home.html
Florian 72158d4464
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 5m12s
Add breadcrumb navigation and enhance button functionality
2025-03-17 00:49:38 +01:00

18 lines
547 B
HTML

---
layout: default
---
{% for post in site.posts %}
<article>
<h1 class="cyber-h" style="margin-bottom: 0;"><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h1>
<p style="margin-top: 0;"><small>{{ post.date | date: "%d.%m.%Y" }}</small></p>
<p>{{ post.excerpt }}</p>
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="{{ post.url | relative_url }}">
Weiterlesen...
<span class="glitchtext">$_glitch;</span>
<span class="tag"></span>
</button>
</article>
<hr>
{% endfor %}