aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/overrides/main.html
diff options
context:
space:
mode:
Diffstat (limited to 'overrides/main.html')
-rw-r--r--overrides/main.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/overrides/main.html b/overrides/main.html
new file mode 100644
index 00000000..4d19a86d
--- /dev/null
+++ b/overrides/main.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+
+{% block content %}
+ {{ super() }}
+
+
+<!-- {% block footer %}
+<ul class="metadata page-metadata" data-bi-name="page info" lang="en-us" dir="ltr">
+ <li class="contributors-holder">
+ <span class="contributors-text">Contributors</span>
+ <ul class="contributors" data-bi-name="contributors">
+ {%- for user in committers -%}
+ <li><a href="{{ user.url }}" title="{{ user.name }}" data-bi-name="contributorprofile" target="_blank"><img src="{{ user.avatar }}" alt="{{ user.name }}"></a></li>
+ {%- endfor -%}
+ </ul>
+ </li>
+</ul>
+{% endblock %} -->
+
+ {% if git_page_authors %}
+ <div class="md-source-date">
+ <small>
+ Authors: {{ git_page_authors | default('enable mkdocs-git-authors-plugin') }}
+ </small>
+ </div>
+ {% endif %}
+
+{% endblock %}