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

Removed old vanilla file and add BBpress theme
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 06 02:14:22 2011 +0200 (2011-04-06)
parents
children 92ca357624a0
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/">
33 <img src="<?php bb_uri(); ?>/my-templates/slitaz/images/network.png" alt="network.png" /></a>
34 <a href="http://scn.slitaz.org/">Community</a>
35 <a href="http://doc.slitaz.org/">Doc</a>
36 <a href="http://forum.slitaz.org/">Forum</a>
37 <a href="http://labs.slitaz.org/issues">Bugs</a>
38 <a href="http://hg.slitaz.org/">Hg</a>
39 </div>
41 <h1><a href="<?php bb_uri(); ?>"><?php bb_option('name'); ?></a></h1>
42 <?php if ( bb_get_option('description') ) : ?><p class="description"><?php bb_option('description'); ?></p><?php endif; ?>
44 <?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
46 <div class="search">
47 <?php search_form(); ?>
48 </div>
49 </div>
51 <!-- SliTaz Block -->
52 <div id="block">
53 <div style="text-align: justify; width: 48%; padding: 20px 10px 0 0;">
54 The SliTaz Forum is the place where you can get support,
55 ask any request about SliTaz, help others and get involve
56 in a community group.
57 <p>
58 Old forum:
59 <a href="http://vanilla.slitaz.org/">vanilla.slitaz.org</a>
60 </p>
61 </div>
62 </div>
64 <div id="main">
66 <?php if ( bb_is_profile() ) profile_menu(); ?>