--- /dev/null
+{**************************************************************************}
+{* *}
+{* Copyright (C) 2003-2008 Polytechnique.org *}
+{* http://opensource.polytechnique.org/ *}
+{* *}
+{* This program is free software; you can redistribute it and/or modify *}
+{* it under the terms of the GNU General Public License as published by *}
+{* the Free Software Foundation; either version 2 of the License, or *}
+{* (at your option) any later version. *}
+{* *}
+{* This program is distributed in the hope that it will be useful, *}
+{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
+{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
+{* GNU General Public License for more details. *}
+{* *}
+{* You should have received a copy of the GNU General Public License *}
+{* along with this program; if not, write to the Free Software *}
+{* Foundation, Inc., *}
+{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
+{* *}
+{**************************************************************************}
+
+{if !$smarty.server.HTTP_USER_AGENT|regex_replace:"/^Mozilla\/(3|4\.[^0]).*$/":""}
+<h1>ATTENTION !</h1>
+
+<p class="erreur">
+Netscape 4 et certains autres navigateurs très anciens ne sont pas supportés par ce site !!!
+</p>
+<p>
+En effet, ils ne comprenent qu'une trop faible partie des standards du web.
+Il faut donc s'attendre à ce que nombre des fonctionnalités de ce site soient de ce fait indisponnibles.
+</p>
+<p>
+Nous conseillons très vivement d'utiliser des navigateurs récents, tels
+<a href="http://www.mozilla.org/products/firefox/">Firefox</a>
+</p>
+<br />
+{/if}
+
+{if !$pl_no_errors || $pl_failure}
+{include core=triggers.tpl}
+{/if}
+
+{if !$pl_failure && $pl_tpl}{include file=$pl_tpl}{/if}
+
+{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}
--- /dev/null
+{**************************************************************************}
+{* *}
+{* Copyright (C) 2003-2008 Polytechnique.org *}
+{* http://opensource.polytechnique.org/ *}
+{* *}
+{* This program is free software; you can redistribute it and/or modify *}
+{* it under the terms of the GNU General Public License as published by *}
+{* the Free Software Foundation; either version 2 of the License, or *}
+{* (at your option) any later version. *}
+{* *}
+{* This program is distributed in the hope that it will be useful, *}
+{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
+{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
+{* GNU General Public License for more details. *}
+{* *}
+{* You should have received a copy of the GNU General Public License *}
+{* along with this program; if not, write to the Free Software *}
+{* Foundation, Inc., *}
+{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
+{* *}
+{**************************************************************************}
+
+{if #globals.debug#}
+@@BACKTRACE@@
+
+{if $validate}
+ <div id="dev">
+ @HOOK@
+ Validation :
+ <a href="http://jigsaw.w3.org/css-validator/validator?uri={#globals.baseurl#}/valid.html">CSS</a>
+ |
+ références :
+ <a href="http://www.w3schools.com/xhtml/xhtml_reference.asp">XHTML</a>
+ <a href="http://www.w3schools.com/css/css_reference.asp">CSS2</a>
+ </div>
+{/if}
+{/if}
+
+{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}
--- /dev/null
+{**************************************************************************}
+{* *}
+{* Copyright (C) 2003-2008 Polytechnique.org *}
+{* http://opensource.polytechnique.org/ *}
+{* *}
+{* This program is free software; you can redistribute it and/or modify *}
+{* it under the terms of the GNU General Public License as published by *}
+{* the Free Software Foundation; either version 2 of the License, or *}
+{* (at your option) any later version. *}
+{* *}
+{* This program is distributed in the hope that it will be useful, *}
+{* but WITHOUT ANY WARRANTY; without even the implied warranty of *}
+{* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *}
+{* GNU General Public License for more details. *}
+{* *}
+{* You should have received a copy of the GNU General Public License *}
+{* along with this program; if not, write to the Free Software *}
+{* Foundation, Inc., *}
+{* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *}
+{* *}
+{**************************************************************************}
+
+{foreach from=$pl_css item=css}
+<link rel="stylesheet" type="text/css" href="css/{$css}" media="all"/>
+{/foreach}
+{foreach from=$pl_inline_css item=css}
+<style type="text/css">
+{$css|smarty:nodefaults}
+</style>
+{/foreach}
+{foreach from=$pl_link item=link}
+<link rel="{$link.rel}" href="{$link.href}" />
+{/foreach}
+<script type="text/javascript">
+ var platal_baseurl = "{$globals->baseurl}/";
+</script>
+{foreach from=$pl_js item=js}
+<script type="text/javascript" src="javascript/{$js}"></script>
+{/foreach}
+{if $pl_rss}
+<link rel="alternate" type="application/rss+xml" title="{$pl_rss.title}" href="{$pl_rss.href}" />
+{/if}
+{if $pl_extra_header}
+{$pl_extra_header|smarty:nodefaults}
+{/if}
+<title>{$pl_title}</title>
+
+{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}