24 lines
733 B
HTML
24 lines
733 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="fcontainer is-primary has-text-left" style="flex-direction: column; align-content: flex-start">
|
|
<div style="display: flex; flex-grow: 2;">
|
|
<img src="https://benjamyn.love/frannodders.gif" width="256" height="256">
|
|
</div>
|
|
<div style="display: flex; flex-grow: 8; flex-direction: column;">
|
|
<p>1</p>
|
|
<p>2</p>
|
|
<p>3</p>
|
|
<p>4</p>
|
|
<p>5</p>
|
|
<p>6</p>
|
|
</div>
|
|
|
|
|
|
<!-- <p class="fquote">Welcome, {{ current_user.name }}!</p>
|
|
<p class="fquote">Your google ID is {{ current_user.google_id }}</p>
|
|
<p class="fquote">Admin?: {{ "yes" if current_user.administrator else "no" }}</p> -->
|
|
</div>
|
|
|
|
{% endblock %}
|