Skip to content

Commit

Permalink
resize header logo
Browse files Browse the repository at this point in the history
  • Loading branch information
pyr0ball committed Jul 26, 2019
1 parent dcb133f commit 3fae545
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
52 changes: 52 additions & 0 deletions mkdocs-theme-overrides/partials/header.html
@@ -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>
2 changes: 1 addition & 1 deletion mkdocs.yml
Expand Up @@ -7,7 +7,7 @@ theme:
name: 'material'
logo: 'assets/images/Pyr0ball-logo.png'
favicon: 'assets/images/Pyr0ball-logo.png'
#custom_dir: 'mkdocs-theme-overrides'
custom_dir: 'mkdocs-theme-overrides'

markdown_extensions:
#http://pythonhosted.org/Markdown/extensions/admonition.html
Expand Down

0 comments on commit 3fae545

Please sign in to comment.