bibliogram/src/site/pug/post.pug

17 lines
324 B
Plaintext
Raw Normal View History

2020-02-21 12:35:19 +00:00
include includes/post
2020-01-18 15:38:14 +00:00
doctype html
html
head
title
if post.getCaptionIntroduction()
=post.getCaptionIntroduction()
else
=`Post from @${post.getBasicOwner().username}`
=` | Bibliogram`
2020-02-05 06:05:18 +00:00
include includes/head
2020-02-21 12:35:19 +00:00
script(type="module" src="/static/js/post_overlay.js")
2020-01-18 15:38:14 +00:00
body.post-page
2020-02-21 12:35:19 +00:00
main
+post(post)