base.html 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <html>
  2. <script type="text/javascript">
  3. <!--[if IE]>
  4. window.location.href = "http://oz123.github.com/explorer.html";
  5. <![endif]-->
  6. </script>
  7. <head>
  8. <title>{% block page_title %} Home {% endblock %} &raquo; oz123.github.com</title>
  9. <link rel="stylesheet" type="text/css" href="/media/css/pygments_style.css" media="screen" />
  10. <link rel="stylesheet" type="text/css" href="/media/css/site.css" media="screen" />
  11. {% block css %}{% endblock %}
  12. <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 %}" />
  13. <link rel="stylesheet" type="text/css" media="screen" href="http://www.devslide.com/public/labs/browser-detection/browser-detection.css" />
  14. </head>
  15. <body>
  16. <div id="page" class="loading">
  17. <!-- This block contains the header information of each post -->
  18. <div id="header">
  19. {% block header %}
  20. {% endblock %}
  21. </div>
  22. <div id="content">
  23. {% block content %}
  24. {% endblock %}
  25. </div>
  26. <div id="footer">
  27. <p>&copy; Oz Nahum Tiram 2012. Some Rights Reserved</p>
  28. </div>
  29. </div>
  30. {{side_bar}}
  31. {{google_analytics}}
  32. </body>
  33. </html>