-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (39 loc) · 1.76 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
layout: default
---
<div class="my-8 flex flex-col w-full space-y-2 font-lato text-center px-8 leading-snug tracking-tight">
<p class="text-2xl">
Howdy, thanks for stopping by! <br/>
</p>
<p>
I have passion for software development and Linux servers<br>
I also enjoy gardening, home DIY'ing, bike riding and exploring nature.
</p>
</div>
<section class="my-4">
<div class="container mx-auto flex flex-col items-start md:flex-row">
<div class="ml-0 md:ml-12">
<div class="container mx-auto w-full h-full">
<div class="relative wrap overflow-hidden h-full dark:text-white">
<div class="border-2 border-indigo-800 absolute h-full right-1/2"></div>
<div class="border-2 border-blue-500 absolute h-full left-1/2"></div>
{% for job in site.resume reversed %}
<div class="bg-red mb-8 flex justify-between {% cycle 'flex-row-reverse', '' %} items-center w-full">
<div class="order-1 w-5/12"></div>
<div data-aos="fade-up" data-aos-offset="300" class="order-1 w-5/12 px-1 py-4 {% cycle 'text-right', 'text-left' %}">
<p class="mb-3 text-base text-blue-800 dark:text-yellow-200">{{ job.name }}</p>
<h4 class="font-lato font-light text-lg md:text-2xl">{{ job.position }}</h4>
<p class="mb-3 text-xs md:text-base leading-snug text-gray-400 text-opacity-100">
{{ job.years }}
</p>
<p class="text-sm md:text-base leading-snug text-gray-50 text-opacity-100">
{{ job.content | markdownify }}
</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
</section>