base.html 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{% block title %}Латинский язык{% endblock %}</title>
  5. <style type="text/css">
  6. .menu-button-current, .menu-button-contents, .menu-button-rss, .menu-button-lesson, .menu-button-exercise, .menu-button-scd {
  7. text-decoration: none;
  8. color: #000;
  9. border: 1px solid #777;
  10. border-radius: 3px;
  11. padding: 0.05em 0.4em 0.05em 0.4em;
  12. margin: 0px 2px 0px 2px;
  13. }
  14. .menu-button-current {
  15. border-width: 2px;
  16. font-weight: bold;
  17. }
  18. .menu-button-contents {
  19. background: #bbb;
  20. }
  21. .menu-button-rss {
  22. background: #fda;
  23. }
  24. .menu-button-lesson {
  25. background: #8cf;
  26. }
  27. .menu-button-exercise {
  28. background: #ad8;
  29. }
  30. .menu-button-scd {
  31. background: #fbd;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div class="menu">
  37. {% for menu-item in menu %}
  38. <a href={{ menu-item.href }} title="{{ menu-item.title }}" class= "{{ menu-item.class }}">{{ menu-item.text }}</a>
  39. {% endfor %}
  40. </div>
  41. <div id="content">
  42. {% block content %}{% endblock %}
  43. </div>
  44. </body>
  45. </html>