base.html 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {% load staticfiles %}
  2. <!doctype html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>Transparency!</title>
  7. <meta name="description"
  8. content="Détail des coûts des services">
  9. <meta name="author" content="Jocelyn Delalande">
  10. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/reset.css" %}" >
  11. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/site.css" %}" >
  12. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/breadcrumb.css" %}" >
  13. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/button.css" %}" >
  14. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/container.css" %}" >
  15. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/divider.css" %}" >
  16. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/grid.css" %}" >
  17. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/header.css" %}" >
  18. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/icon.css" %}" >
  19. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/message.css" %}" >
  20. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/table.css" %}" >
  21. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/grid.css" %}" >
  22. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/segment.css" %}" >
  23. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/label.css" %}" >
  24. <link rel="stylesheet" type="text/css" href="{% static "costs/3rd/semantic/components/rail.css" %}" >
  25. </head>
  26. <body>
  27. <div class="ui container">
  28. <div class="ui container">
  29. <h1 class="ui row">{% block title %}{{ settings.ORGANIZATION_NAME }} − Coûts de revient{% endblock %}</h1>
  30. <div class="ui row">&nbsp;</div>
  31. <div class="ui row">&nbsp;</div>
  32. <nav class="ui row huge breadcrumb">
  33. {% for title, url in breadcrumbs %}
  34. {% if url %}<a class="section{% if forloop.last %} active {% endif %}" href="{{ url }}" >{% endif %}
  35. {{ title }}
  36. {% if url %}</a>{% endif %}
  37. {% if not forloop.last %}
  38. <i class="right chevron icon divider"></i>
  39. {% endif %}
  40. {% endfor %}
  41. </nav>
  42. <div class="ui row">&nbsp;</div>
  43. </div>
  44. <div class="row ui container">
  45. <article class="ui grid">
  46. <div class="twelve wide column text container">
  47. {% block content %}
  48. {% endblock %}
  49. </div>
  50. <aside class="ui four wide column">
  51. {% block rail %}{% endblock %}
  52. </aside>
  53. </article>
  54. </div>
  55. </div>
  56. </body>
  57. </html>