slitaz-forge view forum/my-templates/slitaz/header.php @ rev 328

forum, irc: add live irc link
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 28 21:32:32 2012 +0200 (2012-08-28)
parents 8ec860ba37ef
children 0af8c6e40dcd
line source
1 <?php
2 $_head_profile_attr = '';
3 if ( bb_is_profile() ) {
4 global $self;
5 if ( !$self ) {
6 $_head_profile_attr = ' profile="http://www.w3.org/2006/03/hcard"';
7 }
8 }
9 ?>
10 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
11 <html xmlns="http://www.w3.org/1999/xhtml"<?php bb_language_attributes( '1.1' ); ?>>
12 <head<?php echo $_head_profile_attr; ?>>
13 <meta http-equiv="X-UA-Compatible" content="IE=8" />
14 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
15 <title><?php bb_title() ?></title>
16 <link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
17 <?php if ( 'rtl' == bb_get_option( 'text_direction' ) ) : ?>
18 <link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
19 <?php endif; ?>
21 <?php bb_feed_head(); ?>
23 <?php bb_head(); ?>
25 </head>
26 <body id="<?php bb_location(); ?>">
27 <div id="wrapper">
28 <div id="header" role="banner">
30 <!-- SliTaz Network -->
31 <div id="network">
32 <a href="http://www.slitaz.org/">Home</a>
33 <a href="http://scn.slitaz.org/">Community</a>
34 <a href="http://webchat.freenode.net/?channels=#slitaz">IRC</a>
35 <a href="http://doc.slitaz.org/">Doc</a>
36 <a href="http://forum.slitaz.org/">Forum</a>
37 <a href="http://slitaz.pro/">Pro</a>
38 <a href="http://shop.slitaz.org/">Shop</a>
39 <a href="http://bugs.slitaz.org">Bugs</a>
40 <a href="http://hg.slitaz.org/">Hg</a>
41 </div>
43 <h1><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a></h1>
44 <?php if ( bb_get_option('description') ) : ?><p class="description"><?php bb_option('description'); ?></p><?php endif; ?>
46 <?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
48 <div class="search">
49 <?php search_form(); ?>
50 </div>
51 </div>
53 <!-- SliTaz Block -->
54 <div id="block">
55 <div style="text-align: justify; width: 48%; padding: 20px 10px 0 0;">
56 The SliTaz Forum is the place where you can get support,
57 ask any questions about SliTaz, make requests, help others
58 and get involved in a community group.
59 </div>
60 </div>
62 <div id="main">
64 <?php if ( bb_is_profile() ) profile_menu(); ?>