base.html 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% load static %}
  2. <!doctype html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title>
  7. {% block title %}
  8. Untitled Document
  9. {% endblock title %}
  10. </title>
  11. <link href="{% static 'main.css' %}" rel="stylesheet" type="text/css">
  12. </head>
  13. <body>
  14. <div id="wrapper">
  15. <header id="header">
  16. <div id="logo"><img src="{% static 'logo.jpg' %}" alt=""/></div>
  17. <div id="topbanner"><img src="{% static 'top_banner.png' %}" width="800" height="200" alt=""/></div>
  18. </header>
  19. <aside id="leftsidebar">
  20. <nav id="nav">
  21. <ul>
  22. {% block sidenav %}
  23. <li>Menu 1</li><li>Menu 2</li><li>Menu 3</li>
  24. {% endblock sidenav %}
  25. <li><a href="/contact">Contact Us</a></li>
  26. <li><a href="/quote">Get a Quote</a></li>
  27. </ul>
  28. </nav>
  29. </aside>
  30. <section id="main">
  31. {% block content %}
  32. <h1>Welcome!</h1>
  33. <p>This is the site template</p>
  34. {% endblock content %}
  35. </section>
  36. <footer id="footer">Copyright &copy; 2017 Bugz Web Design</footer>
  37. </div>
  38. </body>
  39. </html>