aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
blob: fda4e6f56420a80e82c96a8582d36039816d2bf7 (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
38
39
40
41
42
43
44
45
46
47
48
49
---
title: Main page
layout: plain
links:
  - url: /blog/
    text: Blog
    glyph: folder-open
  - url: https://egort.name/
    text: egort.name
    glyph: globe
  - url: /cv/cv.pdf
    text: CV
    glyph: file
  - url: /gpg.txt
    text: GnuPG key
    glyph: lock
projects:
  - url: /jekyll-theme/
    name: Jekyll theme
  - url: /sorting-algorithms/
    name: Sorting algorithms
  - url: /wireguard-config/
    name: WireGuard configuration
---
<h1>{{ site.settings.author.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</a>
  <a class="list-group-item" href="mailto:{{ site.settings.author.email }}"><span class="glyphicon glyphicon-envelope"></span>&nbsp;{{ site.settings.author.email }}</a>
  {% if page.links %}
    {% for link in page.links %}
      <a class="list-group-item" href="{{ link.url }}"><span class="glyphicon glyphicon-{{ link.glyph }}"></span>&nbsp;{{ link.text }}</a>
    {% endfor %}
  {% endif %}
</div>

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