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.

17 lines
523 B

mixin newspost(post, globalmanage=false)
.table-container.flex-center.mv-5
.anchor(id=post._id)
table
tr
th
if globalmanage === true
input.left.post-check(type='checkbox', name='checkednews[]' value=post._id)
a.left(href=`#${post._id}`) #{post.title}
p.right.no-m-p #{post.date.toLocaleString(undefined, {hour12:false})}
tr
td
if globalmanage === true
p.no-m-p #{`${post.message.raw.substring(0,50)}...`}
else
pre.post-message.no-m-p !{post.message.markdown}