Move themes files into the root directory

This commit is contained in:
2025-11-05 09:33:23 +01:00
parent 80e0fe22d2
commit 86f7a15a28
137 changed files with 32 additions and 31 deletions

View File

@@ -0,0 +1,7 @@
<section class="post-list">
$for(posts)$
$partial("templates/_includes/components/post.html")$
$endfor$
</section>
$partial("templates/_includes/components/pagination.html")$

View File

@@ -0,0 +1,6 @@
<article class="page single" role="article">
<h2 class="page-title" role="heading">$title$</h2>
<div class="page-content">
$body$
</div>
</article>

View File

@@ -0,0 +1,19 @@
<article class="post" role="article">
<h2 class="post-title">
$title$
</h2>
<div class="post-author">
<div class="post-meta">
<time datetime="$date$" class="post-date">$published$</time>
<div class="post-categories"><a href="/$tags$">$tags$</a></div>
</div>
</div>
<div class="post-content">
$body$
</div>
<div class="post-footer">
</div>
</article>

View File

@@ -0,0 +1,9 @@
<h1 class="post-lists-title">Alle Posts mit Tag: <span>$title$</span></h1>
<section class="post-list">
$for(posts)$
$partial("templates/_includes/components/post.html")$
$endfor$
</section>
$partial("templates/_includes/components/pagination.html")$