mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
Reinstate header partials
This commit is contained in:
parent
a2fdb9d2f6
commit
0925a3cd19
|
@ -1,8 +0,0 @@
|
||||||
{% extends "base.html" %}
|
|
||||||
|
|
||||||
{% block scripts %}
|
|
||||||
<!-- 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 async src="https://code.jquery.com/jquery-3.4.1.min.js"
|
|
||||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
|
|
||||||
{% endblock %}
|
|
51
docs/partials/header.html
Normal file
51
docs/partials/header.html
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{#-
|
||||||
|
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-nav md-grid" aria-label="{{ lang.t('header.title') }}">
|
||||||
|
<a href="{{ site_url }}" title="{{ config.site_name | e }}" class="md-header-nav__button md-logo"
|
||||||
|
aria-label="{{ config.site_name }}">
|
||||||
|
{% include "partials/logo.html" %}
|
||||||
|
</a>
|
||||||
|
<label class="md-header-nav__button md-icon" for="__drawer">
|
||||||
|
{% include ".icons/material/menu" ~ ".svg" %}
|
||||||
|
</label>
|
||||||
|
<div class="md-header-nav__title" data-md-component="header-title">
|
||||||
|
<div class="md-header-nav__ellipsis">
|
||||||
|
<div class="md-header-nav__topic">
|
||||||
|
<span class="md-ellipsis">
|
||||||
|
{{ config.site_name }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div class="md-header-nav__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>
|
||||||
|
{% if "search" in config["plugins"] %}
|
||||||
|
<label class="md-header-nav__button md-icon" for="__search">
|
||||||
|
{% include ".icons/material/magnify.svg" %}
|
||||||
|
</label>
|
||||||
|
{% include "partials/search.html" %}
|
||||||
|
{% endif %}
|
||||||
|
{% if config.repo_url %}
|
||||||
|
<div class="md-header-nav__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>
|
|
@ -39,7 +39,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/overrides'
|
custom_dir: 'docs'
|
||||||
palette:
|
palette:
|
||||||
primary: 'blue grey'
|
primary: 'blue grey'
|
||||||
accent: 'tear'
|
accent: 'tear'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user