First commit
This commit is contained in:
commit
ed9566d057
76 changed files with 4005 additions and 0 deletions
18
templates/blog.html
Normal file
18
templates/blog.html
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{% 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 %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue