mirror of
https://github.com/kevinveenbirkenbach/coding-challenge-online-shop.git
synced 2025-03-15 03:47:06 +01:00
10 lines
188 B
Twig
10 lines
188 B
Twig
|
{% extends "base.html.twig" %}
|
||
|
{% block body %}
|
||
|
<div class="container">
|
||
|
<div class="page-header">
|
||
|
<h1>Online Shop</h1>
|
||
|
</div>
|
||
|
{% block content %}
|
||
|
{% endblock %}
|
||
|
</div>
|
||
|
{% endblock %}
|