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

Tiny edits
author Paul Issott <paul@slitaz.org>
date Sun Jan 05 09:10:27 2014 +0000 (2014-01-05)
parents bc985f3f94f0
children 2808fc73ac9f
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 a HTML form.
19 html_footer
20 exit 0
21 fi