Rev 176 | Rev 178 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | szabot | 1 | <html> |
176 | muzer | 2 | <!-- |
3 | # This file is part of Tsim Apiak. |
||
4 | # |
||
5 | # Tsim Apiak is free software: you can redistribute it and/or modify |
||
6 | # it under the terms of the GNU General Public Licence as published by |
||
7 | # the Free Software Foundation, either version 3 of the Licence, or |
||
8 | # (at your option) any later version. |
||
9 | # |
||
10 | # In addition to this, you must also comply with clause 4 of the |
||
11 | # Apache Licence, version 2.0, concerning attribution. Where there |
||
12 | # is a contradiction between the two licences, the GPL |
||
13 | # takes preference. |
||
14 | # |
||
15 | # Foobar is distributed in the hope that it will be useful, |
||
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
18 | # GNU General Public License for more details. |
||
19 | # |
||
20 | # You should have received a copy of the GNU General Public License |
||
21 | # along with Tsim Apiak. If not, see <http://www.gnu.org/licenses/>. |
||
22 | --> |
||
2 | szabot | 23 | <head> |
3 | szabot | 24 | <title>Tsim Apiak - {% block title %}Title{% end %}</title> |
130 | szabot | 25 | <link rel="shortcut icon" type="image/x-icon" href="static/favicon.ico" /> |
2 | szabot | 26 | <style type="text/css"> |
27 | body { |
||
28 | background: #145179; |
||
29 | color: #FFF6D0; |
||
30 | font-family: papyrus,"Georgia","Times New Roman",serif; |
||
31 | padding: 0px; |
||
32 | border: 0px; |
||
33 | margin: 0px; |
||
34 | } |
||
35 | h1 { |
||
36 | text-align: center; |
||
37 | font-size: 52px; |
||
38 | } |
||
5 | szabot | 39 | h2 { |
3 | szabot | 40 | text-align: center; |
41 | font-size: 24px; |
||
42 | } |
||
2 | szabot | 43 | #center { |
44 | background: #2594DE; |
||
45 | width: 760px; |
||
46 | margin-left: auto; |
||
47 | margin-right: auto; |
||
48 | padding: 20px; |
||
49 | } |
||
50 | </style> |
||
51 | </head> |
||
52 | <body> |
||
53 | <div id="center"> |
||
3 | szabot | 54 | <h1>Tsim Apiak</h1> |
177 | muzer | 55 | <h3>By szabot and Muzer</h3> |
3 | szabot | 56 | <h2>{% block title %}Title{% end %}</h2> |
2 | szabot | 57 | {% block body %}Body{% end %} |
58 | </div> |
||
59 | </body> |
||
60 | </html> |