diff --git a/it4i_theme/base.html b/it4i_theme/base.html index f893ce18a0ef1d7c86200e297eb392aa07e4ccf4..792f6a934d106bdcf8bb289bd95239f5f92aec5a 100644 --- a/it4i_theme/base.html +++ b/it4i_theme/base.html @@ -31,10 +31,7 @@ <meta name="apple-mobile-web-app-title" content="{{ site_name }}"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> - {% if config.extra.logo %} - <link rel="apple-touch-icon" href="{{ base_url }}/{{ config.extra.logo }}"> - {% endif %} - {% set favicon = favicon | default("assets/images/favicon-e565ddfa3b.ico", true) %} + {% set favicon = favicon | default("assets/images/favicon.ico", true) %} <link rel="shortcut icon" type="image/x-icon" href="{{ base_url }}/{{ favicon }}"> <link rel="icon" type="image/x-icon" href="{{ base_url }}/{{ favicon }}"> <style> @@ -53,9 +50,9 @@ font-style: normal; } </style> - <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application-a422ff04cc.css"> + <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/application.css"> {% if config.extra.palette %} - <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes-05ab2406df.css"> + <link rel="stylesheet" href="{{ base_url }}/assets/stylesheets/palettes.css"> {% endif %} {% if config.extra.font != "none" %} {% set text = config.extra.get("font", {}).text | default("Ubuntu") %} @@ -74,7 +71,7 @@ {% for path in extra_css %} <link rel="stylesheet" href="{{ path }}"> {% endfor %} - <script src="{{ base_url }}/assets/javascripts/modernizr-4ab42b99fd.js"></script> + <script src="{{ base_url }}/assets/javascripts/modernizr.js"></script> {% block extrahead %}{% endblock %} </head> {% set palette = config.extra.get("palette", {}) %} @@ -139,7 +136,7 @@ var base_url = '{{ base_url }}'; var repo_id = '{{ repo_id }}'; </script> - <script src="{{ base_url }}/assets/javascripts/application-997097ee0c.js"></script> + <script src="{{ base_url }}/assets/javascripts/application.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> {% for path in extra_javascript %} <script src="{{ path }}"></script> diff --git a/it4i_theme/drawer.html b/it4i_theme/drawer.html index c13075d4843678a659a57c01fdb38827acedc4b5..5385f071ab7253e48085b3c5df20db49aa3f4230 100644 --- a/it4i_theme/drawer.html +++ b/it4i_theme/drawer.html @@ -1,74 +1,16 @@ <nav aria-label="Navigation"> {% set home = repo_url | default("/", true) %} <a href="{{ home }}" class="project"> - <div class="banner"> - {% if config.extra.logo %} - <div class="logo"> - <img src="{{ base_url }}/{{ config.extra.logo }}"> - </div> - {% endif %} - <div class="name"> - <strong> - {{ site_name }} - <span class="version"> - {{ config.extra.version }} - </span> - </strong> - {% if repo_id %} - <br> - {{ repo_id }} - {% endif %} - </div> - </div> </a> <div class="scrollable"> <div class="wrapper"> - {% if repo_name == "GitHub" and repo_url %} - <ul class="repo"> - <li class="repo-download"> - {% set version = config.extra.version | default("master") %} - <a href="{{ repo_url }}/archive/{{ version }}.zip" target="_blank" title="Download" data-action="download"> - <i class="icon icon-download"></i> Download - </a> - </li> - <li class="repo-stars"> - <a href="{{ repo_url }}/stargazers" target="_blank" title="Stargazers" data-action="star"> - <i class="icon icon-star"></i> Stars - <span class="count">–</span> - </a> - </li> - </ul> - <hr> - {% endif %} <div class="toc"> <ul> {% for nav_item in nav %} {% include "nav.html" %} {% endfor %} </ul> - {% if config.extra.author %} - <hr> - <span class="section">The author</span> - <ul> - {% if config.extra.author.twitter %} - {% set author = config.extra.author.twitter %} - <li> - <a href="https://twitter.com/{{ author }}" target="_blank" title="@{{ author }} on Twitter"> - @{{ author }} on Twitter - </a> - </li> - {% endif %} - {% if config.extra.author.github %} - {% set author = config.extra.author.github %} - <li> - <a href="https://github.com/{{ author }}" target="_blank" title="@{{ author }} on GitHub"> - @{{ author }} on GitHub - </a> - </li> - {% endif %} - </ul> - {% endif %} </div> </div> </div> -</nav> \ No newline at end of file +</nav> diff --git a/it4i_theme/footer.html b/it4i_theme/footer.html index 660b28f675bed601c659042ae28edc4e8001cbf5..a8fb48b9f392201b2e83d93fa514abf3c3a177b9 100644 --- a/it4i_theme/footer.html +++ b/it4i_theme/footer.html @@ -39,4 +39,4 @@ {% endif %} </div> </nav> -{% endif %} \ No newline at end of file +{% endif %}