Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- {% block header %}
- {% include 'header.html' %}
- <title>{% block title %}{% endblock %}</title>
- {% endblock %}
- <link rel="stylesheet" href="style.css" />
- </head>
- <body>
- <div id="top-nevigation">
- {% block nevigation %}{% endblock %}
- </div>
- <div id="sidebar">
- {% block sidebar %}{% endblock %}
- </div>
- <div id="sidebar1">
- {% block sidebar1 %}{% endblock %}
- </div>
- <div id="content">
- {% block content %}{% endblock %}
- </div>
- <div id="footer">
- {% block footer %}
- <p>© Copyright 2014 by <a href="http://radixweb.com/">Vijay Rami.</a></p>
- {% endblock %}
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment