1
0

base.html 1.0 KB

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