This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
uwu-me/templates/homepage.html

21 lines
495 B
HTML
Raw Normal View History

2020-03-01 18:53:42 -06:00
{% extends 'index.html' %}
{% block homepage_header %}
<div class="card-panel grey darken-3">
<header>
<h1 class="blue-grey-text text-lighten-5 center">
UwU Me!!
</h1>
</header>
</div>
{% endblock %}
{% block homepage_info %}
<div class="card-panel grey darken-3">
{% for item in homepage_text %}
<p class="blue-grey-text text-lighten-5">
{{ item }}
</p>
{% endfor %}
</div>
{% endblock %}