File size: 811 Bytes
7940b00
 
 
 
bd2158f
 
 
7940b00
 
 
 
 
 
bd2158f
a3eb413
7e4b563
a3eb413
8e3cd60
08a9614
bd2158f
 
 
7940b00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}

{% block extrahead %}
  {{ super() }}
  {% if page and page.meta and page.meta.description %}
    <meta name="description" content="{{ page.meta.description | e }}">
  {% elif config.extra.description %}
    <meta name="description" content="{{ config.extra.description | e }}">
  {% endif %}
{% endblock %}

{% block footer %}
  {{ super() }}
  {% if page and page.file and page.file.src_uri %}
    <div style="text-align:center; margin-top: 2em;">
      <a href="https://github.com/kagvi13/HMP/blob/main/docs/{{ page.file.src_uri }}"
         class="md-button md-button--primary" style="display:inline-flex; align-items:center; gap:0.3em;">
        {% include "partials/icons/github.svg" %}
        Исходный файл (.md)
      </a>
    </div>
  {% endif %}
{% endblock %}