diff options
| author | Nathan Kinkade <nath@nkinka.de> | 2008-03-16 20:31:59 +0000 |
|---|---|---|
| committer | Nathan Kinkade <nath@nkinka.de> | 2008-03-16 20:31:59 +0000 |
| commit | 32482b90446a7974e4aa1a392a79f1c8e18ed200 (patch) | |
| tree | e619d2d5b7d6124303786c59037f69f5a5a8ccbd /download.php | |
| parent | d755cbc9d0974fd6554236e5a7a772df6ad71cb0 (diff) | |
Added download page and header link
Diffstat (limited to 'download.php')
| -rw-r--r-- | download.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/download.php b/download.php new file mode 100644 index 0000000..9a2d8a8 --- /dev/null +++ b/download.php @@ -0,0 +1,24 @@ +<?php + +/** + * Copyright (c) 2007 Nathan Kinkade + * + * This code is offered under an MIT (X11) license. For more information + * about the terms of this license see the file LICENSE included with this + * software or visit: http://www.opensource.org/licenses/mit-license.php + */ + +# include the main site config where various global variables +# and libraries are included +include("config.php"); + +# grab the various parts +include("header.php"); +include("sidebar_left.php"); +include("sidebar_right.php"); +include("footer.php"); + +# display the page +$smarty->display("download.tpl"); + +?> |
