1 <section id="{{ level.slug }}" class="level" style="margin-left: 20em">
 
   3     <section class="box level-toc" style="float: left; margin-left: -20em; width: 15em;">
 
   4         <strong><a href="#{{ level.slug }}">{{ level }}</a></strong>
 
   5         <ul  class="link-list"  style="list-style: none; padding: 0; margin: 0;">
 
   6             {% if lessons.synthetic %}
 
   7             <li><a href="#{{ level.slug }}_skrocony">Skrócony kurs</a></li>
 
   9             {% if lessons.course %}
 
  10             <li><a href="#{{ level.slug }}_pelny">Pełny kurs</a>
 
  11                 <ul style="list-style: none; padding: 0 0 0 1em; margin: 0;">
 
  12                 {% for section in lessons.course %}
 
  13                         <li><a href="#{{ level.slug }}_{{ section.slug}}">{{ section }}</a></li>
 
  18             {% if lessons.project %}
 
  19             <li><a href="#{{ level.slug }}_projekty">Projekty</a></li>
 
  21             {% if lessons.appendix %}
 
  22             <li><a href="#{{ level.slug }}_pozostale">Pozostałe materiały</a></li>
 
  26             <li class="curriculumcourses"><a href="#{{ level.slug }}_podstawa">Według postawy programowej</a>
 
  27                 <ul style="list-style: none; padding: 0 0 0 1em; margin: 0;">
 
  28                 {% for course, lessons in courses %}
 
  29                         <li><a href="#{{ level.slug }}_{{ course.slug}}">{{ course }}</a></li>
 
  40     <section class="box-button button"><a href="{{ level.package.url }}" class="dl-button">Pobierz wszystkie lekcje</a></section>
 
  41     <section class="button"><a href="{{ level.student_package.url }}" class="dl-button">Pobierz wszystkie lekcje w wersji dla ucznia</a></section>
 
  43     {% if lessons.synthetic %}
 
  44     <section id="{{ level.slug }}_skrocony">
 
  45         <h1>Skrócony kurs</h1>
 
  47         <p>Masz kilka godzin? Przeprowadź po jednej lekcji przeglądowej z każdego tematu.</p>
 
  49         <ul class="link-list">
 
  50             {% for lesson in lessons.synthetic %}
 
  51                 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
 
  58     {% if lessons.course %}
 
  59     <section id="{{ level.slug }}_pelny">
 
  62         <p>Masz więcej czasu? Zrealizuj kompletny program edukacji medialnej.</p>
 
  64         {% for section, s_lessons in lessons.course.items %}
 
  65             <section id="{{ level.slug }}_{{ section.slug}}">
 
  66                 <h1>{{ section }}</h1>
 
  68                 <ul class="link-list">
 
  69                     {% for lesson in s_lessons %}
 
  70                         <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
 
  80     {% if lessons.project %}
 
  81     <section id="{{ level.slug }}_projekty">
 
  84         <p>Masz 4-6 tygodni? Zrealizuj jeden z projektów ze swoimi uczniami.</p>
 
  86         <ul class="link-list">
 
  87             {% for lesson in lessons.project %}
 
  88                 <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
 
  96     <section id="{{ level.slug }}_podstawa">
 
  97         <h1>Według podstawy programowej</h1>
 
  99         {% for course, lessons in courses %}
 
 100         <section id="{{ level.slug}}_{{ course.slug }}">
 
 101             <h1>{{ course }}</h1>
 
 103             {% if lessons.synthetic %}
 
 105                 <h1>Z kursu skróconego</h1>
 
 106                 <ul class="link-list">
 
 107                     {% for lesson in lessons.synthetic %}
 
 108                         <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
 
 114             {% if lessons.course %}
 
 116                 <h1>Z kursu pełnego</h1>
 
 117                 <ul class="link-list">
 
 118                     {% for lesson in lessons.course %}
 
 119                         <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>
 
 125             {% if lessons.project %}
 
 128                 <ul class="link-list">
 
 129                     {% for lesson in lessons.project %}
 
 130                         <li>{% include "catalogue/snippets/lesson_or_stub.html" %}</li>