resize header logo
This commit is contained in:
parent
dcb133f6c0
commit
3fae545d16
2 changed files with 53 additions and 1 deletions
52
mkdocs-theme-overrides/partials/header.html
Normal file
52
mkdocs-theme-overrides/partials/header.html
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
{#-
|
||||||
|
This file was automatically generated - do not edit
|
||||||
|
-#}
|
||||||
|
<header class="md-header" data-md-component="header">
|
||||||
|
<nav class="md-header-nav md-grid">
|
||||||
|
<div class="md-flex">
|
||||||
|
<div class="md-flex__cell md-flex__cell--shrink">
|
||||||
|
<a href="{{ config.site_url | default(nav.homepage.url, true) | url }}" title="{{ config.site_name }}" class="md-header-nav__button md-logo">
|
||||||
|
{% if config.theme.logo.icon %}
|
||||||
|
<i class="md-icon">{{ config.theme.logo.icon }}</i>
|
||||||
|
{% else %}
|
||||||
|
<img src="{{ config.theme.logo | url }}" width="28" height="28">
|
||||||
|
{% endif %}
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="md-flex__cell md-flex__cell--shrink">
|
||||||
|
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
|
||||||
|
</div>
|
||||||
|
<div class="md-flex__cell md-flex__cell--stretch">
|
||||||
|
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||||
|
{% if config.site_name == page.title %}
|
||||||
|
{{ config.site_name }}
|
||||||
|
{% else %}
|
||||||
|
<span class="md-header-nav__topic">
|
||||||
|
{{ config.site_name }}
|
||||||
|
</span>
|
||||||
|
<span class="md-header-nav__topic">
|
||||||
|
{% if page and page.meta and page.meta.title %}
|
||||||
|
{{ page.meta.title }}
|
||||||
|
{% else %}
|
||||||
|
{{ page.title }}
|
||||||
|
{% endif %}
|
||||||
|
</span>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="md-flex__cell md-flex__cell--shrink">
|
||||||
|
{% if "search" in config["plugins"] %}
|
||||||
|
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
|
||||||
|
{% include "partials/search.html" %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
{% if config.repo_url %}
|
||||||
|
<div class="md-flex__cell md-flex__cell--shrink">
|
||||||
|
<div class="md-header-nav__source">
|
||||||
|
{% include "partials/source.html" %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
@ -7,7 +7,7 @@ theme:
|
||||||
name: 'material'
|
name: 'material'
|
||||||
logo: 'assets/images/Pyr0ball-logo.png'
|
logo: 'assets/images/Pyr0ball-logo.png'
|
||||||
favicon: 'assets/images/Pyr0ball-logo.png'
|
favicon: 'assets/images/Pyr0ball-logo.png'
|
||||||
#custom_dir: 'mkdocs-theme-overrides'
|
custom_dir: 'mkdocs-theme-overrides'
|
||||||
|
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
#http://pythonhosted.org/Markdown/extensions/admonition.html
|
#http://pythonhosted.org/Markdown/extensions/admonition.html
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue