lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

section.html (410B)


      1 {% extends "base.html" %}
      2 
      3 {% block title %}{{ section.title }}{% endblock title %}
      4 
      5 {% block sidebar %}
      6   <h1>{{ section.title }}</h1>
      7 
      8   <p><a href="{{ config.base_url }}">List all lecture notes.</a></p>
      9   <p><a href="http://alex.balgavy.eu">My homepage.</a></p>
     10 {% endblock sidebar %}
     11 
     12 {% block content %}
     13 {{ section.content | replace(from="<img ", to="<img loading=lazy ") | safe }}
     14 {% endblock content %}