-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmentions.html
28 lines (28 loc) · 1.22 KB
/
mentions.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
---
layout: default
---
<div class="home">
<section>
<h1 class="smallcap"><a class="site-title" href="/">Marek Narozniak's Mentions and Interviews</a></h1>
<span class="back">← <a href="{{ site.baseurl }}/">Index</a></span>
<h2 class="smallcap"><a class="site-title" href="/">Press interviews</a></h2>
<p>A collection of press interviews and comments I made that have appeared online.</p>
<ul class="post-list">
{% for mention in site.data.mentions %}
{% if mention.category == 'interviews' %}
{% include mention-list-entry.html %}
{% endif %}
{% endfor %}
</ul>
<h2 class="smallcap"><a class="site-title" href="/">Mentions in the newsletters</a></h2>
<p>I am actively contributing to various open-source projects and my contributions are often mentioned in their dedicated newsletters.</p>
<ul class="post-list">
{% for mention in site.data.mentions %}
{% if mention.category == 'mentions' %}
{% include mention-list-entry.html %}
{% endif %}
{% endfor %}
</ul>
<span class="back">← <a href="{{ site.baseurl }}/">Index</a></span>
</section>
</div>