-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
70 lines (58 loc) · 2.18 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
---
# You don't need to edit this file, it's empty on purpose.
# Edit theme's home layout instead if you wanna make some changes
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: single
author_profile: false
header:
overlay_image: /images/emmanuel-conf-1200px.jpg
show_overlay_excerpt: true
---
<p>Hello there, I'm a software engineer working at Red Hat on all things middleware.</p>
<h2><a href="/blog/">Blog</a></h2>
<p>If you've landed here, you're mostly interested in my <a href=/blog/>blog entries</a>.
At least that's where this website value is at 😉.
These are my thoughts on various subjects.
I particularly love hacking my work.
Either by methodology or by improving my tools.</p>
<h3>Latest blog entries</h3>
{% comment %} from single layout {% endcomment %}
{% if paginator %}
{% assign posts = paginator.posts %}
{% else %}
{% assign posts = site.posts %}
{% endif %}
{% assign entries_layout = page.entries_layout | default: 'list' %}
<div class="entries-{{ entries_layout }}">
{% comment %} https://stackoverflow.com/questions/17890493/how-can-i-show-just-the-most-recent-post-on-my-home-page-with-jekyll {% endcomment %}
<div style='margin: 1em; padding: 1em; border: 1px groove ;'>
{% for post in posts limit:2 %}
{% comment %} from archive-single layout {% endcomment %}
{% include archive-single.html type=entries_layout %}
{% endfor %}
<a href=/blog/>More entries...</a>
</div>
</div>
<h3>Topics I blog about</h3>
<p>Here is a list of topics I blogged about.</p>
{% assign tags_max = 0 %}
{% for tag in site.tags %}
{% if tag[1].size > tags_max %}
{% assign tags_max = tag[1].size %}
{% endif %}
{% endfor %}
<ul class="taxonomy__index">
{% for i in (1..tags_max) reversed %}
{% for tag in site.tags %}
{% if tag[1].size == i %}
<li>
<a href="/blog/tags/#{{ tag[0] | slugify }}">
<strong>{{ tag[0] }}</strong> <span class="taxonomy__count">{{ i }}</span>
</a>
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ul>
<h2>Everything else</h2>
<p>The rest is some info about me. E.g my <a href="/bio/">bio</a> or the <a href="/projects/">projects</a> I am or have worked on.</p>