diff --git a/mkdocs.yml b/mkdocs.yml index 890052e..b0ab71e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -14,17 +14,18 @@ copyright: 'Copyright © Kobol Team 2017' # Documentation and theme theme: name: 'material' + favicon: './img/favicon.png' custom_dir: 'theme' - -# Options -extra: - logo: './img/helios4_logo.png' palette: primary: 'teal' accent: 'pink' font: text: 'Roboto' code: 'Roboto Mono' + +# Options +extra: + logo: './img/helios4_logo.png' social: - type: 'home' link: 'https://kobol.io/helios4' diff --git a/theme/base.html b/theme/base.html deleted file mode 100644 index 35a4035..0000000 --- a/theme/base.html +++ /dev/null @@ -1,195 +0,0 @@ -{% import "partials/language.html" as lang with context %} -{% set feature = config.theme.feature %} -{% set palette = config.theme.palette %} -{% set font = config.theme.font %} - - - - {% block site_meta %} - - - - {% if page and page.meta.description %} - - {% elif config.site_description %} - - {% endif %} - {% if page.canonical_url %} - - {% endif %} - {% if page and page.meta.author %} - - {% elif config.site_author %} - - {% endif %} - {% for key in [ - "clipboard.copy", - "clipboard.copied", - "search.language", - "search.result.none", - "search.result.one", - "search.result.other", - "search.tokenizer" - ] %} - - {% endfor %} - - - {% endblock %} - {% block htmltitle %} - {% if page and page.meta.title %} - {{ page.meta.title }} - {% elif page and page.title and not page.is_homepage %} - {{ page.title }} - {{ config.site_name }} - {% else %} - {{ config.site_name }} - {% endif %} - {% endblock %} - {% block styles %} - - {% if palette.primary or palette.accent %} - - {% endif %} - {% endblock %} - {% block libs %} - - {% endblock %} - {% block fonts %} - {% if font != false %} - - - {% endif %} - - {% endblock %} - {% for path in extra_css %} - - {% endfor %} - {% block extrahead %}{% endblock %} - - {% if palette.primary or palette.accent %} - {% set primary = palette.primary | replace(" ", "-") | lower %} - {% set accent = palette.accent | replace(" ", "-") | lower %} - {% if palette.primary and palette.accent %} - - {% elif palette.primary %} - - {% elif palette.accent %} - - {% endif %} - {% else %} - - {% endif %} - - - {% set platform = config.extra.repo_icon or config.repo_url %} - {% if "github" in platform %} - {% include "assets/images/icons/github-1da075986e.svg" %} - {% elif "gitlab" in platform %} - {% include "assets/images/icons/gitlab-5ad3f9f9e5.svg" %} - {% elif "bitbucket" in platform %} - {% include "assets/images/icons/bitbucket-670608a71a.svg" %} - {% endif %} - - - - - - {% block header %} - {% include "partials/header.html" %} - {% endblock %} -
- {% if feature.tabs %} - {% include "partials/tabs.html" %} - {% endif %} -
-
- {% block site_nav %} - {% if nav %} -
-
-
- {% include "partials/nav.html" %} -
-
-
- {% endif %} - {% if page.toc %} -
-
-
- {% include "partials/toc.html" %} -
-
-
- {% endif %} - {% endblock %} -
-
- {% block content %} - {% if page.edit_url %} - - {% endif %} - {% if not "\x3ch1" in page.content %} -

{{ page.title | default(config.site_name, true)}}

- {% endif %} - {{ page.content }} - {% block source %} - {% if page.meta.source %} -

{{ lang.t("meta.source") }}

- {% set path = page.meta.path | default([""]) %} - {% set file = page.meta.source %} - - {{ file }} - - {% endif %} - {% endblock %} - {% endblock %} - {% block disqus %} - {% if config.extra.disqus and not page.is_homepage %} -

{{ lang.t("meta.comments") }}

- {% include "partials/disqus.html" %} - {% endif %} - {% endblock %} -
-
-
-
- {% block footer %} - {% include "partials/footer.html" %} - {% endblock %} -
- {% block scripts %} - - {% if lang.t("search.language") != "en" %} - {% set languages = lang.t("search.language").split(",") %} - {% if languages | length and languages[0] != "" %} - {% set path = base_url + "/assets/javascripts/lunr" %} - - {% for language in languages | map("trim") %} - {% if language != "en" %} - {% if language == "jp" %} - - {% endif %} - - {% endif %} - {% endfor %} - {% if languages | length > 1 %} - - {% endif %} - {% endif %} - {% endif %} - - {% for path in extra_javascript %} - - {% endfor %} - {% endblock %} - {% block analytics %} - {% if config.google_analytics %} - - {% endif %} - {% endblock %} - -