19 lines
510 B
HTML
19 lines
510 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
{{ super() }}
|
|
|
|
{% if git_page_authors %}
|
|
<div class="md-source-date">
|
|
<small>
|
|
Authors: {{ git_page_authors | default('enable mkdocs-git-authors-plugin') }}
|
|
</small>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block config %}
|
|
{{ super() }}
|
|
{% if "localsearch" in config["plugins"] %}
|
|
<script src="https://unpkg.com/iframe-worker/polyfill"></script>
|
|
<script src="{{ 'search/search_index.js' | url }}"></script>
|
|
{% endif %}
|
|
{% endblock %} |