31 lines
456 B
HTML
31 lines
456 B
HTML
{% set title = "Dashboard" %}
|
|
|
|
{% extends "layout/dash.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container module">
|
|
<h4>Reminders</h4>
|
|
</div>
|
|
|
|
<div class="container module">
|
|
<h4>Calendar</h4>
|
|
{% include "modules/calendar.html" %}
|
|
</div>
|
|
|
|
<style id="grid">
|
|
.container.module:nth-child(1n) {
|
|
grid-area: 1 / 1 / 5 / 2;
|
|
}
|
|
.container.module:nth-child(2n) {
|
|
grid-area: 1 / 2 / 5 / 5;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
function onDaySelect() {
|
|
|
|
}
|
|
</script>
|
|
|
|
{% endblock %} |