website diff webchat.php @ rev 877
Add webchat.php for easy access to SliTaz IRC channel from a browser
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Fri Feb 17 12:31:40 2012 +0100 (2012-02-17) |
parents | |
children | d3c0e431f8c2 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/webchat.php Fri Feb 17 12:31:40 2012 +0100 1.3 @@ -0,0 +1,85 @@ 1.4 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 1.5 + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 1.6 +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 1.7 +<head> 1.8 + <title>SliTaz - Web chat</title> 1.9 + <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> 1.10 + <meta name="description" content="slitaz webchat" /> 1.11 + <meta name="keywords" lang="en" content="slitaz irc chat support" /> 1.12 + <meta name="robots" content="index, follow, all" /> 1.13 + <meta name="modified" content="<?php echo (date( "Y-m-d H:i:s", getlastmod())); ?>" /> 1.14 + <meta name="author" content="Christophe Lincoln"/> 1.15 + <link rel="shortcut icon" href="favicon.ico" /> 1.16 + <link rel="stylesheet" type="text/css" href="slitaz.css" /> 1.17 +</head> 1.18 +<body> 1.19 + 1.20 +<!-- Header --> 1.21 +<div id="header"> 1.22 + <div id="logo"></div> 1.23 + <div id="network"> 1.24 + <a href="./netmap.php"> 1.25 + <img src="images/network.png" alt="network.png" /></a> 1.26 + <a href="http://scn.slitaz.org/">Community</a> 1.27 + <a href="http://doc.slitaz.org/">Doc</a> 1.28 + <a href="http://forum.slitaz.org/">Forum</a> 1.29 + <a href="http://bugs.slitaz.org">Bugs</a> 1.30 + <a href="http://hg.slitaz.org/">Hg</a> 1.31 + </div> 1.32 + <h1><a href="./">SliTaz GNU/Linux</a></h1> 1.33 +</div> 1.34 + 1.35 +<!-- Block --> 1.36 +<div id="block"> 1.37 + <!-- Navigation --> 1.38 + <div id="block_nav" style="text-align: center; padding: 10px;"> 1.39 + <?php include("libs/random-image.php"); ?> 1.40 + </div> 1.41 + <!-- Information/image --> 1.42 + <div id="block_info"> 1.43 + <h4>Web chat</h4> 1.44 + <p> 1.45 + Chat on SliTaz Freenode IRC chanel to meet users and contributors 1.46 + or get live support. On SliTaz you can also use a desktop application 1.47 + to connect on IRC. LostIRC is installed in core and Xchat or Pidgin 1.48 + in slitaz repositories. 1.49 + </p> 1.50 + </div> 1.51 +</div> 1.52 + 1.53 +<!-- Content --> 1.54 +<div id="content"> 1.55 + 1.56 +<iframe 1.57 + style="border: solid 1px #ddd;" 1.58 + src="http://webchat.freenode.net?channels=slitaz&uio=OT10cnVlJjEyPXRydWU62" 1.59 + width="100%" height="400"> 1.60 +</iframe> 1.61 + 1.62 +<!-- End of content --> 1.63 +</div> 1.64 + 1.65 +<div style="margin-top: 100px;"></div> 1.66 + 1.67 +<!-- Footer --> 1.68 +<div id="footer"> 1.69 + Copyright © <span class="year"></span> 1.70 + <a href="http://www.slitaz.org/">SliTaz</a> - Network: 1.71 + <a href="http://scn.slitaz.org/">Community</a> 1.72 + <a href="http://doc.slitaz.org/">Doc</a> 1.73 + <a href="http://forum.slitaz.org/">Forum</a> 1.74 + <a href="http://pkgs.slitaz.org/">Packages</a> 1.75 + <a href="http://bugs.slitaz.org">Bugs</a> 1.76 + <a href="http://hg.slitaz.org/">Hg</a> 1.77 + <p> 1.78 + SliTaz @ 1.79 + <a href="http://twitter.com/slitaz">Twitter</a> 1.80 + <a href="http://www.facebook.com/slitaz">Facebook</a> 1.81 + <a href="http://distrowatch.com/slitaz">Distrowatch</a> 1.82 + <a href="http://en.wikipedia.org/wiki/SliTaz">Wikipedia</a> 1.83 + <a href="http://flattr.com/profile/slitaz">Flattr</a> 1.84 + </p> 1.85 +</div> 1.86 + 1.87 +</body> 1.88 +</html>