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.
30 lines
884 B
30 lines
884 B
extends layout
|
|
|
|
block headContent
|
|
title Home
|
|
|
|
block content
|
|
h1 BTC Explorer
|
|
hr
|
|
|
|
:markdown-it
|
|
**BTC Explorer** is [open-source](https://github.com/janoside/btc-rpc-explorer). If you run your own [Bitcoin Full Node](https://bitcoin.org/en/full-node), **BTC Explorer** can easily run alongside it, communicating via RPC calls. See the project [ReadMe](https://github.com/janoside/btc-rpc-explorer) for a list of features and instructions for running.
|
|
|
|
|
|
if (latestBlocks)
|
|
div(class="row mt-5")
|
|
div(class="col")
|
|
h3 Latest Blocks
|
|
if (getblockchaininfo.initialblockdownload)
|
|
small (#{(getblockchaininfo.headers - getblockchaininfo.blocks).toLocaleString()} behind)
|
|
|
|
div(class="col")
|
|
span(style="float: right;")
|
|
a(href="/blocks") Browse Blocks »
|
|
|
|
hr
|
|
|
|
- var blocks = latestBlocks;
|
|
- var blockOffset = 0;
|
|
|
|
include includes/blocks-list.pug
|