mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed incorrectly set site url, if given
This commit is contained in:
parent
92d77fd896
commit
758f07cadc
@ -3,11 +3,11 @@
|
|||||||
<div class="md-flex">
|
<div class="md-flex">
|
||||||
<div class="md-flex__cell md-flex__cell--shrink">
|
<div class="md-flex__cell md-flex__cell--shrink">
|
||||||
{% if config.extra.logo %}
|
{% if config.extra.logo %}
|
||||||
<a href="{{ nav.homepage.url }}" title="{{ config.site_name }}" class="md-logo md-header-nav__button">
|
<a href="{{ config.site_url | default(nav.homepage.url, true) }}" title="{{ config.site_name }}" class="md-logo md-header-nav__button">
|
||||||
<img src="{{ base_url }}/{{ config.extra.logo }}" width="24" height="24">
|
<img src="{{ base_url }}/{{ config.extra.logo }}" width="24" height="24">
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ nav.homepage.url }}" title="{{ config.site_name }}" class="md-icon md-icon--home md-header-nav__button">
|
<a href="{{ config.site_url | default(nav.homepage.url, true) }}" title="{{ config.site_name }}" class="md-icon md-icon--home md-header-nav__button">
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
@ -30,13 +30,15 @@
|
|||||||
<!-- Link to home -->
|
<!-- Link to home -->
|
||||||
<div class="md-flex__cell md-flex__cell--shrink">
|
<div class="md-flex__cell md-flex__cell--shrink">
|
||||||
{% if config.extra.logo %}
|
{% if config.extra.logo %}
|
||||||
<a href="{{ nav.homepage.url }}" title="{{ config.site_name }}"
|
<a href="{{ config.site_url | default(nav.homepage.url, true) }}"
|
||||||
|
title="{{ config.site_name }}"
|
||||||
class="md-logo md-header-nav__button">
|
class="md-logo md-header-nav__button">
|
||||||
<img src="{{ base_url }}/{{ config.extra.logo }}"
|
<img src="{{ base_url }}/{{ config.extra.logo }}"
|
||||||
width="24" height="24" />
|
width="24" height="24" />
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a href="{{ nav.homepage.url }}" title="{{ config.site_name }}"
|
<a href="{{ config.site_url | default(nav.homepage.url, true) }}"
|
||||||
|
title="{{ config.site_name }}"
|
||||||
class="md-icon md-icon--home md-header-nav__button">
|
class="md-icon md-icon--home md-header-nav__button">
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user