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,61 @@
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
+		<h1>Projet site2</h1>
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 rewrite('home') ?>">Site2</a>
48
+          <ul class="nav">
49
+            <li <?php echo $page == 'contact' ? 'class="active"' : ''?> >
50
+            <a href="<?php echo rewrite('contact') ?>">Contact</a>
51
+            </li>
52
+            <li <?php echo $page == 'guestbook' ? 'class="active"' : ''?> >
53
+            <a href="<?php echo rewrite('guestbook') ?>">Livre d'or</a>
54
+            </li>
55
+            <li>
56
+            <a href="/demo.php">Démo</a>
57
+            </li>
58
+          </ul>
59
+        </div>
60
+      </div>
61
+    </div>
0 62
\ No newline at end of file