-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
30 lines (29 loc) · 922 Bytes
/
about.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
<?php require 'engine/functions.php'; ?>
<!DOCTYPE HTML>
<html>
<head>
<?= head('about') ?>
</head>
<body>
<div class="container">
<h1>About Blog</h1>
<article class="article">
Blog is a simple blog post web application.
created with php and <a href="http://purecss.io">pure framework</a>.
Their you can read posts of different categories like php,css,html,java and so on...
This is a personal blog site only admin can post into the blog.
code licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License v2.0</a>.
<address>
<strong>Created By: </strong><a href="mailto:[email protected]">yash sharma</a>
</address>
</article>
<footer class="footer">
<div class="pure-menu pure-menu-horizontal pure-menu-open">
<ul>
<li class="dark"><a href="index.php">Go To Homepage</a></li>
</ul>
</div>
</footer>
</div>
</body>
</html>