Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

final procedural project

ER authored on 13/04/2012 10:17:34
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,101 @@
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
+    
64
+    <br/>
65
+    <?php echo $content ?>
66
+    
67
+        <footer>
68
+        <p>&copy; Company 2011</p>
69
+    </footer>
70
+    
71
+  </div>
72
+
73
+  <!-- JavaScript at the bottom for fast page loading -->
74
+
75
+  <!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
76
+  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
77
+  <script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script>
78
+
79
+  <!-- scripts concatenated and minified via build script -->
80
+  <script src="/js/plugins.js"></script>
81
+  <script src="/js/script.js"></script>
82
+  <script src="http://autobahn.tablesorter.com/jquery.tablesorter.min.js"></script>
83
+  
84
+  <script src="/js/bootstrap-dropdown.js"></script>
85
+  <script src="/js/bootstrap-twipsy.js"></script>
86
+  <script src="/js/bootstrap-scrollspy.js"></script>
87
+  <script src="/js/bootstrap-scrollspy.js"></script>
88
+  <script src="/js/assets/application.js"></script>
89
+  <!-- end scripts -->
90
+
91
+  <!-- Asynchronous Google Analytics snippet. Change UA-XXXXX-X to be your site's ID.
92
+       mathiasbynens.be/notes/async-analytics-snippet -->
93
+  <script>
94
+    var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
95
+    (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
96
+    g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
97
+    s.parentNode.insertBefore(g,s)}(document,'script'));
98
+  </script>
99
+</body>
100
+</html>
101
+    
0 102
\ No newline at end of file