mirror of
https://github.com/GOSTSec/gostexplr
synced 2025-01-30 16:34:18 +00:00
26 lines
415 B
Plaintext
26 lines
415 B
Plaintext
extends layout
|
|
|
|
block content
|
|
h3 Last 50 blocks
|
|
|
|
table
|
|
tr
|
|
td
|
|
b Height
|
|
td
|
|
b Time
|
|
td
|
|
b Difficulty
|
|
td
|
|
b Hashrate
|
|
td
|
|
b Hash
|
|
each block in blocks
|
|
tr
|
|
td #{block.height}
|
|
td #{block.ago}
|
|
td #{block.difficulty}
|
|
td #{block.hashrate}
|
|
td
|
|
a(href='/block/' + block.hash + '/') #{block.hash}
|