2022-04-26 01:28:25 +00:00
|
|
|
{% extends "base.html" %}
|
2022-04-25 00:22:51 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2022-06-09 03:50:30 +00:00
|
|
|
<section class="section">
|
|
|
|
<h1>{{ section.title | default(value="Elf's Notes") }}</h1>
|
|
|
|
<article class="text">
|
|
|
|
{{ section.content | safe }}
|
|
|
|
</article>
|
|
|
|
</section>
|
2022-04-25 00:22:51 +00:00
|
|
|
|
2022-06-09 03:50:30 +00:00
|
|
|
<section class="subject-list">
|
|
|
|
<h2>Subjects Available:</h2>
|
|
|
|
<div class="topic-cards">
|
|
|
|
{% for subsection_path in section.subsections %}
|
|
|
|
{% set subsection = get_section(path=subsection_path) %}
|
|
|
|
<div class="topic-card">
|
|
|
|
<h3><a href="{{subsection.permalink}}">{{ subsection.title }}</a></h3>
|
|
|
|
<p>{{ subsection.description | default(value="No description provided") }}</p>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</section>
|
2022-04-25 00:22:51 +00:00
|
|
|
{% endblock %}
|