tazbug view web/plugins/skel/skel.cgi @ rev 49

Add a small dashboard plugin and misc fixes
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jan 05 00:01:34 2014 +0100 (2014-01-05)
parents
children 02a11d8d636e
line source
1 #!/bin/sh
2 #
3 # TinyCM/TazBug Plugin - Skeleton
4 #
5 . /usr/lib/slitaz/httphelper
7 if [ "$(GET skel)" ]; then
8 d="Skel"
9 header
10 html_header
11 user_box
12 echo "<h2>Plugin Skel</h2>"
13 echo $(date)
15 # Say we use files in $DATA/skel, sort them by date and simply cat
16 # the files, this will create a simple blog :-) We may add post via
17 # uploads or an HTML form.
19 html_footer
20 exit 0
21 fi