1
0

base.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
  2. "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  3. <html>
  4. <head>
  5. <title>{% block page_title %} Home {% endblock %} &raquo; oz123.github.com</title>
  6. <link rel="stylesheet" type="text/css" href="/media/css/pygments_style.css" media="screen" />
  7. <link rel="stylesheet" type="text/css" href="/media/css/site.css" media="screen" />
  8. {% block css %}{% endblock %}
  9. <link href="{% block head_feed_link %}/atom.xml{% endblock %}" type="application/atom+xml" rel="alternate" title="{% block head_feed_title %}Oz's github &raquo; Oz's Weblog{% endblock %}" />
  10. <link rel="stylesheet" type="text/css" media="screen" href="http://www.devslide.com/public/labs/browser-detection/browser-detection.css" />
  11. <script type="text/javascript">
  12. <!--[if IE]>
  13. window.location.href = "http://oz123.github.com/explorer.html";
  14. <![endif]-->
  15. </script>
  16. </head>
  17. <body>
  18. <div id="page" class="loading">
  19. <!-- This block contains the header information of each post -->
  20. <div id="header">
  21. {% block header %}
  22. {% endblock %}
  23. </div>
  24. <div id="content">
  25. {% block content %}
  26. {% endblock %}
  27. </div>
  28. <div id="footer">
  29. <p>&copy; Oz Nahum Tiram 2012. Some Rights Reserved</p>
  30. </div>
  31. </div>
  32. {% include 'sidebar.html' %}
  33. {% include 'google_analytics.html' %}
  34. </body>
  35. </html>