This website works better with JavaScript.
首頁
說明
登入
christian
/
SaS
關註
1
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
add footer and content files
master
erichhasl
8 年之前
父節點
4f97c26b6d
當前提交
f5f1218a2f
共有
4 個文件被更改
,包括
16 次插入
和
5 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
web_dev/sas_web/startpage/templates/startpage/index.html
+2
-4
web_dev/sas_web/templates/public/base.html
+8
-0
web_dev/sas_web/templates/public/default.html
+5
-0
web_dev/sas_web/templates/public/footer.html
+ 1
- 1
web_dev/sas_web/startpage/templates/startpage/index.html
查看文件
@@ -1,4 +1,4 @@
{% extends "public/
base
.html" %}
{% extends "public/
default
.html" %}
{% block content %}
<h2>Hi</h2>
+ 2
- 4
web_dev/sas_web/templates/public/base.html
查看文件
@@ -4,11 +4,9 @@
<body>
{% include "public/header.html" %}
{% block content %}
{% block raw_content %}
{% endblock %}
<p>Ende Gelände!</p>
{% include "public/footer.html" %}
</body>
+ 8
- 0
web_dev/sas_web/templates/public/default.html
查看文件
@@ -0,0 +1,8 @@
{% extends "public/base.html" %}
{% block raw_content %}
<div id="content">
{% block content %}
{% endblock %}
</div>
{% endblock %}
+ 5
- 0
web_dev/sas_web/templates/public/footer.html
查看文件
@@ -0,0 +1,5 @@
<div id="footer">
<p>(C) N.H. und C.M.</p>
</div>
Write
Preview
Loading…
取消
儲存