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
436 B
17 lines
436 B
extends layout
|
|
|
|
block headContent
|
|
if (result.getblock)
|
|
title Block ##{result.getblock.height.toLocaleString()}, #{result.getblock.hash}
|
|
else
|
|
title Block: Error
|
|
|
|
block content
|
|
if (result.getblock)
|
|
h1.h3 Block
|
|
small.text-monospace(style="width: 100%;") ##{result.getblock.height.toLocaleString()}
|
|
br
|
|
small.text-monospace.word-wrap(style="width: 100%;") #{result.getblock.hash}
|
|
hr
|
|
|
|
include includes/block-content.pug
|