- Adjusted `mkdocs.sh` to expand SCSS watcher to include `docs` and `mkdocs.yml`. - Simplified blog template by extracting post logic to `partials/post.html`. - Updated `mkdocs.yml` with refined plugins including RSS, meta, and enhanced blog options. - Improved blog Markdown files with structural changes and better TOC handling. - Removed unused styles and deprecated logic in blog posts for cleaner maintenance.
12 lines
195 B
HTML
12 lines
195 B
HTML
{% extends "main.html" %}
|
|
|
|
{% block content %}
|
|
<h1>BLOG</h1>
|
|
|
|
<div class="md-posts">
|
|
{% for post in posts %}
|
|
{% include "partials/post.html" %}
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|