1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2025-12-16 11:08:49 +00:00

Add buttons to go through posts

Closes #8
This commit is contained in:
Cadence Fish
2020-02-26 20:12:48 +13:00
parent becd2c2ec7
commit d32a12a134
8 changed files with 219 additions and 61 deletions

View File

@@ -2,4 +2,4 @@
include ../includes/post.pug
+post(post)
+post(post, true)

View File

@@ -1,11 +1,17 @@
include ./display_structured
mixin post(post)
mixin post(post, headerWithNavigation)
.post-page-divider
section.description-section
header.user-header
img(src=post.ownerPfpCacheP width=150 height=150 alt="").pfp
a.name(href=`/u/${post.getBasicOwner().username}`)= `${post.data.owner.full_name} (@${post.getBasicOwner().username})`
.user-header
header.user-header-inner
img(src=post.ownerPfpCacheP width=150 height=150 alt="").pfp
a.name(href=`/u/${post.getBasicOwner().username}`)= `${post.data.owner.full_name} (@${post.getBasicOwner().username})`
if headerWithNavigation
button.navigate-posts.previous
img(src="/static/img/arrow-circled.svg" alt="Previous post." style="transform: rotate(180deg)").icon
button.navigate-posts.next
img(src="/static/img/arrow-circled.svg" alt="Next post.").icon
if post.getCaption()
p.structured-text.description
+display_structured(post.getStructuredCaption())

View File

@@ -13,4 +13,4 @@ html
script(type="module" src="/static/js/post_overlay.js")
body.post-page
main
+post(post)
+post(post, false)