-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
27 lines (24 loc) · 1006 Bytes
/
index.php
File metadata and controls
27 lines (24 loc) · 1006 Bytes
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
<html>
<head>
<title>Camagru</title>
<link rel="stylesheet" type="text/css" href="style/style.css">
<meta name='viewport' content='width=device-width, minimum-scale=1, maximum-scale=1, user-scalable=no' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<?php include_once ('./modules/navbar.php'); ?>
<div class = "main-content">
<div id="photos">
</div>
<div class="pagination">
<p style="margin-right: 20px;">Page: <span id="page"></span></p>
<a id="pagination-button-previous">Previous</a>
<a id="pagination-button-next">Next</a>
</div>
</div>
<?php include_once ('./modules/footer.php'); ?>
<script src=".\js\api.js"></script>
<script src=".\js\user.js"></script>
<script src=".\js\index.js"></script>
</body>
</html>