Browse Source

add multiple base type page

weichen 4 years ago
parent
commit
b90dd52544

+ 4 - 0
backstage/templates/about.html

@@ -0,0 +1,4 @@
+{% extends "layout.html" %}
+{% block content %}
+    <h1>Collection</h1>
+{% endblock content %}

+ 4 - 0
backstage/templates/activity.html

@@ -0,0 +1,4 @@
+{% extends "layout.html" %}
+{% block content %}
+    <h1>Activity</h1>
+{% endblock content %}

+ 4 - 0
backstage/templates/frequently_asked_questions.html

@@ -0,0 +1,4 @@
+{% extends "layout.html" %}
+{% block content %}
+    <h1>frequently_asked_questions</h1>
+{% endblock content %}

+ 4 - 0
backstage/templates/room_planner.html

@@ -0,0 +1,4 @@
+{% extends "layout.html" %}
+{% block content %}
+    <h1>room_planner</h1>
+{% endblock content %}

+ 4 - 0
backstage/templates/solid_wood_furniture.html

@@ -0,0 +1,4 @@
+{% extends "layout.html" %}
+{% block content %}
+    <h1>solid_wood_furniture</h1>
+{% endblock content %}

+ 4 - 0
backstage/templates/system_furniture.html

@@ -0,0 +1,4 @@
+{% extends "layout.html" %}
+{% block content %}
+    <h1>system_furniture</h1>
+{% endblock content %}