slitaz-forge view forum/my-templates/slitaz/footer.php @ rev 718

pangolin/web/index.php: add games.slitaz.org
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Oct 25 17:27:46 2021 +0000 (2021-10-25)
parents a33dea8a7991
children
line source
1 <?php do_action('bb_foot'); ?>
2 </div>
4 </div>
6 <script type="text/javascript">
7 function QRCodePNG(str, obj) {
8 try {
9 obj.height = obj.width += 300;
10 return QRCode.generatePNG(str, {ecclevel: 'H'});
11 }
12 catch (any) {
13 var element = document.createElement("script");
14 element.src = "/my-templates/slitaz/qrcode.js";
15 element.type ="text/javascript";
16 element.onload = function() {
17 obj.src = QRCode.generatePNG(str, {ecclevel: 'H'});
18 };
19 document.body.appendChild(element);
20 }
21 }
22 </script>
24 <div id="footer" role="contentinfo">
25 Copyright &copy; <?php echo date('Y'); ?>
26 <a href="http://www.slitaz.org/">SliTaz</a> Powered by
27 <a href="http://bbpress.org">bbPress</a> - Network:
28 <a href="http://scn.slitaz.org/">Community</a>
29 <a href="http://doc.slitaz.org/">Doc</a>
30 <a href="http://forum.slitaz.org/">Forum</a>
31 <a href="http://pkgs.slitaz.org/">Packages</a>
32 <a href="http://bugs.slitaz.org">Bugs</a>
33 <a href="http://hg.slitaz.org/">Hg</a>
34 <p>
35 <img src="/my-templates/slitaz/images/qr.png" alt="SliTaz @"
36 onmouseover="this.title = location.href"
37 onclick="this.src = QRCodePNG(location.href, this)" />
38 <a href="http://twitter.com/slitaz">Twitter</a>
39 <a href="http://www.facebook.com/slitaz">Facebook</a>
40 <a href="http://distrowatch.com/slitaz">Distrowatch</a>
41 <a href="http://en.wikipedia.org/wiki/SliTaz">Wikipedia</a>
42 <a href="http://flattr.com/profile/slitaz">Flattr</a>
43 </p>
45 <!-- If you like showing off the fact that your server rocks -->
46 <!-- <p class="showoff">
47 <?php
48 global $bbdb;
49 printf(
50 __( 'This page generated in %s seconds, using %d queries.' ),
51 bb_number_format_i18n( bb_timer_stop(), 2 ),
52 bb_number_format_i18n( $bbdb->num_queries )
53 );
54 ?>
55 </p> -->
56 </div>
58 </body>
59 </html>