2017-11-09 11:53:01 -05:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
2018-02-26 15:25:15 -05:00
|
|
|
{% block title %}
|
2022-09-29 18:35:53 -04:00
|
|
|
Collection CRUD
|
2018-02-26 15:25:15 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
2024-03-20 14:21:40 -04:00
|
|
|
{% 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 %}
|