* feat: Allow website templates to have different base templates * test: custom base template
8 lines
131 B
HTML
8 lines
131 B
HTML
<!-- base template for testing -->
|
|
|
|
<html>
|
|
<body>
|
|
<h1>This is for testing</h1>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|