finish first draft of mapping for resources

This commit is contained in:
Ryan Prather 2024-12-22 23:02:50 +00:00
parent e84e954164
commit 226818511f

View File

@ -0,0 +1,17 @@
{% extends 'base.html.twig' %}
{% block title %}Community Resources
{% endblock %}
{% block body %}
{% set today = date("now", "America/Indiana/Indianapolis") %}
{{ block('nav', 'internal/libs/nav.html.twig') }}
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg ">
{{ block('topnav', 'internal/libs/top-nav.html.twig') }}
<div class="container-fluid py-2">
{{ ux_map(map, {style: 'height: 600px', 'data-controller': 'my-map'}) }}
</div>
</main>
{% endblock %}