63 lines
1.9 KiB
HTML
63 lines
1.9 KiB
HTML
{% import "partials/nav-item.html" as item with context %}
|
|
|
|
<!-- Determine class according to configuration -->
|
|
{% set class = "md-nav md-nav--primary" %}
|
|
{% if "navigation.tabs" in features %}
|
|
{% set class = class ~ " md-nav--lifted" %}
|
|
{% endif %}
|
|
{% if "toc.integrate" in features %}
|
|
{% set class = class ~ " md-nav--integrated" %}
|
|
{% endif %}
|
|
|
|
<!-- Main navigation -->
|
|
<nav
|
|
class="{{ class }}"
|
|
aria-label="{{ lang.t('nav.title') }}"
|
|
data-md-level="0"
|
|
>
|
|
|
|
<!-- Site title -->
|
|
<label class="md-nav__title" for="__drawer">
|
|
<a
|
|
href="{{ config.extra.homepage | d(nav.homepage.url, true) | url }}"
|
|
title="{{ config.site_name | e }}"
|
|
class="md-nav__button md-logo"
|
|
aria-label="{{ config.site_name }}"
|
|
data-md-component="logo"
|
|
>
|
|
{% include "partials/logo.html" %}
|
|
</a>
|
|
{{ config.site_name }}
|
|
</label>
|
|
|
|
<!-- Repository information -->
|
|
{% if config.repo_url %}
|
|
<div class="md-nav__source">
|
|
{% include "partials/source.html" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- Navigation list -->
|
|
<ul class="md-nav__list" data-md-scrollfix>
|
|
{% for nav_item in nav %}
|
|
{% set path = "__nav_" ~ loop.index %}
|
|
{{ item.render(nav_item, path, 1) }}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<!-- Sponsors -->
|
|
<div class="md-nav__sponsors">
|
|
<p class="md-nav__sponsors-title">Sponsors</p>
|
|
<a href="https://fastapi.tiangolo.com" title="FastAPI" class="md-nav__sponsor">
|
|
<img src="{{ 'img/fastapi-logo.png' | url }}" alt="FastAPI">
|
|
</a>
|
|
<a href="https://huggingface.co" title="Hugging Face" class="md-nav__sponsor">
|
|
<img src="{{ 'img/hf-logo-with-title.svg' | url }}#only-light" alt="Hugging Face">
|
|
<img src="{{ 'img/hf-logo-with-title-dark.svg' | url }}#only-dark" alt="Hugging Face">
|
|
</a>
|
|
<a href="https://github.com/sponsors/Kludex" class="md-nav__sponsor-cta">
|
|
Become a sponsor! ❤️
|
|
</a>
|
|
</div>
|
|
</nav>
|