68 lines
2.5 KiB
HTML
68 lines
2.5 KiB
HTML
{% set class = "md-header" %}
|
|
{% if "navigation.tabs.sticky" in features %}
|
|
{% set class = class ~ " md-header--shadow md-header--lifted" %}
|
|
{% elif "navigation.tabs" not in features %}
|
|
{% set class = class ~ " md-header--shadow" %}
|
|
{% endif %}
|
|
|
|
<!-- Header -->
|
|
<header class="{{ class }}" data-md-component="header">
|
|
<nav
|
|
class="md-header__inner md-grid"
|
|
aria-label="{{ lang.t('header') }}"
|
|
>
|
|
|
|
<!-- Link to home -->
|
|
<a
|
|
href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}"
|
|
title="{{ config.site_name | e }}"
|
|
class="md-header__button md-logo"
|
|
aria-label="{{ config.site_name }}"
|
|
data-md-component="logo"
|
|
>
|
|
{% include "partials/logo.html" %}
|
|
</a>
|
|
|
|
<!-- Button to open drawer -->
|
|
<label class="md-header__button md-icon" for="__drawer">
|
|
{% set icon = config.theme.icon.menu or "material/menu" %}
|
|
{% include ".icons/" ~ icon ~ ".svg" %}
|
|
</label>
|
|
|
|
<!-- Header title -->
|
|
<div class="md-header__title" data-md-component="header-title">
|
|
<div class="md-header__ellipsis">
|
|
<div class="md-header__topic">
|
|
<span class="md-ellipsis">
|
|
{{ config.site_name }} Docs
|
|
</span>
|
|
</div>
|
|
<div class="md-header__topic" data-md-component="header-topic">
|
|
<span class="md-ellipsis">
|
|
{% if page.meta and page.meta.title %}
|
|
{{ page.meta.title }}
|
|
{% else %}
|
|
{{ page.title }}
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<ul class="header-list">
|
|
<li style="align-items: center;">Resources <img src="https://ka-p.fontawesome.com/releases/v6.6.0/svgs/regular/chevron-down.svg?v=2&token=a463935e93" style="height: 0.5rem;" /></li>
|
|
<li>Products</li>
|
|
<li>Sign In</li>
|
|
<a href="https://roboflow.com/sales"><li class="header-btn" style="border-radius: 5px; background: white; padding-top: 0.25rem; padding-left: 0.5rem; padding-bottom: 0.25rem; padding-right: 0.5rem; border: 1px solid lightgrey;">Book a Demo</li></a>
|
|
<a href="https://app.roboflow.com"><li class="header-btn" style="border-radius: 5px; color: white; background: var(--md-typeset-a-color); padding-top: 0.25rem; padding-left: 0.5rem; padding-bottom: 0.25rem; padding-right: 0.5rem; border: 1px solid #8315F9;">Get Started</li></a>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- Navigation tabs (sticky) -->
|
|
{% if "navigation.tabs.sticky" in features %}
|
|
{% if "navigation.tabs" in features %}
|
|
{% include "partials/tabs.html" %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</header>
|