diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-01 21:09:56 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-09-01 21:09:56 -0400 |
commit | 68056e6d92285e184518bc8c7130bb49767623f3 (patch) | |
tree | c2a24370d8d132f85fb929580078adaf49a3c5fb /index.php | |
parent | 116af031a42db23e836633d5298a9595ad0803c7 (diff) |
Move config into one config.php file, add an index file, spit out complete HTML files, use CSSHEADmaster
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/index.php b/index.php new file mode 100644 index 0000000..b3587be --- /dev/null +++ b/index.php @@ -0,0 +1,12 @@ +<?php +global $title; +$title = 'Org-Quotes'; +include('header.php'); +?> + <ul> + <li><a href="upload-org.php">Upload quotes from Org-Mode</a></li> + <li><a href="upload-msword.php">Upload quotes from MS Word</a></li> + <li><a href="make-post.php">Make a post from uploaded quotes</a></li> + </ul> +<?php +include('footer.php'); |