website/_includes/header.html

33 lines
1.1 KiB
HTML
Raw Permalink Normal View History

2023-01-21 18:06:10 +00:00
{%- assign page_paths = site.header_pages | default: default_paths -%}
<header>
<div class="menu">
2023-10-14 13:44:42 +00:00
<div>
<a id="home-link" href="/index.html">
2023-10-24 16:47:07 +00:00
<img class="menu-logo" src="assets/base/distrust-text-white.svg"
alt="Distrust broken chain logo with white text" />
2023-10-14 13:44:42 +00:00
</a>
</div>
2023-10-24 16:47:07 +00:00
<div class="right-menu">
<ul class="header-page-links show">
{%- for path in page_paths -%}
{%- assign my_page = site.pages | where: "path", path | first -%}
{%- if my_page.title -%}
{%- if my_page.title != 'Home' -%}
<li><a href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a></li>
{%- endif -%}
{%- endif -%}
{%- endfor -%}
2024-03-29 02:30:35 +00:00
<li class="show">
<a href="/contact.html" class="action-button">Free Consultation</a>
</li>
2023-10-24 16:47:07 +00:00
</ul>
<div id="hamburger-menu" class="hide menu-button-container" for="menu-toggle">
<input id="menu-toggle" type="checkbox" />
<label style="display: inline-block">
<div class='menu-button'></div>
2024-03-29 02:04:36 +00:00
</label>
2023-10-24 16:47:07 +00:00
</div>
</div>
2023-01-21 18:06:10 +00:00
</div>
2024-03-29 02:30:35 +00:00
</header>