Skip to content
Snippets Groups Projects
Commit 1d5817e9 authored by squidfunk's avatar squidfunk
Browse files

Added ability to set absolute URL for logo

parent 2a48e17d
Branches
Tags
No related merge requests found
mkdocs-material-2.7.0 (2018-03-06)
* Added ability to set absolute URL for logo
mkdocs-material-2.6.6 (2018-02-22) mkdocs-material-2.6.6 (2018-02-22)
* Added preconnect for Google Fonts for faster loading * Added preconnect for Google Fonts for faster loading
......
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
{% if "github" in platform %} {% if "github" in platform %}
{% include "assets/images/icons/github.a4034fb1.svg" %} {% include "assets/images/icons/github.a4034fb1.svg" %}
{% elif "gitlab" in platform %} {% elif "gitlab" in platform %}
{% include "assets/images/icons/gitlab.d80e5efc.svg" %} {% include "assets/images/icons/gitlab.348cdb3a.svg" %}
{% elif "bitbucket" in platform %} {% elif "bitbucket" in platform %}
{% include "assets/images/icons/bitbucket.4ebea66e.svg" %} {% include "assets/images/icons/bitbucket.4ebea66e.svg" %}
{% endif %} {% endif %}
...@@ -173,7 +173,7 @@ ...@@ -173,7 +173,7 @@
{% endblock %} {% endblock %}
</div> </div>
{% block scripts %} {% block scripts %}
<script src="{{ base_url }}/assets/javascripts/application.e437c97b.js"></script> <script src="{{ base_url }}/assets/javascripts/application.189d7058.js"></script>
{% if lang.t("search.language") != "en" %} {% if lang.t("search.language") != "en" %}
{% set languages = lang.t("search.language").split(",") %} {% set languages = lang.t("search.language").split(",") %}
{% if languages | length and languages[0] != "" %} {% if languages | length and languages[0] != "" %}
......
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
<a href="{{ config.site_url | default(nav.homepage.url, true) }}" title="{{ config.site_name }}" class="md-header-nav__button md-logo"> <a href="{{ config.site_url | default(nav.homepage.url, true) }}" title="{{ config.site_name }}" class="md-header-nav__button md-logo">
{% if config.theme.logo.icon %} {% if config.theme.logo.icon %}
<i class="md-icon">{{ config.theme.logo.icon }}</i> <i class="md-icon">{{ config.theme.logo.icon }}</i>
{% elif config.theme.logo.startswith("http") %}
<img src="{{ config.theme.logo }}" width="24" height="24">
{% else %} {% else %}
<img src="{{ base_url }}/{{ config.theme.logo }}" width="24" height="24"> <img src="{{ base_url }}/{{ config.theme.logo }}" width="24" height="24">
{% endif %} {% endif %}
......
...@@ -3,8 +3,10 @@ ...@@ -3,8 +3,10 @@
<span class="md-nav__button md-logo"> <span class="md-nav__button md-logo">
{% if config.theme.logo.icon %} {% if config.theme.logo.icon %}
<i class="md-icon">{{ config.theme.logo.icon }}</i> <i class="md-icon">{{ config.theme.logo.icon }}</i>
{% elif config.theme.logo.startswith("http") %}
<img src="{{ config.theme.logo }}" width="48" height="48">
{% else %} {% else %}
<img src="{{ base_url }}/{{ config.theme.logo }}" width="24" height="24"> <img src="{{ base_url }}/{{ config.theme.logo }}" width="48" height="48">
{% endif %} {% endif %}
</span> </span>
{{ config.site_name }} {{ config.site_name }}
......
...@@ -34,6 +34,8 @@ ...@@ -34,6 +34,8 @@
class="md-header-nav__button md-logo"> class="md-header-nav__button md-logo">
{% if config.theme.logo.icon %} {% if config.theme.logo.icon %}
<i class="md-icon">{{ config.theme.logo.icon }}</i> <i class="md-icon">{{ config.theme.logo.icon }}</i>
{% elif config.theme.logo.startswith("http") %}
<img src="{{ config.theme.logo }}" width="24" height="24" />
{% else %} {% else %}
<img src="{{ base_url }}/{{ config.theme.logo }}" <img src="{{ base_url }}/{{ config.theme.logo }}"
width="24" height="24" /> width="24" height="24" />
......
...@@ -28,9 +28,11 @@ ...@@ -28,9 +28,11 @@
<span class="md-nav__button md-logo"> <span class="md-nav__button md-logo">
{% if config.theme.logo.icon %} {% if config.theme.logo.icon %}
<i class="md-icon">{{ config.theme.logo.icon }}</i> <i class="md-icon">{{ config.theme.logo.icon }}</i>
{% elif config.theme.logo.startswith("http") %}
<img src="{{ config.theme.logo }}" width="48" height="48" />
{% else %} {% else %}
<img src="{{ base_url }}/{{ config.theme.logo }}" <img src="{{ base_url }}/{{ config.theme.logo }}"
width="24" height="24" /> width="48" height="48" />
{% endif %} {% endif %}
</span> </span>
{{ config.site_name }} {{ config.site_name }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment