]> git.plutz.net Git - confetti/blob - templates/frame.html.sh
cleanup of category handling
[confetti] / templates / frame.html.sh
1 #!/bin/zsh
2
3 # Copyright 2014, 2015 Paul Hänsch
4 #
5 # This file is part of Confetti.
6
7 # Confetti is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # Confetti is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with Confetti.  If not, see <http://www.gnu.org/licenses/>. 
19
20 . "${_EXEC}/templates/text_frame.sh"
21 [ -x "${_EXEC}/templates/text_${PAGE}.sh" ] && . "${_EXEC}/templates/text_${PAGE}.sh"
22
23 cat <<EOF
24 <!Doctype HTML>
25
26 <html>
27   <head>
28     <title>$(l10n p_${PAGE})</title>
29     <meta name="viewport" content="width=device-width">
30     <link rel="stylesheet" href="?static=common.css">
31     <link rel="stylesheet" href="?static=${PAGE}.css">
32   </head>
33   <body class="$PAGE">
34     <div class="NAVIGATION">
35       $(debug NAVIGATION = "$NAVIGATION"; for each in ${NAVIGATION}; do printf %s "<a href=\"?p=${each}\">$(l10n "p_${each}")</a>"; done)
36     </div>
37 EOF
38
39 debug BODY; [ -x "${BODY}" ] && . "${BODY}" || printf %s 'Error'
40
41 printf '</body></html>'
42
43 # vi:set filetype=html: