-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 2.03 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
---
layout: default
---
<div class="home">
<header class="home__about">
<div id="avatar" class="home__about-photo">
<div class="home__about-info"><a target="_blank" rel="noopener noreferrer" href="https://github.com/felixhammerl">{% include github.svg %}</a></div>
<div class="home__about-info"><a target="_blank" rel="noopener noreferrer" href="https://www.linkedin.com/in/felixhammerl/">{% include linkedin.svg %}</a></div>
<div class="home__about-info"><a target="_blank" rel="noopener noreferrer" href="https://bsky.app/profile/felixhammerl.bsky.social">{% include bluesky.svg %}</a></div>
<div class="home__about-info"><a target="_blank" rel="noopener noreferrer" href="https://infosec.exchange/@felixhammerl">{% include mastodon.svg %}</a></div>
<div class="home__about-info"><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/felixhammerl">{% include twitter.svg %}</a></div>
<div class="home__about-info"><a target="_blank" rel="noopener noreferrer" href="mailto:felix.hammerl@gmail.com">{% include envelope.svg %}</a></div>
<div class="home__about-info"><a target="_blank" rel="noopener noreferrer" href="https://keys.mailvelope.com/pks/lookup?op=get&search=felix.hammerl@gmail.com">{% include key.svg %}</a></div>
</div>
</header>
<div class="home__list">
{% for post in site.posts %}
<div class="home__list-entry">
<div class="home__list-entry-left">
<a href="{{ post.url | prepend: site.baseurl }}">
<p class="home__list-entry-left-header">{{ post.title }}</p>
<p class="home__list-entry-left-meta">{{ post.date | date: "%b %-d, %Y" }}</p>
</a>
</div>
<div class="home__list-entry-right">
<a href="{{ post.url | prepend: site.baseurl }}">
<p class="home__list-entry-right-excerpt">{{ post.excerpt | strip_html }} ...</p>
<p class="home__list-entry-right-link">>> Read more ...</p>
</a>
</div>
</div>
<hr>
{% endfor %}
</ul>
</div>