2020-11-21 20:51:32 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2020-11-21 23:45:59 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta property="og:title" content="{{ username }}' site'" />
|
|
|
|
<meta property="og:image" content="/static/site-image.png" />
|
2020-11-21 20:51:32 +01:00
|
|
|
|
2020-11-21 23:45:59 +01:00
|
|
|
<title>{{ username }}' site</title>
|
|
|
|
<link rel="stylesheet" href="/static/css/index.css">
|
|
|
|
<link rel="shortcut icon" type="image/jpg" href="/static/favicon.ico"/>
|
|
|
|
</head>
|
2020-11-21 20:51:32 +01:00
|
|
|
|
2020-11-21 23:45:59 +01:00
|
|
|
<body>
|
|
|
|
<h1>Hi, I'm {{ username }}</h1>
|
2021-04-03 23:26:10 +02:00
|
|
|
<p style="text-align: right">
|
|
|
|
<a href="/">Back to the blog</a>
|
|
|
|
</p>
|
2020-11-21 23:45:59 +01:00
|
|
|
<p>
|
2021-04-03 23:26:10 +02:00
|
|
|
This is my blog. If you have questions or input for me please send me an E-Mail to {{ email }}
|
2020-11-21 23:45:59 +01:00
|
|
|
</p>
|
|
|
|
<br>
|
|
|
|
<p>
|
|
|
|
<ul style="list-style: none;">
|
|
|
|
{% if github_account %}
|
2020-12-05 22:23:37 +01:00
|
|
|
<li><img class="social-icon" src="/static/social-icons/github.ico"><a href="https://github.com/{{ github_account }}"> {{ github_account }}</a></li>
|
2020-11-21 23:45:59 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if twitter_account %}
|
2020-12-05 22:23:37 +01:00
|
|
|
<li><img class="social-icon" src="/static/social-icons/twitter.ico"><a href="https://twitter.com/{{ twitter_account }}"> {{ twitter_account }}</a></li>
|
2020-11-21 23:45:59 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if reddit_account %}
|
2020-12-05 22:23:37 +01:00
|
|
|
<li><img class="social-icon" src="/static/social-icons/reddit.ico"><a href="https://reddit.com/u/{{ reddit_account }}"> {{ reddit_account }}</a></li>
|
2020-11-21 23:45:59 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if mastodon_account %}
|
2020-12-05 22:23:37 +01:00
|
|
|
<li><img class="social-icon" src="/static/social-icons/mastodon.ico"><a href="https://mastodon.social/"> {{ mastodon_account }}</a></li>
|
2020-11-21 23:45:59 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if discord_account %}
|
2020-12-05 22:23:37 +01:00
|
|
|
<li><img class="social-icon" src="/static/social-icons/discord.ico"><a href="https://discord.com/"> {{ discord_account }}</a></li>
|
2020-11-21 23:45:59 +01:00
|
|
|
{% endif %}
|
|
|
|
</ul>
|
|
|
|
</p>
|
|
|
|
</body>
|
2020-11-21 20:51:32 +01:00
|
|
|
</html>
|