feat(projects): 新增Django综合案例示例代码及素材

This commit is contained in:
100gle
2022-08-10 16:15:39 +08:00
parent b4c2257308
commit 3bf65b2755
65 changed files with 1496 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{% extends "base.html" %}
{% block title %}
{{ title }}
{% endblock %}
{% block content %}
<article class="about">
<h1>{{ header }}</h1>
<section>
<p>
{% for content in about_content %}
{{ content }} <br />
{% endfor %}
</p>
<ul>
{% for item in items %}
<li>{{ item.0 }}{{ item.1 }}</li>
{% endfor %}
</ul>
</section>
</article>
{% endblock %}