@rahlfantasy/block-explorer
Version:
QRL block explorer
41 lines • 1.67 kB
HTML
<template name="mobile">
<div class="mobile-explorer">
<div class="ui labeled icon bottom fixed four item inverted menu">
<a class="main-menu-btn item {{menuStatusActive}}" href="/status">
<i class="share alternate icon"></i>
Status
</a>
<a class="main-menu-btn item {{menuTransactionsActive}}" href="/lasttx">
<i class="send mail icon"></i>
Transactions
</a>
<a class="main-menu-btn item {{menuBlocksActive}}" href="/lastblocks">
<i class="cube icon"></i>
Blocks
</a>
<a class="main-menu-btn item {{menuSearchActive}}" href="/search">
<i class="search icon"></i>
Search
</a>
</div>
{{> Template.dynamic template=main}}
<div class="footer">
<div class="ui center aligned container">
<p>The Quantum Resistant Ledger<br><strong>Block Explorer</strong></p>
<a href="/">
<img class="footerLogo" src="{{logo}}">
</a>
<br />
<button class="ui small basic grey icon button themeToggle">
<i class="ui {{theme}} icon"></i> Toggle theme
</button>
<br />
<div class="ui horizontal small divided link list">
<a class="item" target="_blank" href="https://theqrl.org/">theQRL.org</a>
<a class="item" target="_blank" href="https://github.com/theQRL/block-explorer/issues">Found a Problem?</a>
<a class="item" target="_blank" href="https://github.com/theQRL/block-explorer">qrl-explorer v{{qrlExplorerVersion}}</a>
</div>
</div>
</div>
</div>
</template>