diff options
author | Nick White <git@njw.me.uk> | 2009-10-05 00:23:48 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2009-10-05 00:23:48 +0100 |
commit | deb4f53d36b83cffa42063ea0186fd0babf2f505 (patch) | |
tree | f7a46912f771e76d770e0f3f4ded0b317c9f7c09 /webpages | |
parent | 705b1a62a491e76945e1b5a1a1a691552d5993e4 (diff) | |
download | njw-website-source-deb4f53d36b83cffa42063ea0186fd0babf2f505.tar.bz2 njw-website-source-deb4f53d36b83cffa42063ea0186fd0babf2f505.zip |
Renamed text/ to webpages/
Diffstat (limited to 'webpages')
-rw-r--r-- | webpages/example.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/webpages/example.php b/webpages/example.php new file mode 100644 index 0000000..2a0a6ec --- /dev/null +++ b/webpages/example.php @@ -0,0 +1,24 @@ +<?php + +/* + * Copyright (C) 2009 Nick White + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +$title = 'An example page'; + +$body = '<p>This is an example page.</p>'; + +?> |