website view lib/html/footer.ru.html @ rev 1335

Update footer with Whaleshares pod link - Let rewards devs and users on the blockchain
author Christophe Lincoln <pankso@slitaz.org>
date Mon Nov 25 23:42:07 2019 +0100 (2019-11-25)
parents d6471579118e
children
line source
1 <!-- Footer -->
3 <script type="text/javascript">
4 function QRCodePNG(str, obj) {
5 try {
6 obj.height = obj.width += 300;
7 return QRCode.generatePNG(str, {ecclevel: 'H'});
8 }
9 catch (any) {
10 var element = document.createElement("script");
11 element.src = "/lib/js/qrcode.js";
12 element.type ="text/javascript";
13 element.onload = function() {
14 obj.src = QRCode.generatePNG(str, {ecclevel: 'H'});
15 };
16 document.body.appendChild(element);
17 }
18 }
19 </script>
21 <div id="footer">
22 Copyright © <span class="year"></span>
23 <a href="http://www.slitaz.org/">SliTaz</a> — Сеть:
24 <a href="http://scn.slitaz.org/">Сообщество</a>
25 <a href="http://doc.slitaz.org/">Документация</a>
26 <a href="http://forum.slitaz.org/">Форум</a>
27 <a href="http://pkgs.slitaz.org/">Пакеты</a>
28 <a href="http://bugs.slitaz.org">Баг-трекер</a>
29 <a href="http://hg.slitaz.org/">Hg</a>
30 <p>
31 <img src="/images/qr.png" alt="SliTaz @" onmouseover="this.title = location.href"
32 onclick="this.src = QRCodePNG(location.href, this)" />
33 <a href="https://twitter.com/slitaz">Twitter</a>
34 <a href="http://www.facebook.com/slitaz">Facebook</a>
35 <a href="http://distrowatch.com/table.php?distribution=slitaz&amp;language=RU">Distrowatch</a>
36 <a href="http://ru.wikipedia.org/wiki/SliTaz">Википедия</a>
37 <a href="https://github.com/SliTaz-official">GitHub</a>
38 <a href="https://whaleshares.io/@slitaz">Whaleshares</a>
39 </p>
40 </div>