Initial commit

This commit is contained in:
Tyler Perkins 2022-11-23 15:56:06 -05:00
commit d4efef793b
7 changed files with 42 additions and 0 deletions

25
README.md Normal file
View 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
View File

0
src/common/footer.php Normal file
View File

0
src/common/header.css Normal file
View File

0
src/common/header.php Normal file
View File

0
src/common/include.php Normal file
View File

17
src/index.php Normal file
View 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>