1
0

base.html 997 B

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