46 |
jpm |
1 |
<!doctype html>
|
|
|
2 |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="{{configuration param="lang"}}"> <![endif]-->
|
|
|
3 |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="{{configuration param="lang"}}"> <![endif]-->
|
|
|
4 |
<!--[if IE 8]> <html class="no-js lt-ie9" lang="{{configuration param="lang"}}"> <![endif]-->
|
|
|
5 |
<!--[if gt IE 8]><!-->
|
|
|
6 |
<html class="no-js" lang="{{configuration param="lang"}}"> <!--<![endif]-->
|
|
|
7 |
<head lang="fr">
|
|
|
8 |
<!-- HTML Metas -->
|
|
|
9 |
<meta charset="{{configuration param="charset"}}">
|
|
|
10 |
{{metarobots}}
|
|
|
11 |
<meta name="keywords" content="{{configuration param="meta_keywords"}}" />
|
|
|
12 |
<meta name="description" content="{{configuration param="meta_description"}}" />
|
|
|
13 |
<meta name="viewport" content="width=device-width" />
|
|
|
14 |
|
|
|
15 |
<!-- Title of the page -->
|
|
|
16 |
<title>{{configuration param="wakka_name"}} : {{currentpage}}</title>
|
|
|
17 |
|
|
|
18 |
<!-- Favicons -->
|
|
|
19 |
<link rel="shortcut icon" type="image/x-icon" href="{{configuration param="theme_path"}}images/favicon.ico" />
|
|
|
20 |
<link rel="apple-touch-icon" href="{{configuration param="theme_path"}}images/apple-touch-icon.png" />
|
|
|
21 |
<link rel="icon" type="image/png" href="{{configuration param="theme_path"}}images/favicon.png" />
|
|
|
22 |
|
|
|
23 |
{{linkstyle othercss="bootstrap/bootstrap-responsive.min.css"}}
|
|
|
24 |
<link rel="stylesheet" href="{{configuration param="theme_path"}}styles/flore.css" />
|
|
|
25 |
|
|
|
26 |
{{linkrss}}
|
|
|
27 |
</head>
|
|
|
28 |
|
|
|
29 |
<body {{parambody}}>
|
|
|
30 |
<div class="navbar navbar-fixed-top">
|
|
|
31 |
<div class="navbar-inner">
|
|
|
32 |
<div class="container-fluid">
|
|
|
33 |
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
|
|
34 |
<span class="icon-bar"></span>
|
|
|
35 |
<span class="icon-bar"></span>
|
|
|
36 |
<span class="icon-bar"></span>
|
|
|
37 |
</a>
|
|
|
38 |
<a class="brand" rel="tooltip" data-placement="right" href="/" title="Retour à l'accueil du site.">
|
|
|
39 |
<img src="{{configuration param="theme_path"}}images/favicon.png" alt="Logo Tela Botanica" />
|
|
|
40 |
</a>
|
|
|
41 |
<a class="brand" href="{{configuration param="base_url"}}{{configuration param="root_page"}}" rel="tooltip" data-placement="right" title="Retour à la page principale de ce Wikini.">
|
|
|
42 |
{{configuration param="wakka_name"}}
|
|
|
43 |
</a>
|
|
|
44 |
<nav class="nav-collapse">
|
|
|
45 |
{{include page="PageMenuHaut" class="topnavpage" doubleclic="1" actif="1"}}
|
|
|
46 |
<div class="clear"></div>
|
|
|
47 |
</nav><!--/.nav-collapse -->
|
|
|
48 |
</div>
|
|
|
49 |
</div>
|
|
|
50 |
</div>
|
|
|
51 |
|
|
|
52 |
<div class="container-fluid main-body" role="main">
|
|
|
53 |
<div class="row-fluid">
|
|
|
54 |
<div class="span3">
|
|
|
55 |
<nav class="well sidebar-nav">
|
|
|
56 |
{{include page="PageMenu" doubleclic="1" actif="1"}}
|
|
|
57 |
</nav><!--/.well -->
|
|
|
58 |
</div><!--/span-->
|
|
|
59 |
<div class="span9" {{doubleclic}}>
|
|
|
60 |
{WIKINI_PAGE}
|
|
|
61 |
</div><!--/span-->
|
|
|
62 |
|
|
|
63 |
</div><!--/row-->
|
|
|
64 |
<div class="row-fluid">
|
|
|
65 |
<div class="span3"><!-- Bizare, ne devrait pas être nécessaire --></div>
|
|
|
66 |
<div class="offset3 span9">
|
|
|
67 |
{{barreredaction class="form-actions"}}
|
|
|
68 |
</div>
|
|
|
69 |
</div>
|
|
|
70 |
<footer>
|
|
|
71 |
{{include page="PageFooter" doubleclic="1"}}
|
|
|
72 |
</footer><!-- end of footer -->
|
|
|
73 |
</div><!--/.fluid-container-->
|
|
|
74 |
|
|
|
75 |
{{linkjavascript}}
|
|
|
76 |
<script type="text/javascript">
|
|
|
77 |
$(document).ready(function() {
|
|
|
78 |
$('a[rel="tooltip"], .has-tooltip').tooltip();
|
|
|
79 |
});
|
|
|
80 |
</script>
|
|
|
81 |
</body>
|
|
|
82 |
</html>
|