mirror of
https://github.com/janoside/btc-rpc-explorer.git
synced 2026-08-13 12:33:13 +02:00
37 lines
969 B
Text
37 lines
969 B
Text
extends layout
|
|
|
|
block headContent
|
|
title Blocks
|
|
|
|
block content
|
|
.clearfix
|
|
.float-start
|
|
+pageTitle("Blocks")
|
|
.float-end
|
|
if (blocks)
|
|
nav(aria-label="Page navigation")
|
|
ul.pagination.justify-content-center.mt-3
|
|
|
|
li.page-item(class=(sort == "desc" ? "active" : false))
|
|
a.page-link(href=(sort == "desc" ? "javascript:void(0)" : `./blocks?limit=${limit}&offset=0&sort=desc`))
|
|
span(aria-hidden="true") Newest blocks first
|
|
|
|
li.page-item(class=(sort == "asc" ? "active" : false))
|
|
a.page-link(href=(sort == "asc" ? "javascript:void(0)" : `./blocks?limit=${limit}&offset=0&sort=asc`))
|
|
span(aria-hidden="true") Oldest blocks first
|
|
|
|
if (blocks)
|
|
+contentSection
|
|
include includes/blocks-list.pug
|
|
|
|
if (blockCount > limit)
|
|
if (blocks.length % 2 == 1)
|
|
hr.mt-4
|
|
else
|
|
.mb-2
|
|
|
|
.mt-4
|
|
+pagination(limit, offset, sort, blockCount, paginationBaseUrl, "center", true)
|
|
|
|
else
|
|
p No blocks found
|