vijayrami

Untitled

Apr 16th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5.  
  6. {% block header %}
  7. {% include 'header.html' %}
  8.  
  9. <title>{% block title %}{% endblock %}</title>
  10. {% endblock %}
  11. <link rel="stylesheet" href="style.css" />
  12. </head>
  13. <body>
  14. <div id="top-nevigation">
  15. {% block nevigation %}{% endblock %}
  16. </div>
  17.  
  18. <div id="sidebar">
  19. {% block sidebar %}{% endblock %}
  20. </div>
  21. <div id="sidebar1">
  22. {% block sidebar1 %}{% endblock %}
  23. </div>
  24.  
  25.  
  26. <div id="content">
  27. {% block content %}{% endblock %}
  28. </div>
  29.  
  30.  
  31. <div id="footer">
  32. {% block footer %}
  33. <p>&copy; Copyright 2014 by <a href="http://radixweb.com/">Vijay Rami.</a></p>
  34. {% endblock %}
  35. </div>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment