forked from h5bp/html5-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
47 lines (45 loc) · 1.57 KB
/
index.php
File metadata and controls
47 lines (45 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php require ("php/opening.php"); ?>
<?php require("php/header.php") ?>
<div id="main" role="main" class="container">
<div class="row">
<div class="twelvecol last">
<h1>Typo Demo Page (h1)</h1>
<p>
This is my boss, <a href="#">Jonathan Hart</a>, a self-made millionaire,
he's quite a guy. This is Mrs H., she's gorgeous, she's one lady who knows
how to take care of herself. By the way, my name is Max.
I take care of both of them, which ain't easy, 'cause when they met it was MURDER!
</p>
<p><a href="#" class="button">Go</a></p>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</div>
</div><!--row-->
<div class="row">
<div class="twelvecol last">
<div id="slideshow_wrapper">
<div id="slideshow">
<div class="slide active">
<img src="http://placehold.it/1110x400/ffff00">
</div>
<div class="slide jshidden">
<img src="http://placehold.it/1110x400/000054">
</div>
<div class="slide jshidden">
<img src="http://placehold.it/1110x400">
</div>
</div>
</div><!--slideshow_wrapper-->
</div>
</div><!--row-->
</div><!-- end main container -->
<?php require("php/footer.php"); ?>
<?php require("php/closing.php") ?>