Add an Edit link in docs footer (#3407)

This commit is contained in:
Eddy Ashton 2022-01-14 17:41:25 +00:00 коммит произвёл GitHub
Родитель 135bfbe3cf
Коммит 2950d2a5c4
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 11 добавлений и 0 удалений

11
doc/_templates/page.html поставляемый Normal file
Просмотреть файл

@ -0,0 +1,11 @@
{#-
This extends page.html from the Furo template to add an Edit on GitHub button to the footer.
-#}
{% extends "!page.html" %}
{% block footer %}
{{ super() }}
<script>
var relatedInfo = document.querySelector(".related-information");
relatedInfo.insertAdjacentHTML("beforeend", '| <a class="muted-link" href="https://github.com/microsoft/CCF/edit/main/doc/{{ pagename }}{{ page_source_suffix }}" rel="nofollow">Edit</a>');
</script>
{% endblock %}