curious-greg/templates/home.html

22 lines
589 B
HTML
Raw Normal View History

2018-11-04 23:17:28 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Curious Greg - Home</title>
{% include 'imports.html' %}
2018-11-04 23:17:28 +00:00
</head>
<body>
2018-11-06 09:11:03 +00:00
<h1>Welcome</h1>
2018-11-04 23:17:28 +00:00
<!-- <div id='logo-main'></div> -->
<div class='profilecard left'>
<div class='pc-title'>Mastodon</div>
2018-11-12 07:18:53 +00:00
<div class='pc-avi' style={{ mabg }}></div>
<span class='pc-avi-label'>{{ session['acct'] }}</span><br /><br />
</div>
<div class='profilecard right'>
<div class='pc-title'>Curious Cat</div>
2018-11-12 07:18:53 +00:00
<div class='pc-avi' style={{ ccbg }}></div>
<span class='pc-avi-label'>{{ session['cc'] }}</span><br /><br />
2018-11-04 23:17:28 +00:00
</div>
{% include 'footer.html' %}
2018-11-04 23:17:28 +00:00
</body>
</html>