mirror of
https://github.com/CoolnsX/my-website.git
synced 2025-12-20 15:25:19 +05:30
15 lines
323 B
HTML
15 lines
323 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %} Blogs {% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1 class="text-4xl md:text-5xl font-extrabold">
|
|
{{ section.title }}
|
|
</h1>
|
|
<ul>
|
|
{% for page in section.pages %}
|
|
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|