website view lib/html/footer.pt.html @ rev 1334

Add GitHub link in footer
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Sep 24 00:04:21 2019 +0300 (2019-09-24)
parents 8a07223a2644
children 5eea1758dae6
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 &copy; <span class="year"></span>
23 <a href="http://www.slitaz.org/">SliTaz</a> - Network:
24 <a href="http://scn.slitaz.org/">Comunidade</a>
25 <a href="http://doc.slitaz.org/">Doc</a>
26 <a href="http://forum.slitaz.org/">Fórum</a>
27 <a href="http://pkgs.slitaz.org/">Pacotes</a>
28 <a href="http://bugs.slitaz.org">Bugs</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=PT">Distrowatch</a>
36 <a href="http://pt.wikipedia.org/wiki/SliTaz">Wikipedia</a>
37 <a href="https://flattr.com/profile/slitaz">Flattr</a>
38 <a href="https://github.com/SliTaz-official">GitHub</a>
39 </p>
40 </div>