Simplify mkdocs jquery inclusion by using overrides
instead of partials
This commit is contained in:
parent
347eceeda5
commit
7f434c0413
10
docs/overrides/main.html
Normal file
10
docs/overrides/main.html
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block footer %}
|
||||||
|
{{ super() }}
|
||||||
|
|
||||||
|
<!-- Place this tag in your head or just before your close body tag. -->
|
||||||
|
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
||||||
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||||
|
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
|
||||||
|
{% endblock %}
|
@ -1,72 +0,0 @@
|
|||||||
{#-
|
|
||||||
This file was automatically generated - do not edit
|
|
||||||
-#}
|
|
||||||
{% set site_url = config.site_url | d(nav.homepage.url, true) | url %}
|
|
||||||
{% if not config.use_directory_urls and site_url[0] == site_url[-1] == "." %}
|
|
||||||
{% set site_url = site_url ~ "/index.html" %}
|
|
||||||
{% endif %}
|
|
||||||
<header class="md-header" data-md-component="header">
|
|
||||||
<nav class="md-header__inner md-grid" aria-label="{{ lang.t('header.title') }}">
|
|
||||||
<a href="{{ site_url }}" title="{{ config.site_name | e }}" class="md-header__button md-logo"
|
|
||||||
aria-label="{{ config.site_name }}">
|
|
||||||
{% include "partials/logo.html" %}
|
|
||||||
</a>
|
|
||||||
<label class="md-header__button md-icon" for="__drawer">
|
|
||||||
{% include ".icons/material/menu" ~ ".svg" %}
|
|
||||||
</label>
|
|
||||||
<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 }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div class="md-header__topic" data-md-component="header-topic">
|
|
||||||
<span class="md-ellipsis">
|
|
||||||
{% if page and page.meta and page.meta.title %}
|
|
||||||
{{ page.meta.title }}
|
|
||||||
{% else %}
|
|
||||||
{{ page.title }}
|
|
||||||
{% endif %}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="md-header__options">
|
|
||||||
{% if config.extra.alternate %}
|
|
||||||
<div class="md-select">
|
|
||||||
{% set icon = config.theme.icon.alternate or "material/translate" %}
|
|
||||||
<span class="md-header__button md-icon">
|
|
||||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
|
||||||
</span>
|
|
||||||
<div class="md-select__inner">
|
|
||||||
<ul class="md-select__list">
|
|
||||||
{% for alt in config.extra.alternate %}
|
|
||||||
<li class="md-select__item">
|
|
||||||
<a href="{{ alt.link | url }}" class="md-select__link">
|
|
||||||
{{ alt.name }}
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
{% endfor %}
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
{% if "search" in config["plugins"] %}
|
|
||||||
<label class="md-header__button md-icon" for="__search">
|
|
||||||
{% include ".icons/material/magnify.svg" %}
|
|
||||||
</label>
|
|
||||||
{% include "partials/search.html" %}
|
|
||||||
{% endif %}
|
|
||||||
{% if config.repo_url %}
|
|
||||||
<div class="md-header__source">
|
|
||||||
{% include "partials/source.html" %}
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</nav>
|
|
||||||
<!-- Place this tag in your head or just before your close body tag. -->
|
|
||||||
<script async defer src="https://buttons.github.io/buttons.js"></script>
|
|
||||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
|
||||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
|
|
||||||
</header>
|
|
@ -42,7 +42,7 @@ theme:
|
|||||||
name: material
|
name: material
|
||||||
logo: 'images/logo.png'
|
logo: 'images/logo.png'
|
||||||
favicon: 'images/logo.png'
|
favicon: 'images/logo.png'
|
||||||
custom_dir: 'docs'
|
custom_dir: 'docs/overrides'
|
||||||
palette:
|
palette:
|
||||||
primary: 'blue grey'
|
primary: 'blue grey'
|
||||||
accent: 'tear'
|
accent: 'tear'
|
||||||
|
Loading…
Reference in New Issue
Block a user