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/uwume/templates/homepage.html

33 lines
992 B
HTML
Raw Normal View History

{% extends 'index.html' %} {% block header %}
<h1 class="blue-grey-text text-lighten-5 center">
UwU Me!
</h1>
{% endblock %} {% block content %}
<div class="card-panel grey darken-3">
<div class="row">
<div class="col s12 m4">
<a class="col s12 m10 offset-s0 offset-m1 btn btn-block waves-effect waves-light blue darken-2 z-depth-2" href="/login">
Login
</a>
</div>
<div class="col s12 m4">
<a class="col s12 m10 offset-s0 offset-m1 btn btn-block waves-effect waves-light blue darken-2 z-depth-2" href="/explore">
Explore
</a>
</div>
<div class="col s12 m4">
<a class="col s12 m10 offset-s0 offset-m1 btn btn-block waves-effect waves-light blue darken-2 z-depth-2" href="/signup">
Sign Up
</a>
2020-03-01 18:53:42 -06:00
</div>
</div>
</div>
<div class="card-panel grey darken-3">
{% for item in content_text %}
<p class="blue-grey-text text-lighten-5">
{{ item }}
</p>
{% endfor %}
</div>
{% endblock %}