My Blog, build with Norgolith blog.ladas552.me
blog
at main 23 lines 609 B view raw
1{% extends "base.html" %} 2{% block title %}{{ metadata.title | title }}{% endblock title %} 3{% block content %} 4<!-- define toc_html function --> 5{% set toc_html = generate_toc(toc=metadata.toc, list_type="ul") %} 6<!-- Usage example --> 7{% if metadata.toc %} 8<div> 9 <input type="checkbox" id="toc-toggle"> 10 <!-- TOC Toggle Button --> 11 <label for="toc-toggle" class="toc-button" aria-label="Toggle Table of Contents"></label> 12 <nav class="toc-panel"> 13 <div class="toc-content"> 14 {{ toc_html | safe }} 15 </div> 16 </nav> 17</div> 18{% endif %} 19<div> 20 {{ content | safe }} 21</div> 22 23{% endblock content %}