akonrad

Module 2 base.html

Feb 17th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>Sharing Code</title>
  7. {% load static %}
  8. <link rel="stylesheet" type="text/css" href="{% static 'share/bulma-0.8.0/css/bulma.css' %}"/>
  9. <link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
  10. <link rel="stylesheet" type="text/css" href="{% static 'share/main.css' %}"/>
  11. </head>
  12.  
  13. <body>
  14.  
  15. <nav class="navbar is-primary" role="navigation" aria-label="main navigation">
  16. <div class="navbar-brand">
  17. <a class="navbar-item" href="{% url 'share:index' %}">
  18. <img src="{% static 'share/images/thinking-face.png' %}" alt=" icon" width="40" height="40">
  19. </a>
  20. </div>
  21. </nav>
  22.  
  23. <section class="section">
  24. <div class="container">
  25. {% block content %}
  26.  
  27. {% endblock content %}
  28. </div>
  29. </section>
  30.  
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment