1
0
mirror of https://github.com/GOSTSec/gostexplr synced 2025-01-31 00:44:24 +00:00
gostexplr/views/index.pug

26 lines
415 B
Plaintext
Raw Normal View History

2018-02-03 21:14:56 +05:00
extends layout
block content
h3 Last 50 blocks
2018-02-03 21:14:56 +05:00
table
tr
td
b Height
td
b Time
td
b Difficulty
td
b Hashrate
td
b Hash
2018-02-03 21:14:56 +05:00
each block in blocks
tr
2019-06-30 10:54:16 +00:00
td #{block.height}
td #{block.ago}
td #{block.difficulty}
td #{block.hashrate}
2018-02-03 21:14:56 +05:00
td
a(href='/block/' + block.hash + '/') #{block.hash}