Initial commit
This commit is contained in:
commit
d4efef793b
25
README.md
Normal file
25
README.md
Normal file
@ -0,0 +1,25 @@
|
||||
New site
|
||||
========
|
||||
|
||||
A rewrite of my site.
|
||||
|
||||
This site is written in php again, this is because
|
||||
|
||||
1. The ability to run as a tor site is very important
|
||||
2. No need for javascript
|
||||
|
||||
However this site will use some javascript for fun stuff, but nothing required.
|
||||
This site will also use custom made css that looks much much better
|
||||
|
||||
This site will also use a database to pull out the articles, however they will
|
||||
be much better this time around
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
* [ ] Basic home/about me page
|
||||
* [ ] Contact info
|
||||
* [ ] Links to projects
|
||||
* [ ] Posts w/ a tagging system
|
||||
* [ ] Some javascript utilities
|
||||
|
0
src/common/footer.css
Normal file
0
src/common/footer.css
Normal file
0
src/common/footer.php
Normal file
0
src/common/footer.php
Normal file
0
src/common/header.css
Normal file
0
src/common/header.css
Normal file
0
src/common/header.php
Normal file
0
src/common/header.php
Normal file
0
src/common/include.php
Normal file
0
src/common/include.php
Normal file
17
src/index.php
Normal file
17
src/index.php
Normal file
@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<?php include 'common/include.php' ?>
|
||||
<title>Tyler Perkins - Home</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php include 'common/header.php' ?>
|
||||
|
||||
<h1>Hello world!</h1>
|
||||
|
||||
|
||||
<?php include 'common/footer.php' ?>
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user