aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/footer.html
blob: a7bd031906be9ddd9f42c36d122884e88229c285 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<footer class="bd-footer py-4 py-md-5 mt-5 bg-body-tertiary shadow border">
    <div class="container">
        <div class="row">
            <div class="col">
                <ul class="list-unstyled">
                    <li><cite>2007—{{ now.Year }}</cite></li>
                    <li><cite>Александр NeonXP Кирюхин</cite></li>
                    <li><cite>г.Казань</cite></li>
                </ul>
            </div>
            <div class="col d-flex justify-content-center">
                <ul class="list-unstyled">
                    <li>Коммит: {{ .GitInfo.AbbreviatedHash }}</li>
                    <li>Дата сборки: {{ .GitInfo.AuthorDate.Format "2006-01-02" }}</li>
                    {{ with .File }}
                    <li><a href="https://git.neonxp.ru/blog.git/tree/content/{{.Path}}">Исходный код файла</a></li>
                    {{ end }}
                </ul>
            </div>
            <div class="col">
                <ul class="list-unstyled float-end">
                    <li><a href="https://git.neonxp.ru/blog.git">Исходный код блога</a></li>
                    <li><a href="mailto:i@neonxp.ru" rel="me">Электропочта</a></li>
                    <li><a href="https://neonxp.ru/posts/index.xml">РСС</a></li>
                    <li>
                        <a href="https://validator.w3.org/nu/?doc=https%3A%2F%2Fneonxp.ru%2F" target="_blank">
                            <img src="/img/valid-html401.png" alt="valid html">
                        </a>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</footer>
{{ partialCached "head/js.html" . }}