Add character profiles, new pages, and update layout styles
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m37s

This commit is contained in:
2025-03-17 18:47:11 +01:00
parent 72158d4464
commit 20b46587ee
21 changed files with 246 additions and 74 deletions

View File

@@ -0,0 +1,5 @@
---
layout: page
---

View File

@@ -5,7 +5,7 @@
</head>
<body>
{% include header.html %}
<main>
<main class="container">
{{ content }}
</main>
{% include footer.html %}

View File

@@ -2,6 +2,7 @@
layout: default
---
{% if site.posts and site.posts.size > 0 %}
{% for post in site.posts %}
<article>
<h1 class="cyber-h" style="margin-bottom: 0;"><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h1>
@@ -15,3 +16,6 @@ layout: default
</article>
<hr>
{% endfor %}
{% else %}
<div class="cyber-att-2" style="margin: 32px 0;">Es gibt noch keine Neuigkeiten...</div>
{% endif %}