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.

39 lines
1.0 KiB

8 years ago
extends layout
block headContent
title Home
block content
7 years ago
h1(class="h2") #{coinConfig.siteTitle}
8 years ago
hr
7 years ago
p(class="lead")
strong #{coinConfig.siteTitle}
span is
7 years ago
a(href="https://github.com/janoside/btc-rpc-explorer") open-source
span . If you run your own
a(href=coinConfig.nodeUrl) #{coinConfig.name} Full Node
span ,
strong #{coinConfig.siteTitle}
7 years ago
span can easily run alongside it, communicating via RPC calls. See the
a(href="https://github.com/janoside/btc-rpc-explorer") project description
span for a list of features and instructions for running.
if (latestBlocks)
div(class="row mt-5")
div(class="col")
7 years ago
h2(class="h3") Latest Blocks
if (getblockchaininfo.initialblockdownload)
small (#{(getblockchaininfo.headers - getblockchaininfo.blocks).toLocaleString()} behind)
div(class="col")
span(style="float: right;")
7 years ago
a(href="/blocks", class="btn btn-primary") Browse Blocks »
hr
- var blocks = latestBlocks;
- var blockOffset = 0;
8 years ago
include includes/blocks-list.pug