Mercurial > jouvence
comparison fontaine/resources/html_header.html @ 9:a5488b474c6b
Add HTML renderer.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 04 Jan 2017 02:56:08 -0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
8:02d2e4d8b0c1 | 9:a5488b474c6b |
---|---|
1 <!doctype html> | |
2 <html> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 <meta http-equiv="x-ua-compatible" content="ie=edge"> | |
6 <title>%(title)s</title> | |
7 <meta name="description" content="%(description)s"> | |
8 <meta name="viewport" content="width=device-width, initial-scale=1"> | |
9 | |
10 <link rel="apple-touch-icon" href="apple-touch-icon.png"> | |
11 <!-- Place favicon.ico in the root directory --> | |
12 | |
13 <style> | |
14 body { | |
15 margin: 1em 3em; | |
16 background-color: #666; | |
17 } | |
18 .fontaine-doc { | |
19 background-color: #fff; | |
20 padding: 2em; | |
21 box-shadow: #111 0px 0.5em 2em; | |
22 } | |
23 p.footer { | |
24 text-align: center; | |
25 text-transform: uppercase; | |
26 font-size: 0.9em; | |
27 font-family: "Times New Roman", "Times", serif; | |
28 color: #333; | |
29 padding: 1em; | |
30 } | |
31 p.footer a:link, p.footer a:visited, p.footer a:active { | |
32 color: #222; | |
33 } | |
34 p.footer a:hover { | |
35 color: #227; | |
36 } | |
37 </style> | |
38 <style>%(css)s</style> | |
39 </head> | |
40 <body> |