mirror of
https://github.com/kataras/iris.git
synced 2026-01-08 12:31:58 +00:00
Add View Engine Benchmarks: https://github.com/kataras/iris/tree/master/_benchmarks/view
This commit is contained in:
6
_examples/view/layout/django/views/index.html
Normal file
6
_examples/view/layout/django/views/index.html
Normal file
@@ -0,0 +1,6 @@
|
||||
{% extends "layouts/main.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Index Body</h1>
|
||||
<h3>Message: {{Message}}</h3>
|
||||
{% endblock %}
|
||||
10
_examples/view/layout/django/views/layouts/main.html
Normal file
10
_examples/view/layout/django/views/layouts/main.html
Normal file
@@ -0,0 +1,10 @@
|
||||
<!DOCTYPE html>
|
||||
<head>
|
||||
<title>{{Title}}</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block content %} {% endblock %}
|
||||
|
||||
<footer>{% include "../partials/footer.html" %}</footer>
|
||||
</body>
|
||||
</html>
|
||||
2
_examples/view/layout/django/views/partials/footer.html
Normal file
2
_examples/view/layout/django/views/partials/footer.html
Normal file
@@ -0,0 +1,2 @@
|
||||
<h3>Footer Partial</h3>
|
||||
<h4>{{FooterText}}</h4>
|
||||
Reference in New Issue
Block a user