feat(projects): 新增Django综合案例示例代码及素材
This commit is contained in:
19
projects/web-django/todolist/templates/index.html
Normal file
19
projects/web-django/todolist/templates/index.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}
|
||||
{{ title }}
|
||||
{% endblock %}
|
||||
|
||||
{% block content%}
|
||||
|
||||
<article class="content">
|
||||
<h1>🗣 <i>Hello, world</i></h1>
|
||||
<section>
|
||||
<p>{{ welcome }}</p>
|
||||
<p>
|
||||
{{ index_content }}
|
||||
</p>
|
||||
|
||||
</section>
|
||||
</article>
|
||||
|
||||
{% endblock%}
|
||||
Reference in New Issue
Block a user