19 lines
307 B
Twig
19 lines
307 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}
|
|
Collection CRUD
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="cell">
|
|
<h2>Computer Collection</h2>
|
|
|
|
{% include 'computer-menu.html.twig' %}
|
|
</div>
|
|
<div class="cell">
|
|
<h2>Photography</h2>
|
|
|
|
{% include 'photo-menu.html.twig' %}
|
|
</div>
|
|
{% endblock %}
|