-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
41 lines (34 loc) · 851 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
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Michael Zheng 1550 Project 1</title>
<link rel="stylesheet" href="./css/home.css">
</head>
<body>
<div class="header">
<?php
include 'header.php';
?>
<div class="mainQuote">
<?php
$fileContents = file("verses.txt");
$line = $fileContents[rand(0, count($fileContents)-1)];
print $line;
?>
</div>
</div>
<div class="mainAbout">
<p>JustPray is dedicated to creating a community of people
who can PRAY for one another whether in times of joy or in times of sadness.</p>
</div>
<div class="postsContainer">
<a href='changes.txt'>CHANGES MADE</a>
</div>
<?php
include 'footer.php';
?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script src="./js/form.js"></script>
</body>
</html>