18 lines
No EOL
402 B
HTML
18 lines
No EOL
402 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Yan Lin's Blog{% endblock %}
|
|
|
|
{% block header_title %}Yan Lin's Blog{% endblock %}
|
|
|
|
{% block navigation %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<article class="section mt-4">
|
|
<div class="list-group list-group-flush">
|
|
{% for blog in data.blogs %}
|
|
{% include 'partials/blog.html' %}
|
|
{% endfor %}
|
|
</div>
|
|
</article>
|
|
{% endblock %} |