-
Notifications
You must be signed in to change notification settings - Fork 85
/
Lab08.php
55 lines (40 loc) · 1.88 KB
/
Lab08.php
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
48
49
50
51
52
53
54
55
<?php include 'functions.inc.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lab08</title>
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/bootstrap-theme.css" />
</head>
<body>
<!-- include header here -->
<!-- Page Content -->
<main class="container">
<div class="row">
<!-- include left here -->
<div class="col-md-10">
<div class="jumbotron" id="postJumbo">
<h1>Posts</h1>
<p>Read other travellers' posts ... or create your own.</p>
<p><a class="btn btn-warning btn-lg">Learn more »</a></p>
</div>
<!-- start post summaries -->
<div class="postlist">
<!-- replace each of these rows with a function call -->
<?php
outputPostRow(1);
outputPostRow(2);
outputPostRow(3);
?>
</div> <!-- end post list -->
</div> <!-- end col-mid-10 -->
</div> <!-- end row -->
</main>
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>