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.
52 lines
1.7 KiB
52 lines
1.7 KiB
extends layout
|
|
|
|
block headContent
|
|
title Home
|
|
|
|
block content
|
|
h1(class="h2") #{coinConfig.siteTitle}
|
|
hr
|
|
|
|
if (env.demoSite)
|
|
div(class="alert alert-primary", role="alert")
|
|
p(class="lead")
|
|
strong #{coinConfig.siteTitle}
|
|
span is
|
|
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}
|
|
span can easily run alongside it, communicating via RPC calls.
|
|
br
|
|
span See the
|
|
a(href="https://github.com/janoside/btc-rpc-explorer") project description
|
|
span for a list of features and instructions for running.
|
|
|
|
div
|
|
a(class="github-button", href="https://github.com/janoside/btc-rpc-explorer", data-icon="octicon-star", data-size="large", data-show-count="true", aria-label="Star janoside/btc-rpc-explorer on GitHub", style="padding-right: 10px;") Star
|
|
|
|
span
|
|
a(class="github-button", href="https://github.com/janoside/btc-rpc-explorer/fork", data-icon="octicon-repo-forked", data-size="large", data-show-count="true", aria-label="Fork janoside/btc-rpc-explorer on GitHub") Fork
|
|
|
|
|
|
if (latestBlocks)
|
|
div(class="row mt-4")
|
|
div(class="col")
|
|
h2(class="h3") Latest Blocks
|
|
if (getblockchaininfo.initialblockdownload)
|
|
small (#{(getblockchaininfo.headers - getblockchaininfo.blocks).toLocaleString()} behind)
|
|
|
|
div(class="col")
|
|
span(style="float: right;")
|
|
a(href="/blocks", class="btn btn-primary") Browse Blocks »
|
|
|
|
hr
|
|
|
|
- var blocks = latestBlocks;
|
|
- var blockOffset = 0;
|
|
|
|
include includes/blocks-list.pug
|
|
|
|
block endOfBody
|
|
script(async, defer, src="https://buttons.github.io/buttons.js")
|