feat(projects): 新增Django综合案例示例代码及素材
This commit is contained in:
24
projects/web-django/todolist/templates/about.html
Normal file
24
projects/web-django/todolist/templates/about.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user