Skip to content
Snippets Groups Projects
Commit 1be9225e authored by squidfunk's avatar squidfunk Committed by Martin Donath
Browse files

Fixed flash of unstyled content

parent f14fa37f
Branches
Tags
No related merge requests found
...@@ -3,6 +3,7 @@ mkdocs-material-2.x.x (2017-xx-xx) ...@@ -3,6 +3,7 @@ mkdocs-material-2.x.x (2017-xx-xx)
* Added Russian translations * Added Russian translations
* Fixed #542: Horizontal scrollbar between 1220px and 1234px * Fixed #542: Horizontal scrollbar between 1220px and 1234px
* Fixed #553: Metadata values only rendering first character * Fixed #553: Metadata values only rendering first character
* Fixed #558: Flash of unstyled content
* Fixed favicon regression caused by deprecation upstream * Fixed favicon regression caused by deprecation upstream
mkdocs-material-2.0.1 (2017-10-31) mkdocs-material-2.0.1 (2017-10-31)
......
...@@ -45,15 +45,15 @@ ...@@ -45,15 +45,15 @@
<title>{{ config.site_name }}</title> <title>{{ config.site_name }}</title>
{% endif %} {% endif %}
{% endblock %} {% endblock %}
{% block libs %}
<script src="{{ base_url }}/assets/javascripts/modernizr-e826f8942a.js"></script>
{% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-5b1b46901f.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-5b1b46901f.css">
{% if palette.primary or palette.accent %} {% if palette.primary or palette.accent %}
<link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-23f75ab9c7.palette.css"> <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-23f75ab9c7.palette.css">
{% endif %} {% endif %}
{% endblock %} {% endblock %}
{% block libs %}
<script src="{{ base_url }}/assets/javascripts/modernizr-e826f8942a.js"></script>
{% endblock %}
{% block fonts %} {% block fonts %}
{% if font != false %} {% if font != false %}
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{ <link rel="stylesheet" href="https://fonts.googleapis.com/css?family={{
......
...@@ -92,11 +92,6 @@ ...@@ -92,11 +92,6 @@
{% endif %} {% endif %}
{% endblock %} {% endblock %}
<!-- JavaScript libraries -->
{% block libs %}
<script src="{{ base_url }}/assets/javascripts/modernizr.js"></script>
{% endblock %}
<!-- Stylesheets --> <!-- Stylesheets -->
{% block styles %} {% block styles %}
...@@ -111,6 +106,11 @@ ...@@ -111,6 +106,11 @@
{% endif %} {% endif %}
{% endblock %} {% endblock %}
<!-- JavaScript libraries -->
{% block libs %}
<script src="{{ base_url }}/assets/javascripts/modernizr.js"></script>
{% endblock %}
<!-- Webfonts --> <!-- Webfonts -->
{% block fonts %} {% block fonts %}
{% if font != false %} {% if font != false %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment