Added some views
This commit is contained in:
7
views/contact.twig
Normal file
7
views/contact.twig
Normal file
@ -0,0 +1,7 @@
|
||||
{% extends 'layout.twig' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<p>This is a contact.</p>
|
||||
|
||||
{% endblock %}
|
@ -1 +1,7 @@
|
||||
<p>This is a test.</p>
|
||||
{% extends 'layout.twig' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<p>This is a test.</p>
|
||||
|
||||
{% endblock %}
|
||||
|
8
views/layout.twig
Normal file
8
views/layout.twig
Normal file
@ -0,0 +1,8 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Bit Goblin</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block content %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
7
views/support.twig
Normal file
7
views/support.twig
Normal file
@ -0,0 +1,7 @@
|
||||
{% extends 'layout.twig' %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<p>This is a support.</p>
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user