mirror of
https://git.femboyfinancial.jp/james/FemScoreboard.git
synced 2025-11-25 13:23:43 -08:00
Initial commit
This commit is contained in:
51
views/index.pug
Normal file
51
views/index.pug
Normal file
@@ -0,0 +1,51 @@
|
||||
doctype html
|
||||
html
|
||||
head
|
||||
title FemScoreboard
|
||||
body
|
||||
h1 Funniest MFs 💀
|
||||
table
|
||||
thead
|
||||
tr
|
||||
th= "Name"
|
||||
th= "Avatar"
|
||||
th= "Score"
|
||||
tbody
|
||||
each row in funniest
|
||||
tr
|
||||
td= row.username
|
||||
td
|
||||
img(src="/avatars/" + row.id + ".webp", height="64")
|
||||
td= row.reaction_1_total
|
||||
br
|
||||
h1 Realest MFs 💯
|
||||
table
|
||||
thead
|
||||
tr
|
||||
th= "Name"
|
||||
th= "Avatar"
|
||||
th= "Score"
|
||||
tbody
|
||||
each row in realest
|
||||
tr
|
||||
td= row.username
|
||||
td
|
||||
img(src="/avatars/" + row.id + ".webp", height="64")
|
||||
td= row.reaction_2_total
|
||||
br
|
||||
h1 Cunniest MFs 😭
|
||||
table
|
||||
thead
|
||||
tr
|
||||
th= "Name"
|
||||
th= "Avatar"
|
||||
th= "Score"
|
||||
tbody
|
||||
each row in cunniest
|
||||
tr
|
||||
td
|
||||
span= row.username
|
||||
td
|
||||
img(src="/avatars/" + row.id + ".webp", height="64")
|
||||
td
|
||||
span= row.reaction_3_total
|
||||
Reference in New Issue
Block a user