-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (28 loc) · 1.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: default
---
{% assign me_email = site.email[0] %}
{% assign work_email = site.email[1] %}
{% assign github = site.social.github %}
{% assign gitlab = site.social.gitlab %}
<main class="max-w-3xl mx-auto h-full space-y-10 flex flex-col items-center justify-center p-2 sm:p-4">
<div class="rounded-full overflow-hidden mx-auto ring-2 ring-green ring-offset-2 ring-offset-dark">
<img src="{{ "/assets/profile.png" | relative_url }}" class="sm:w-26 w-24 md:w-48" />
</div>
<div class="space-y-2 text-black dark:text-white text-center">
<h1 class="text-xl font-semibold sm:text-3xl">Hello!</h1>
<div class="sm:text-lg">
<h2>I'm <span class="font-semibold text-green">{{ site.author }}</span>, digitally known as <span class="font-semibold text-green">{{ site.nickname }}</span>.</h2>
<h3>This is my online space where I'm all about Coding, Linux and a some nerding stuff.</h3>
</div>
</div>
<div class="space-x-4 font-semibold">
{% include link.html href="/blog" title="Blog" %}
{% include link.html href=github title="GitHub" %}
{% include link.html href=gitlab title="GitLab" %}
{% include mail.html address=me_email title="Contact" %}
</div>
</main>
<div class="sm:fixed sm:bottom-0 p-2 sm:p-4">
{% include footer.html %}
</div>