-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (33 loc) · 951 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
<?php
$tag="home";
$root = $_SERVER['DOCUMENT_ROOT'];
include_once($root . "/header.php");
echo<<<_headerhtml
<head>
<link rel="stylesheet" href="styles/index.css" type="text/css" />
<title>Coding Sailor</title>
<meta name='description' content='The coding sailor blog! A world of tech, help, and common sense'>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<div class="jumbotron imgcontainer" style="background-color:rgba(50,75,100,1);">
<div class="container" style="color:white; margin-top:70px;">
<div class="row">
<div class="col-md-12">
<center>
<h1>Hello, i'm arbie</h1>
<p>Welcome to the coding sailor! A blog that deals with tech and a dash
of common sense.</p>
</center>
</div>
</div>
</div>
</div>
_headerhtml;
include_once($root . "/posts/current.php");
?>
<hr/>
<center><a href="posts/" class='h2'> View All Posts... </a></center>
<hr/>
<?php
include_once($root . "/footer.php");
?>