-{% extends "base/base.html" %}
+{% extends request.EXPERIMENTS.layout.value|yesno:"2022/base_simple.html,base/base.html" %}
 {% load i18n pagination_tags %}
 {% load set_get from set_get %}
 
+{% block settings %}
+  {% load title %}
+  {% trans "Footnotes" as title %}
+  {% title title %}
+{% endblock %}
 
 {% block bodyid %}footnotes{% endblock %}
 
           {% for note_source in obj.notesource_set.all %}
             <div class='dictionary-note-source'>
               <a href='{% url "book_text" note_source.book.slug %}#{{ note_source.anchor }}'>{{ note_source.book.pretty_title }}</a>
-              (<a href='{{ note_source.book.extra_info.about }}'>źródło na Platformie Redakcyjnej</a>)
+              (<a href='{{ note_source.book.get_extra_info_json.about }}'>źródło na Platformie Redakcyjnej</a>)
             </div>
           {% endfor %}
         </div>