Skip to content

Commit

Permalink
feat: Add data link to header navigation
Browse files Browse the repository at this point in the history
The code changes in `header.html` add a new link to the header navigation for the "Data" page. This allows users to easily access the data section of the website.
  • Loading branch information
hepplerj committed May 31, 2024
1 parent d52cae2 commit c0cc2a0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions layouts/partials/header.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
<div class="grid-container">
<a href="#content" class="show-on-focus">Skip to main content</a>
<header>
<h1><a href="/"><img src="/img/logo.svg" alt="American Religious Ecologies Logo"></a></h1>
<h1>
<a href="/"
><img src="/img/logo.svg" alt="American Religious Ecologies Logo"
/></a>
</h1>
<nav>
<ul class="menu horizontal">
<li><a href="/blog">Blog</a></li>
<li><a href="/visualizations">Visualizations</a></li>
<li><a href="/data">Data</a></li>
<li><a href="/about">About</a></li>
</ul>
</nav>
</header>
<div class="grid-container full">
<div class="grid-container full">

0 comments on commit c0cc2a0

Please sign in to comment.