-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
138 lines (134 loc) · 4.08 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
---
layout: index
title: l0ner.github.io
meta-description: "Pawel 'l0ner' Soltys website."
meta-robots: "noodp, noydir"
---
<article id="about">
<img src='http://i.imgur.com/sReyU73m.png' width="200px" style="float:left;" />
<h5>Pawel 'l0ner' Soltys.</h5>
<p>Interests include but are not limited
to: Linux, C++, Python, programming in general, Open Source Software,
Operating Systems, Guitars and music, photography and many other things.
Currently self-employed as IT consultant, but searching for better job
opportunities.</p>
</article>
<article if="ramblings">
<h1>Ramblings:</h1>
<p>Stuff I wrote. I've been writing more in the past but now I prefer to
concentrate on developing my programming skills. This is not everything I've
wrote in the past. I've decided to remove some stuff, which become really
obsolete or was unimportant.
</p>
<ul>
{% for post in site.posts %}
{% if post.categories == empty %}
<li>{{ post.date | date: "%Y-%m-%d" }}: {{ post.category }}
<a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</article>
<article id="lyrics-translations">
<h1>Lyrics & Translations</h1>
<p>Something I enjoy doing in my free time is transcribing and translating (badly)
song lyrics (and somethimes other things). Please note that these are not
professional translations but something I do with songs I like in my free time.
</p>
<ul>
{% for post in site.categories.lyrics %}
<li>{{ post.type }}:
<a href="{{ post.url }}">{{ post.title }}</a>
{% if post.type == "Translation" %}
({{ post.languages }})
{% endif %}
</li>
{% endfor %}
</ul>
</article>
<article id="Code portfolio">
<h1>Code portfolio</h1>
<h2>Created</h2>
<div class="tile-container">
{% for project in site.data.projects_created %}
{% if project.publish == true %}
<a href="{{ project.link }}">
{% if project.thumb %}
<div class="project-tile" style='background-image: url("/assets/img/projects/{{ project.thumb }}")'>
{% else %}
<div class="project-tile">
{% endif %}
{% if project.icon %}
<i class="fa {{ project.icon }}"></i>
{% endif %}
<div class="project-desc">
{{ project.short-desc }}
</div>
<div class="project-title">
{{ project.project }}
{% if project.cat-icon %}
<i class="fa {{ project.cat-icon }}"></i>
{% endif %}
</div>
</div>
</a>
{% endif %}
{% endfor %}
</div>
<h2>Contributions</h2>
<p>Projects I contributed to</p>
<div class="tile-container">
{% for project in site.data.projects_contributed %}
{% if project.publish == true %}
<a href="{{ project.link }}">
{% if project.thumb %}
<div class="project-tile" style='background-image: url("/assets/img/projects/{{ project.thumb }}")'>
{% else %}
<div class="project-tile">
{% endif %}
{% if project.icon %}
<i class="fa {{ project.icon }}"></i>
{% endif %}
<div class="project-desc">
{{ project.short-desc }}
</div>
<div class="project-title">
{{ project.project }}
{% if project.cat-icon %}
<i class="fa {{ project.cat-icon }}"></i>
{% endif %}
</div>
</div>
</a>
{% endif %}
{% endfor %}
</div>
<h2>Gimmicks</h2>
<p>Stuff I did for fun.</p>
<div class="tile-container">
{% for project in site.data.projects_assignments %}
{% if project.publish == true %}
<a href="{{ project.link }}">
{% if project.thumb %}
<div class="project-tile" style='background-image: url("/assets/img/projects/{{ project.thumb }}")'>
{% else %}
<div class="project-tile">
{% endif %}
{% if project.icon %}
<i class="fa {{ project.icon }}"></i>
{% endif %}
<div class="project-desc">
{{ project.short-desc }}
</div>
<div class="project-title">
{{ project.project }}
{% if project.cat-icon %}
<i class="fa {{ project.cat-icon }}"></i>
{% endif %}
</div>
</div>
</a>
{% endif %}
{% endfor %}
</div>
</article>