Skip to content

Commit

Permalink
Update Footer (blockscout#30)
Browse files Browse the repository at this point in the history
* Update footer
  • Loading branch information
MayankMittal1 committed Jan 13, 2023
1 parent cb738d4 commit 1022adc
Showing 1 changed file with 28 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
<% col_size = if Enum.empty?(other_explorers), do: 3, else: 2 %>

<div class="row">
<div class="col-xs-12 col-lg-12">

<div class="col-xs-12 col-lg-3">
<p class="footer-info-text"><%= gettext("The Fuse network is a permissionless and border-less public ledger designed for easy integration of everyday payments.") %></p>
<div class="footer-social-icons">
<a href="https://www.github.com/fuseio" rel="noreferrer" target="_blank" class="footer-social-icon" title='<%= gettext("Github") %>'>
Expand All @@ -32,6 +33,32 @@
</a>
</div>
</div>
<div class="col-xs-12 col-md-4 col-lg-<%= col_size %> footer-list">
<h3>BlockScout</h3>
<ul>
<li><a href="<%= issue_link(@conn) %>" rel="noreferrer" class="footer-link" target="_blank"><%= gettext("Submit an Issue") %></a></li>
<li><a href="<%= Application.get_env(:block_scout_web, :footer)[:github_link] %>" rel="noreferrer" class="footer-link"><%= gettext("Contribute") %></a></li>
<li><a href="<%= Application.get_env(:block_scout_web, :footer)[:chat_link] %>" rel="noreferrer" class="footer-link"><%= gettext("Chat (#blockscout)") %></a></li>
<%= if Application.get_env(:block_scout_web, :footer)[:enable_forum_link] do %>
<li><a href="<%= Application.get_env(:block_scout_web, :footer)[:forum_link] %>" rel="noreferrer" class="footer-link"><%= gettext("Forum") %></a></li>
<% end %>
<%= render BlockScoutWeb.LayoutView, "_add_chain_to_mm.html" %>
</ul>
</div>

<div class="col-xs-12 col-md-4 col-lg-<%= col_size %> footer-list">
<h3><%= gettext("Main Networks") %></h3>
<ul>
<li><a href="https://explorer.fuse.io" rel="norefferer" class="footer-link"> Fuse Mainnet </a></li>
</ul>
</div>

<div class="col-xs-12 col-md-4 col-lg-<%= col_size %> footer-list">
<h3><%= gettext("Test Networks") %></h3>
<ul>
<li><a href="https://explorer.fusespark.io" rel="norefferer" class="footer-link"> Fuse Testnet </a></li>
</ul>
</div>
</div>
</div>
</footer>

0 comments on commit 1022adc

Please sign in to comment.