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 /templates/_layouts/post.html | |
| parent | 80e0fe22d28687f3599a949f1a4d29171b12b20f (diff) | |
| download | flevum-86f7a15a2843f8c207124345d13969fb05ecc611.tar.gz | |
Move themes files into the root directory
Diffstat (limited to 'templates/_layouts/post.html')
| -rw-r--r-- | templates/_layouts/post.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/_layouts/post.html b/templates/_layouts/post.html new file mode 100644 index 0000000..e9d7bbf --- /dev/null +++ b/templates/_layouts/post.html @@ -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> |
