1
0
Fork 0

Enhance acme page.

This commit is contained in:
Ludovic Fernandez 2019-03-18 10:50:05 +01:00 committed by Traefiker Bot
parent f3ecc040c8
commit 9908137638
6 changed files with 188 additions and 235 deletions

37
docs/theme/main.html vendored Normal file
View file

@ -0,0 +1,37 @@
{% extends "base.html" %}
{% block footer %}
{% import "partials/language.html" as lang with context %}
<!-- Application footer -->
<footer class="md-footer">
<!-- Further information -->
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<!-- Copyright and theme information -->
<div class="md-footer-copyright">
{% if config.copyright %}
<div class="md-footer-copyright__highlight">
{{ config.copyright }}
</div>
{% endif %}
powered by
<a href="http://www.mkdocs.org" title="MkDocs">MkDocs</a>
and
<a href="http://squidfunk.github.io/mkdocs-material/"
title="Material for MkDocs">
Material for MkDocs</a>
</div>
<!-- Social links -->
{% block social %}
{% include "partials/social.html" %}
{% endblock %}
</div>
</div>
</footer>
{% endblock %}