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/home/index.html

44 lines
1.1 KiB
HTML
Raw Normal View History

{% extends 'index.html' %} {% block header %}
<h1 class="blue-grey-text text-lighten-5 center">
UwU Me!
</h1>
<h5 class="grey-text text-lighten-1 center">
Hello, {{ current_user.id }}
</h5>
{% endblock %} {% block content %}
<div class="card-panel grey darken-3">
<div class="center">
<h2 class="blue-grey-text text-lighten-5" id="uwu-counter">
{{ user_curval }}
</h2>
</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>
<div class="card-panel grey darken-3">
<div class="row">
<div class="col s12 m6">
<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 m6">
<a
class="col s12 m10 offset-s0 offset-m1 btn btn-block waves-effect waves-light blue darken-2 z-depth-2"
href="/logout"
>
Logout
</a>
</div>
</div>
</div>
{% endblock %}