-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
30 lines (27 loc) · 925 Bytes
/
index.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
<?php session_start();?>
<?php include("head.php");?>
<?php include("header.php");?>
<section class="jumbotron text-xs-center">
<div class="container">
<h1 class="jumbotron-heading">Welcome to <strong>NatureSnap</strong></h1>
<p class="lead text-muted">Something short and leading about the collection below—its contents, the creator, etc. Make it short and sweet, but not too short so folks don't simply skip over it entirely.</p>
<p>
<a href="https://github.com/juanv911/NatureSnap-API" class="btn btn-primary">Fork Project on GitHub</a>
</p>
</div>
</section>
<div class="album">
<div class="container">
<div class="row"></div>
</div>
</div>
<?php include("footer.php");?>
<script>
latest();
//Call likePhoto Function
$(document).on("click",".like",function(e) {
e.preventDefault();
var photo_id = $(this).attr("data-photo");
likePhoto(photo_id);
});
</script>