all repos — nasg @ 49bcb80e27f1a17c3d75f6c1dd866bc8f73c027d

templates/block_footer.html (view raw)

 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
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
        <footer class="content-footer" id="main-footer">
            <nav class="footer-contact p-author h-card vcard limit">
                <h2>Site author</h2>
                <dl>
                    <dt>
                        <img class="photo avatar u-photo u-avatar" src="{{ site.author.avatar }}" alt="Photo of {{ site.author.name }}" />
                    </dt>
                    <dd>
                        <a class="fn p-name url u-url u-uid" href="/about.html">
                            {{ site.author.name }}
                        </a>
                    </dd>
                    <dt>email</dt>
                    <dd>
                        <a rel="me" class="u-email email" href="mailto:{{ site.author.email }}">
                            {{ site.author.email }}
                        </a>
                    </dd>
{% if site.author.sip %}
                    <dt>SIP</dt>
                    <dd>
                        <a rel="me" class="u-sip sip" href="sip:{{ site.author.sip }}">
                            {{ site.author.sip }}
                        </a>
                    </dd>
{% endif %}
{% if site.author.xmpp %}
                    <dt>XMPP</dt>
                    <dd>
                        <a rel="me" class="u-xmpp xmpp" href="xmpp:{{ site.author.xmpp }}">{{ site.author.xmpp }}</a>
                    </dd>
{% endif %}
{% if site.author.gpg %}
                    <dt>GPG</dt>
                    <dd>
                        <a rel="me" class="u-gpg gpg" href="/{{ site.author.gpg }}">key</a>
                    </dd>
{% endif %}
{% if site.author.flickr %}
                    <dt>flickr</dt>
                    <dd>
                        <a rel="me" class="u-flickr" href="https://flickr.com/people/{{ site.author.flickr }}">{{ site.author.flickr }}</a>
                    </dd>
{% endif %}
{% if site.author.github %}
                    <dt>github</dt>
                    <dd>
                        <a rel="me" class="u-github" href="https://github.com/{{ site.author.github }}">{{ site.author.github }}</a>
                    </dd>
{% endif %}
                </dl>
            </nav>
        </footer>

{% include 'symbols.svg' %}

    <!--
        This is a self-hosted analytics code, called Matomo
        I configured it to avoid placing cookies, respect Do Not Track,
        remove the last segment of IP information, so it stores as little
        information as possible.
    -->
    <script type="text/javascript">
      var _paq = _paq || [];
      _paq.push(["setDoNotTrack", true]);
      _paq.push(["disableCookies"]);
      _paq.push(['trackPageView']);
      _paq.push(['enableLinkTracking']);
      (function() {
        var u="//stats.petermolnar.net/";
        _paq.push(['setTrackerUrl', u+'piwik.php']);
        _paq.push(['setSiteId', '1']);
        var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
        g.type='text/javascript';
        g.async=true;
        g.defer=true;
        g.src=u+'piwik.js';
        s.parentNode.insertBefore(g,s);
      })();
    </script>
    <noscript>
        <img src="https://stats.petermolnar.net/piwik.php?idsite=1&amp;rec=1" style="border:0" alt="" />
    </noscript>


    </body>
</html>