Skip to content

Commit ab6d3ab

Browse files
committed
feat: move skills and experience sections to about page, simplify nav
1 parent b4cc436 commit ab6d3ab

File tree

3 files changed

+59
-71
lines changed

3 files changed

+59
-71
lines changed

_data/nav.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
- title: Notes
22
icon: null
33
path: /notes
4-
- title: Experience
4+
- title: About
55
icon: null
6-
path: /xp
6+
path: /about
77
- title: Projects
88
icon: null
99
path: /projects
1010
- title: Games
1111
icon: null
1212
path: /games
13-
- title: Coffee
14-
icon: fa-solid fa-mug-hot fa-xs
15-
path: /coffee
1613
- title: Uses
1714
icon: null
1815
path: /uses
@@ -22,6 +19,3 @@
2219
- title: Now
2320
icon: null
2421
path: /now
25-
- title: About
26-
icon: null
27-
path: /about

pages/XP.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

pages/about.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,60 @@ Kávéfüggő vagyok. ☕️ Szeretem a világos pörkölésű kávét és az al
1818
Szabadidőmben néha videójátékokat nyösztetek, szigorúan konzolon. 🎮
1919
</div>
2020
</div>
21+
22+
## Skills
23+
24+
{% for skill in site.data.skills %}
25+
<b> {{ skill.category }} </b>
26+
27+
<div class="skills">
28+
{% for item in skill.items %}
29+
<img src="{{item.icon}}">
30+
{% endfor %}
31+
32+
</div>
33+
34+
{% endfor %}
35+
36+
## Tapasztalat
37+
38+
{% for entry in site.data.xp.work %}
39+
<div class="flex-container">
40+
<div class="data">
41+
<p class="maintitle">{{entry.company}}</p>
42+
<p class="subtitle">{{entry.role}}</p>
43+
<p class="other">{{entry.period}}</p>
44+
{% if entry.link %}
45+
<p class="other">
46+
<a href="{{entry.link}}">{{entry.link}}</a>
47+
</p>
48+
{% endif %}
49+
</div>
50+
<div class="details">
51+
<ul>
52+
{% for task in entry.description %}
53+
<li>{{task}}</li>
54+
{% endfor %}
55+
</ul>
56+
</div>
57+
</div>
58+
{% endfor %}
59+
60+
## Tanulmányok
61+
62+
{% for entry in site.data.xp.education %}
63+
<div class="flex-container">
64+
<div class="data">
65+
<p class="maintitle">{{entry.institute}}</p>
66+
<p class="subtitle">{{entry.program}}</p>
67+
<p class="other">{{entry.period}}</p>
68+
</div>
69+
<div class="details">
70+
<ul>
71+
{% for task in entry.description %}
72+
<li>{{task}}</li>
73+
{% endfor %}
74+
</ul>
75+
</div>
76+
</div>
77+
{% endfor %}

0 commit comments

Comments
 (0)