This commit is contained in:
Waylon Walker 2024-05-08 20:45:33 -05:00
commit 0500266b92
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
21 changed files with 1766 additions and 0 deletions

13
templates/index.html Normal file
View file

@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block body %}
<h2 class='block mt-24 text-3xl font-black text-center'>Currently</h2>
<ul class='list-none'>
{% include "card.html" %}
</ul>
<h2 class='block mt-24 text-3xl font-black text-center'>5 Day Forecast</h2>
<ul class='list-none'>
{% for weather in forecast %}
{% include "card.html" %}
{% endfor %}
</ul>
{% endblock %}