12345678910111213141516171819202122232425 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <title>{% block title %}{% endblock title %}</title>
- <meta name="description" content={% block site %}""{% endblock %} />
- <meta name="HandheldFriendly" content="True" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="shortcut icon" href="/media/images/favicon.ico" >
- <link rel="stylesheet" type="text/css" href="/media/css/screen.css" />
- <link rel="stylesheet" type="text/css"
- href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
- <link rel="stylesheet" type="text/css" href="/media/css/syntax.css" />
- {% include 'includes/head.html' %}
- </head>
- <body class="paged archive-template home-template nav-closed">
- {% block content %}
- {% endblock content %}
- </body>
- </html>
|