Mercurial > piecrust2
view garcon/messages/templates/default.html @ 853:f070a4fc033c
core: Continue PieCrust3 refactor, simplify pages.
The asset pipeline is still the only function pipeline at this point.
* No more `QualifiedPage`, and several other pieces of code deleted.
* Data providers are simpler and more focused. For instance, the page iterator
doesn't try to support other types of items.
* Route parameters are proper known source metadata to remove the confusion
between the two.
* Make the baker and pipeline more correctly manage records and record
histories.
* Add support for record collapsing and deleting stale outputs in the asset
pipeline.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Sun, 21 May 2017 00:06:59 -0700 |
parents | 79aefe82c6b6 |
children |
line wrap: on
line source
<!doctype html> <html> <head> <title>{{ page.title }}</title> <meta name="generator" content="PieCrust" /> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lobster"> <style> body { margin: 0; padding: 1em; background: #eee; color: #000; font-family: Georgia, serif; } h1 { font-size: 4.5em; font-family: Lobster, 'Trebuchet MS', Verdana, sans-serif; text-align: center; font-weight: bold; margin-top: 0; color: #333; text-shadow: 0px 2px 5px rgba(0,0,0,0.3); } h2 { font-size: 2.5em; font-family: 'Lobster', 'Trebuchet MS', Verdana, sans-serif; } code { background: #ddd; padding: 0 0.2em; } #preamble { font-size: 1.2em; font-style: italic; text-align: center; margin-bottom: 0; } #container { margin: 0 20%; } #content { margin: 2em 1em; } .error-details { color: #d11; } .note { margin: 3em; color: #888; font-style: italic; } </style> </head> <body> <div id="container"> <div id="header"> <p id="preamble">A Message From The Kitchen:</p> <h1>{{ page.title }}</h1> </div> <hr /> <div id="content"> {% block content %} {{ content|safe }} {% endblock %} </div> <hr /> {% block footer %}{% endblock %} </div> </body> </html>