-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
114 lines (95 loc) · 2.78 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
/**
* Created by PhpStorm.
* User: David Tanner
* Date: 4/28/14
* Time: 10:58 PM
*/
include "src/library.php";
$parent = "accordian_section";
?>
<!DOCTYPE html>
<html>
<head>
<title>Professional Me</title>
<meta name="viewport" content="width=device-width user-scalable=no">
<link rel="shortcut icon" type="image/x-icon" href="FAVICON.ICO">
<link rel='stylesheet' href="css/bootstrap-theme.min.css" type="text/css">
<link rel='stylesheet' href="css/bootstrap.min.css" type="text/css">
<link rel='stylesheet' href="css/jumbotron-narrow.css" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Paytone+One' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/jquery-2.1.0.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<style type="text/css">
body {
font-family: Verdana, serif;
color: #00275d;
}
#title h4 {
display: inline-block;
}
#accordian-buttons div{
display: inline-block;
}
.wgb a, #title a {
color: inherit;
}
.wgb a:active, .wgb a:hover {
color: white;
}
label.btn-primary {
background-color: #00275d;
}
.wgb {
color: white;
background-color: #00275d;
text-shadow:
-.025em -.025em 0 #dab37b,
.025em -.025em 0 #dab37b,
-.025em .025em 0 #dab37b,
.025em .025em 0 #dab37b;
}
hr {
color: #dab37b;
margin-top: 10px;
margin-bottom: 10px;
border-top: 2px solid #dab37b;
}
.panel-group p {
text-indent: 5%;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div id="title" class="col-sm-12 text-center">
<h1><span class="wgb"> David Tanner </span></h1>
<h4>CELL <a href="tel:(801) 810-6443">(801) 810-6443</a></h4>
<h4 class="hidden-xs"> | </h4>
<h4>EMAIL <a href="mailto:[email protected]">[email protected]</a></h4>
</div>
</div>
<hr>
<div class="panel-group" id="<?php echo $parent;?>">
<div>
<div id="accordian-buttons">
<h4>
<?php
$sections = array();
include "src/profile.php";
include "src/lds_church.php";
include "src/inthinc.php";
?>
</h4>
</div>
<?php
foreach ($sections as $section) {
create_collapse_body($section["entry"], $section["body"], $section["in_collapse"]);
}
?>
</div>
<hr>
</div>
</div>
<?php include "src/footer.php";?>