index.html
HTML document, ASCII text, with very long lines (390)
1
{% extends "_layout.html" %}
2
{% block Head %}
3
{{super()}}
4
<meta property="og:title" content="Index" />
5
<meta property="og:type" content="website" />
6
<meta property="og:url" content="https://steve0greatness.github.io/" />
7
{% endblock %}
8
{% block title %}Homepage{% endblock %}
9
{% block breadcrumbs %}{% endblock %}
10
{% block content %}
11
<h1>Steve0Greatness</h1>
12
<p>Hey there! I'm <i>Steve0Greatness</i>(<a href="/blog/name.html">About my username</a>). Welcome to my website!</p>
13
<p>I'm a <i>human being</i> with an interest in full-stack web-dev. I'm also a proponent for <dfn id="floss"><abbr title="Free/Libre Open Source Software">FLOSS</abbr></dfn>. Despite this, I have a really bad hoarding problem, specifically for accounts on random websites I visit once every 5 years; because of this, I have a list of these: <a href="/list/link-tree.html">link tree</a>.</p>
14
<h2 id="cool-people-projects">Cool People & Projects!</h2>
15
<div class="ticker-wrapper pauseonhover">
16
<div class="ticker">
17
<a href="https://tauon.dev/" target="_blank">
18
<img
19
src="https://tauon.dev/images/88x31/lily.png"
20
alt="lily"
21
width="88"
22
height="31"
23
style="image-rendering: pixelated"
24
/>
25
</a>
26
</div>
27
</div>
28
{% endblock %}
29