Don't put the <?xml > tag if the browser is IE6 (thanks to mYk) ==> great improvemnts...
[platal.git] / templates / xnet / skin.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
6 {*  This program is free software; you can redistribute it and/or modify  *}
7 {*  it under the terms of the GNU General Public License as published by  *}
8 {*  the Free Software Foundation; either version 2 of the License, or     *}
9 {*  (at your option) any later version.                                   *}
10 {*                                                                        *}
11 {*  This program is distributed in the hope that it will be useful,       *}
12 {*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *}
13 {*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *}
14 {*  GNU General Public License for more details.                          *}
15 {*                                                                        *}
16 {*  You should have received a copy of the GNU General Public License     *}
17 {*  along with this program; if not, write to the Free Software           *}
18 {*  Foundation, Inc.,                                                     *}
19 {*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 {include file="skin/common.doctype.tpl"}
24     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
25     <meta name="description" content="Les associations polytechniciennes" />
26     <meta name="keywords" content="Ecole polytechnique, associations polytechniciennes, groupes X, binets" />
27
28     <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
29     <link rel="icon" href="images/favicon.png" type="image/png" />
30
31     <link rel="stylesheet" type="text/css" href="css/xnet.css" media="screen" />
32
33     <link rel="bookmark" href="http://www.polytechnique.fr/"        title="| École polytechnique" />
34     <link rel="bookmark" href="http://www.polytechnique.edu/"       title="| Institutionnal site" />
35     <link rel="bookmark" href="http://www.fondationx.org/"          title="| FX" />
36     <link rel="bookmark" href="http://www.polytechniciens.com/"     title="| AX" />
37     <link rel="bookmark" href="http://www.polytechnique.org/"       title="| Polytechnique.org" />
38     <link rel="bookmark" href="http://www.polytechnique.fr/eleves/" title="| Site d'élèves" />
39
40     {foreach from=$xorg_css item=css}
41     <link rel="stylesheet" type="text/css" href="css/{$css}" />
42     {/foreach}
43     {foreach from=$xorg_js item=js}
44     <script type="text/javascript" src="javascript/{$js}"></script>
45     {/foreach}
46     <script type="text/javascript" src="javascript/overlib.js"></script>
47
48     {if $xorg_rss}
49     <link rel="alternate" type="application/rss+xml" title="{$xorg_rss.title}" href="{$xorg_rss.href}" />
50     {/if}
51
52     {if $xorg_extra_header}
53     {$xorg_extra_header|smarty:nodefaults}
54     {/if}
55
56     <title>Les associations polytechniciennes</title>
57     {include file=skin/common.bandeau.head.tpl}
58   </head>
59   <body>
60     {include file=skin/common.devel.tpl}
61     {if !$simple}
62       {include file=skin/common.bandeau.tpl}
63     {/if}
64
65     <table id="layout" cellspacing="0" cellpadding="0">
66     {if !$simple}
67       <tr>
68         <td colspan="2">
69         <table cellspacing="0" cellpadding="0" id="top">
70           <tr>
71             <td style="width: 150px">
72               <a href=""><img src="images/asso-montants.png" alt="Logo Assos" /></a>
73             </td>
74             <td style="width: 106px">
75               {if $xnet_type}
76               <img src="images/logo_{$xnet_type}.png" alt="Logo {$xnet_type}" width="106" height="96" />
77               {else}
78               <img src="images/logo_institutions.png" alt="Logo {$xnet_type}" width="106" height="96" />
79               {/if}
80             </td>
81             <td style="width: 44px">
82               <img src="images/fin_logo.jpg" alt="Fin logo" width="44" height="96" />
83             </td>
84             <td style="width: auto;">
85               <img src="images/bandeau.jpg" alt="bandeau" height="96" width="100%" />
86             </td>
87             {if $xnet_type}
88             <td style="width: 280px">
89               <img src="images/texte_{$xnet_type}.jpg" alt="{$xnet_type}" width="280" height="96" />
90             </td>
91             {if $asso}
92             <td class="logo">
93               {if $asso.site}
94                 <a href="{$asso.site}"><img src='{$platal->ns}logo' alt="LOGO" height="80" /></a>
95               {else}
96                 <img src='{$platal->ns}logo' alt="LOGO" height="80"/>
97               {/if}
98             </td>
99             {/if}
100             {else}
101             <td class="logo">
102               <img src="images/asso.png" alt="Le serveur des activés associative des X" />
103               <a href="http://www.polytechnique.org">
104                 <img src="images/logo-xorg.png" alt="Polytechnique.org" height="80" />
105               </a>
106             </td>
107             {/if}
108           </tr>
109         </table>
110         </td>
111       </tr>
112     {/if}{* fin simple *}
113
114       {if $menu && !$simple}
115       <tr>
116         <td id="menu">
117           {foreach from=$menu key=title item=submenu}
118             {if $title neq 'no_title'}<h1>{$title}</h1>{/if}
119             {foreach from=$submenu key=tit item=url}
120               {if is_array($url)}
121                 <a{foreach from=$url key=var item=val} {$var}="{$val}"{/foreach}>{$tit}</a>
122               {else}
123                 <a href="{$url}">{$tit}</a>
124               {/if}
125             {/foreach}
126           {/foreach}
127         </td>
128         <td id="body">
129           {if $asso && ($is_admin || $smarty.session.suid.perms eq 'admin' || $smarty.session.suid.may_update[$asso.id])}
130           <div style="float: right" class="breadcrumb">
131             <form method="post" action="{$platal->ns}change_rights">
132               <div style="display: inline">
133                 <small>voir le site en tant que...
134                 <select name="right" onchange="this.form.submit()">
135                   {if $smarty.session.perms eq 'admin' || $smarty.session.suid.perms eq 'admin'}
136                   <option value="admin" {if $smarty.session.perms eq 'admin'}selected="selected"{/if}>Administrateur</option>
137                   {/if}
138                   <option value="anim" {if $is_admin && $smarty.session.perms neq 'admin'}selected="selected"{/if}>Animateur</option>
139                   <option value="member" {if !$is_admin && $is_member}selected="selected"{/if}>Membre</option>
140                   <option value="logged" {if !$is_admin && !$is_member}selected="selected"{/if}>Non-membre</option>
141                 </select>
142                 </small>
143               </div>
144             </form>
145           </div>
146           {/if}
147           <div class="breadcrumb">
148             <a href=".">X.net</a> »
149             {if $asso}
150               <a href="groups/{$asso.cat}">{$asso.cat|cat_pp}</a> »
151               {if $asso.dom}
152                 <a href="groups/{$asso.cat}/{$asso.dom}">{$asso.domnom}</a> »
153               {/if}
154               {$asso.nom}
155             {elseif $cat}
156               <a href="groups/{$cat}">{$cat|cat_pp}</a> »
157               {if $dom || !$doms}
158                 {if $cat eq 'promotions'}
159                   Choix de la promotion
160                 {else}
161                   Choix de l'Asso
162                 {/if}
163               {else}
164                 Choix du domaine
165               {/if}
166             {elseif $wikipage}
167               <a href="Xnet">Documentation</a>
168             {/if}
169           </div>
170           <div style="clear: both">
171           {include file="skin/common.content.tpl"}
172           </div>
173         </td>
174       </tr>
175       {else}
176       <tr>
177         <td colspan="2">
178           {include file="skin/common.content.tpl"}
179         </td>
180       </tr>
181       {if !$simple}
182       <tr><td colspan="2"><img src="images/barre.png" alt="----------" width="100%" /></td></tr>
183
184       <tr>
185         <td colspan="2">
186           <table class="links" summary="liens" cellspacing="0" cellpadding="0">
187             <tr>
188               <td class="left">   <a href="groups/groupesx">Groupes X</a> </td>
189               <td class="left"> <a href="groups/binets">Binets</a> </td>
190               <td class="center"> <a href="groups/promotions">Promotions</a> </td>
191               <td class="center"> <a href="groups/institutions">Institutions</a> </td>
192               <td class="right">  <a href="plan">Tous</a> </td>
193             </tr>
194           </table>
195         </td>
196       </tr>
197       {/if}
198       {/if}
199     {if !$simple}
200       <tr><td colspan="2"><img src="images/barre.png" alt="----------" width="100%" /></td></tr>
201
202       <tr>
203         <td colspan="2">
204         <table style="width: 100%">
205           <tr>
206             <td id="perso">
207               {list_all_my_groups}
208               {if !$smarty.session.auth}
209               <div>Me connecter :</div>
210               <a class='gp' href="login/{$platal->pl_self()}">polytechnicien</a>
211               {/if}
212             </td>
213             <td class="right" style="vertical-align: middle">
214               {if $smarty.session.perms eq admin}
215               <a href="admin" title="Administration des groupes">
216                 Gérer les groupes
217                 {icon name=wrench title="Administration"}
218               </a><br />
219               {/if}
220               <a href="Xnet" title="Manuel d'aide en ligne">
221                 Manuel de l'utilisateur
222                 {icon name=lightbulb title="Documentation"}
223               </a>
224             </td>
225           </tr>
226         </table>
227         </td>
228       </tr>
229
230       <tr><td colspan="2"><img src="images/barre.png" alt="----------" width="100%" /></td></tr>
231
232       <tr>
233         <td colspan="2" id="credits">
234           <a href="plan">plan du site</a> -
235           <a href="Xnet/Services">services proposés</a> -
236           <a href="Xnet/APropos">à propos de ce site</a> -
237           {mailto address="contact@polytechnique.org" text="nous contacter" encode="javascript"}
238           {if $smarty.session.auth}
239             - <a href="send_bug" class="popup_840x600">signaler un bug</a>
240           {/if}
241           <br />
242           © Copyright 2000-2007 <a href="http://x-org.polytechnique.org/">Association Polytechnique.org</a>
243         </td>
244       </tr>
245     {/if}
246     </table>
247   </body>
248 </html>
249 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}