1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,100 @@ |
1 |
+<!doctype html> |
|
2 |
+<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> |
|
3 |
+<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> |
|
4 |
+<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> |
|
5 |
+<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> |
|
6 |
+<!-- Consider adding a manifest.appcache: h5bp.com/d/Offline --> |
|
7 |
+<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]--> |
|
8 |
+<head> |
|
9 |
+ <meta charset="utf-8"> |
|
10 |
+ |
|
11 |
+ <!-- Use the .htaccess and remove these lines to avoid edge case issues. |
|
12 |
+ More info: h5bp.com/i/378 --> |
|
13 |
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
|
14 |
+ |
|
15 |
+ <title><?php echo $title ?></title> |
|
16 |
+ <meta name="description" content="<?php echo $metaDesc ?>"> |
|
17 |
+ |
|
18 |
+ <!-- Mobile viewport optimized: h5bp.com/viewport --> |
|
19 |
+ <meta name="viewport" content="width=device-width"> |
|
20 |
+ |
|
21 |
+ <!-- Place favicon.ico and apple-touch-icon.png in the root directory: mathiasbynens.be/notes/touch-icons --> |
|
22 |
+ |
|
23 |
+ <link rel="stylesheet" href="/css/style.css"> |
|
24 |
+ <link rel="stylesheet" href="/css/bootstrap.css"> |
|
25 |
+ <link rel="stylesheet" href="/css/docs.css"> |
|
26 |
+ |
|
27 |
+ <!-- More ideas for your <head> here: h5bp.com/d/head-Tips --> |
|
28 |
+ |
|
29 |
+ <!-- All JavaScript at the bottom, except this Modernizr build. |
|
30 |
+ Modernizr enables HTML5 elements & feature detects for optimal performance. |
|
31 |
+ Create your own custom Modernizr build: www.modernizr.com/download/ --> |
|
32 |
+ <script src="js/libs/modernizr-2.5.3.min.js"></script> |
|
33 |
+</head> |
|
34 |
+<body> |
|
35 |
+ <!-- Prompt IE 6 users to install Chrome Frame. Remove this if you support IE 6. |
|
36 |
+ chromium.org/developers/how-tos/chrome-frame-getting-started --> |
|
37 |
+ <!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]--> |
|
38 |
+ <header> |
|
39 |
+ <h2>Ceci est la page <?php echo $title ?></h2> |
|
40 |
+ </header> |
|
41 |
+ <div role="main"> |
|
42 |
+ <div class="container canvas"> |
|
43 |
+ |
|
44 |
+ <div class="topbar" data-scrollspy="scrollspy"> |
|
45 |
+ <div class="topbar-inner"> |
|
46 |
+ <div class="container canvas"> |
|
47 |
+ <a class="brand" href="<?php echo url::link_rewrite('home') ?>">Site2</a> |
|
48 |
+ <ul class="nav"> |
|
49 |
+ <li <?php echo $page == 'contact' ? 'class="active"' : ''?> > |
|
50 |
+ <a href="<?php echo url::link_rewrite('contact') ?>">Contact</a> |
|
51 |
+ </li> |
|
52 |
+ <li <?php echo $page == 'guestbook' ? 'class="active"' : ''?> > |
|
53 |
+ <a href="<?php echo url::link_rewrite('guestbook', array('page' => 2)) ?>">Livre d'or</a> |
|
54 |
+ </li> |
|
55 |
+ <li> |
|
56 |
+ <a href="<?php echo url::link_rewrite('demo') ?>">Démo</a> |
|
57 |
+ </li> |
|
58 |
+ </ul> |
|
59 |
+ </div> |
|
60 |
+ </div> |
|
61 |
+ </div> |
|
62 |
+ |
|
63 |
+ <br/> |
|
64 |
+ <?php echo $content ?> |
|
65 |
+ |
|
66 |
+ <footer> |
|
67 |
+ <p>© Company 2011</p> |
|
68 |
+ </footer> |
|
69 |
+ |
|
70 |
+ </div> |
|
71 |
+ |
|
72 |
+ <!-- JavaScript at the bottom for fast page loading --> |
|
73 |
+ |
|
74 |
+ <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline --> |
|
75 |
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> |
|
76 |
+ <script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script> |
|
77 |
+ |
|
78 |
+ <!-- scripts concatenated and minified via build script --> |
|
79 |
+ <script src="/js/plugins.js"></script> |
|
80 |
+ <script src="/js/script.js"></script> |
|
81 |
+ <script src="http://autobahn.tablesorter.com/jquery.tablesorter.min.js"></script> |
|
82 |
+ |
|
83 |
+ <script src="/js/bootstrap-dropdown.js"></script> |
|
84 |
+ <script src="/js/bootstrap-twipsy.js"></script> |
|
85 |
+ <script src="/js/bootstrap-scrollspy.js"></script> |
|
86 |
+ <script src="/js/bootstrap-scrollspy.js"></script> |
|
87 |
+ <script src="/js/assets/application.js"></script> |
|
88 |
+ <!-- end scripts --> |
|
89 |
+ |
|
90 |
+ <!-- Asynchronous Google Analytics snippet. Change UA-XXXXX-X to be your site's ID. |
|
91 |
+ mathiasbynens.be/notes/async-analytics-snippet --> |
|
92 |
+ <script> |
|
93 |
+ var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']]; |
|
94 |
+ (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0]; |
|
95 |
+ g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js'; |
|
96 |
+ s.parentNode.insertBefore(g,s)}(document,'script')); |
|
97 |
+ </script> |
|
98 |
+</body> |
|
99 |
+</html> |
|
100 |
+ |
|
0 | 101 |
\ No newline at end of file |