Blockchain explorer for Ethereum based network and a tool for inspecting and analyzing EVM based blockchains.
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.
 
 
 
 
 
blockscout/lib/explorer_web/templates/layout/_header.html.eex

21 lines
1.0 KiB

<header class="header">
<table class="header__container" cellspacing="0" cellpadding="0" border="0">
<tr class="header__row">
<td class="header__cell header__cell--logo">
<a href="<%= chain_path(@conn, :show) %>" class="header__logo-link">
<%= logo_image(@conn, alt: gettext("POA Network Explorer"), class: "header__logo") %>
</a>
</td>
<td class="header__cell header__cell--links" align="right">
<a href="<%= transaction_path(@conn, :index, Gettext.get_locale) %>" class="header__link">
<img class="header__link-image" src="<%= static_path(@conn, "/images/transaction.svg") %>" />
<div class="header__link-name"><%= gettext("Transactions") %></div>
</a>
<a href="<%= block_path(@conn, :index, Gettext.get_locale) %>" class="header__link">
<img class="header__link-image" src="<%= static_path(@conn, "/images/block.svg") %>" />
<div class="header__link-name"><%= gettext("Blocks") %></div>
</a>
</td>
</tr>
</table>
</header>