Mercurial > piecrust2
comparison util/messages/templates/default.html @ 469:f14796cbab0f 2.0.0a12
cm: Fix wrong directory for utilities.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Tue, 14 Jul 2015 23:02:38 -0700 |
parents | util/build/messages/templates/default.html@6b9f59b19db7 |
children |
comparison
equal
deleted
inserted
replaced
468:1038dba7b46e | 469:f14796cbab0f |
---|---|
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <title>{{ page.title }}</title> | |
5 <meta name="generator" content="PieCrust" /> | |
6 <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lobster"> | |
7 <style> | |
8 body { | |
9 margin: 0; | |
10 padding: 1em; | |
11 background: #eee; | |
12 color: #000; | |
13 font-family: Georgia, serif; | |
14 } | |
15 h1 { | |
16 font-size: 4.5em; | |
17 font-family: Lobster, 'Trebuchet MS', Verdana, sans-serif; | |
18 text-align: center; | |
19 font-weight: bold; | |
20 margin-top: 0; | |
21 color: #333; | |
22 text-shadow: 0px 2px 5px rgba(0,0,0,0.3); | |
23 } | |
24 h2 { | |
25 font-size: 2.5em; | |
26 font-family: 'Lobster', 'Trebuchet MS', Verdana, sans-serif; | |
27 } | |
28 code { | |
29 background: #ddd; | |
30 padding: 0 0.2em; | |
31 } | |
32 #preamble { | |
33 font-size: 1.2em; | |
34 font-style: italic; | |
35 text-align: center; | |
36 margin-bottom: 0; | |
37 } | |
38 #container { | |
39 margin: 0 20%; | |
40 } | |
41 #content { | |
42 margin: 2em 1em; | |
43 } | |
44 .error-details { | |
45 color: #d11; | |
46 } | |
47 .note { | |
48 margin: 3em; | |
49 color: #888; | |
50 font-style: italic; | |
51 } | |
52 </style> | |
53 </head> | |
54 <body> | |
55 <div id="container"> | |
56 <div id="header"> | |
57 <p id="preamble">A Message From The Kitchen:</p> | |
58 <h1>{{ page.title }}</h1> | |
59 </div> | |
60 <hr /> | |
61 <div id="content"> | |
62 {% block content %} | |
63 {{ content|safe }} | |
64 {% endblock %} | |
65 </div> | |
66 <hr /> | |
67 {% block footer %}{% endblock %} | |
68 </div> | |
69 </body> | |
70 </html> |