base.html 1.1 KB

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