diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-30 21:37:01 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-30 21:37:01 +0000 |
commit | 22d64456008cd8d2aaab35f6d8005cc112d93567 (patch) | |
tree | ed13a00b35b97bdcf18be5df30d83ddc03766677 /documentation/css/preview/index.php | |
parent | 7f0feba983bdbc3f9ca22077c5a6719e14b26e46 (diff) | |
download | elgg-22d64456008cd8d2aaab35f6d8005cc112d93567.tar.gz elgg-22d64456008cd8d2aaab35f6d8005cc112d93567.tar.bz2 |
major addition - adding preview of CSS for developers and themers
git-svn-id: http://code.elgg.org/elgg/trunk@7781 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'documentation/css/preview/index.php')
-rw-r--r-- | documentation/css/preview/index.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/documentation/css/preview/index.php b/documentation/css/preview/index.php new file mode 100644 index 000000000..7b9e33c4f --- /dev/null +++ b/documentation/css/preview/index.php @@ -0,0 +1,24 @@ +<?php +/** + * Main index page + */ + +$title = 'CSS Preview Pages'; + +include dirname(__FILE__) . '/head.php'; + +?> +<body> + <div class="elgg-page" style="width: 800px; margin: 20px auto;"> + <h1><?php echo $title; ?></h1> + <ul class="mtl"> + <li><a href="general.php">General CSS</a></li> + <li><a href="nav.php">Navigation CSS</a></li> + <li><a href="forms.php">Form CSS</a></li> + <li><a href="objects.php">Lists, modules, image blocks CSS</a></li> + <li><a href="grid.php">Grid CSS</a></li> + <li><a href="widgets.php">Widgets CSS</a></li> + </ul> + </div> +</body> +</html>
\ No newline at end of file |