diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-11-05 09:33:23 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-11-05 09:33:23 +0100 |
| commit | 86f7a15a2843f8c207124345d13969fb05ecc611 (patch) | |
| tree | d0850ce1f334093f70a06eec5de97fb8b54372c2 /themes/templates | |
| parent | 80e0fe22d28687f3599a949f1a4d29171b12b20f (diff) | |
| download | flevum-86f7a15a2843f8c207124345d13969fb05ecc611.tar.gz | |
Move themes files into the root directory
Diffstat (limited to 'themes/templates')
| -rw-r--r-- | themes/templates/blog.html | 7 | ||||
| -rw-r--r-- | themes/templates/default.html | 34 | ||||
| -rw-r--r-- | themes/templates/header.html | 3 | ||||
| -rw-r--r-- | themes/templates/page.html | 6 | ||||
| -rw-r--r-- | themes/templates/post.html | 19 | ||||
| -rw-r--r-- | themes/templates/tag.html | 9 |
6 files changed, 0 insertions, 78 deletions
diff --git a/themes/templates/blog.html b/themes/templates/blog.html deleted file mode 100644 index 6f5c48d..0000000 --- a/themes/templates/blog.html +++ /dev/null @@ -1,7 +0,0 @@ -<section class="post-list"> - $for(posts)$ - $partial("_includes/components/post.html")$ - $endfor$ -</section> - -$partial("_includes/components/pagination.html")$ diff --git a/themes/templates/default.html b/themes/templates/default.html deleted file mode 100644 index 80e9bd1..0000000 --- a/themes/templates/default.html +++ /dev/null @@ -1,34 +0,0 @@ -<!DOCTYPE html> -<html data-theme="dark"> - <head> - <meta charset="utf-8"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - - <meta name="author" content="Eugen Wissner" /> - - $partial("_includes/meta.html")$ - - <title>$title$ | Flevum</title> - - <link rel="icon" type="image/png" href="/assets/images/favicon.svg"> - <link href="/assets/css/styles.css?v=1" rel="stylesheet"> - <link href="/assets/css/custom.css?v=2" rel="stylesheet"> - </head> - - <body> - $partial("_includes/partials/burgerMenu.html")$ - - $partial("_includes/layout/header.html")$ - - $partial("_includes/layout/navigation.html")$ - - $partial("_includes/partials/headerSeparator.html")$ - - <main class="$if(active-index)$wrapper long$else$wrapper$endif$" role="main"> - $body$ - </main> - - $partial("_includes/layout/footer.html")$ - </body> -</html> diff --git a/themes/templates/header.html b/themes/templates/header.html deleted file mode 100644 index 6f5e1fe..0000000 --- a/themes/templates/header.html +++ /dev/null @@ -1,3 +0,0 @@ -<header> - <h1>$title$</h1> -</header> diff --git a/themes/templates/page.html b/themes/templates/page.html deleted file mode 100644 index a1b91c9..0000000 --- a/themes/templates/page.html +++ /dev/null @@ -1,6 +0,0 @@ -<article class="page single" role="article"> - <h2 class="page-title" role="heading">$title$</h2> - <div class="page-content"> - $body$ - </div> -</article> diff --git a/themes/templates/post.html b/themes/templates/post.html deleted file mode 100644 index e9d7bbf..0000000 --- a/themes/templates/post.html +++ /dev/null @@ -1,19 +0,0 @@ -<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> diff --git a/themes/templates/tag.html b/themes/templates/tag.html deleted file mode 100644 index a9566c7..0000000 --- a/themes/templates/tag.html +++ /dev/null @@ -1,9 +0,0 @@ -<h1 class="post-lists-title">Alle Posts mit Tag: <span>$title$</span></h1>
-
-<section class="post-list">
- $for(posts)$
- $partial("_includes/components/post.html")$
- $endfor$
-</section>
-
-$partial("_includes/components/pagination.html")$
|
