aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
blob: 9630e4303b3d6c58fd6808c7bb9a9cdd654338f6 (plain) (blame)
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
---
title: Main page
layout: plain
---
<h1>{{ site.personal_info.name }}</h1>
<hr/>

<p>Hello!
I'm a software engineer, and I'll be publishing some of my notes on <a href="https://pages.github.com/">GitHub Pages</a>.
Feel free to make contributions or contact me.</p>

<div class="list-group wide-enough">
  <a class="list-group-item" href="{{ site.github.owner_url }}"><span class="glyphicon glyphicon-home"></span>&nbsp;GitHub profile</a>
  {% if site.personal_info.email %}
    <a class="list-group-item" href="mailto:{{ site.personal_info.email }}"><span class="glyphicon glyphicon-envelope"></span>&nbsp;{{ site.personal_info.email }}</a>
  {% endif %}
  {% if site.personal_info.cv_url %}
    <a class="list-group-item" href="{{ site.personal_info.cv_url }}"><span class="glyphicon glyphicon-file"></span>&nbsp;Curriculum vitae</a>
  {% endif %}
  {% if site.personal_info.linkedin_url %}
    <a class="list-group-item" href="{{ site.personal_info.linkedin_url }}"><span class="glyphicon glyphicon-zoom-in"></span>&nbsp;LinkedIn profile</a>
  {% endif %}
</div>

{% if site.personal_info.gpg %}
  <p>My personal GnuPG public key can be found <a href="{{ site.personal_info.gpg.public_key_url }}">here</a>.
Its fingerprint is <code style="white-space: pre-wrap;">{{ site.personal_info.gpg.fingerprint }}</code>.</p>
{% endif %}

{% if site.personal_info.projects %}
  <h3>Projects</h3>
  <div class="list-group wide-enough">
    {% for project in site.personal_info.projects %}
      <a class="list-group-item" href="{{ project.url }}"><span class="glyphicon glyphicon-chevron-right"></span>&nbsp;{{ project.name }}</a>
    {% endfor %}
  </div>
{% endif %}