curious-greg/templates/home.html

22 lines
577 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Curious Greg - Home</title>
{% include 'imports.html' %}
</head>
<body>
<h1>Welcome</h1>
<!-- <div id='logo-main'></div> -->
<div class='profilecard left'>
<div class='pc-title'>Mastodon</div>
<div id='pc-avi' style={{ mabg }}></div>
<span id='pc-avi-label'>{{ session['acct'] }}</span><br /><br />
</div>
<div class='profilecard right'>
<div class='pc-title'>Curious Cat</div>
<div id='pc-avi' style={{ ccbg }}></div>
<span id='pc-avi-label'>{{ session['cc'] }}</span><br /><br />
</div>
{% include 'footer.html' %}
</body>
</html>