diff options
author | cel 🌸 <cel@blos.sm> | 2024-07-11 02:38:39 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2024-07-11 02:38:39 +0100 |
commit | 3a1d7848cb3ceb122b573737b4fba8106792ab5d (patch) | |
tree | 6fb0101f38ecd8d3e4fcae79dc96a01d24468951 /templates/post.html | |
download | infoculture.pub-3a1d7848cb3ceb122b573737b4fba8106792ab5d.tar.gz infoculture.pub-3a1d7848cb3ceb122b573737b4fba8106792ab5d.tar.bz2 infoculture.pub-3a1d7848cb3ceb122b573737b4fba8106792ab5d.zip |
initial commit
Diffstat (limited to 'templates/post.html')
-rw-r--r-- | templates/post.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html new file mode 100644 index 0000000..77986ae --- /dev/null +++ b/templates/post.html @@ -0,0 +1,30 @@ +<main role="main"> + <article> + $if(thumbnail)$ + <div class="thumbnail" style="height: 30vh;">$thumbnail$</div> + $endif$ + <div class="panel"> + <section class="header"> + <div class="title"> + <h1>$title$</h1> + <a href="https://infoculture.pub$url$">permalink</a> + <a href="/$path$">raw</a> + </div> + <div class="meta"> + $if(author)$ + <h2 class="author">$author$</h2> + $endif$ + <h3 class="date">$date$</h3> + $if(tags)$ + <h3 class="tags">$tags$</h3> + $endif$ + </div> + </section> + <br> + <br> + <section> + $body$ + </section> + </div> + </article> +</main>
\ No newline at end of file |