jschan - Anonymous imageboard software. Classic look, modern features and feel. Works without JavaScript and supports Tor, I2P, Lokinet, etc.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
933 B

mixin catalogtile(board, post, truncate)
article(class='catalog-tile')
- const postURL = `/${board._id}/thread/${post.postId}.html#${post.postId}`
if post.files.length > 0
.post-file-src
a(href=postURL)
if post.spoiler
img(src='/img/spoiler.png' width='64' height='64')
else
object.catalog-thumb(data=`/img/thumb-${post.files[0].filename.split('.')[0]}.jpg` width='64' height='64')
img(src='/img/deleted.png' width='64' height='64')
br
header.post-info
if post.sticky
img(src='/img/sticky.svg' height='12')
|
if post.saged
img(src='/img/saged.svg' height='12')
5 years ago
|
if post.locked
img(src='/img/locked.svg' height='12')
5 years ago
|
span: a.no-decoration.post-subject(href=postURL) #{post.subject || 'No Subject'}
br
span Replies: #{post.replyposts}
|
span Files: #{post.replyfiles}
if post.message
br
pre.no-m-p.post-message !{post.message}