aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
blob: 3d48b58cdf3b1423ad5483df747419e30d9fc34c (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
---
title: Main page
layout: plain
main:
  - url: /blog/
    text: Blog
    glyph: folder-open
  - url: /cv/cv.pdf
    text: CV
    glyph: file
  - url: https://egort.name/
    text: egort.name
    glyph: globe
projects:
  - url: /jekyll-theme/
    name: Jekyll theme
  - url: /sorting-algorithms/
    name: Sorting algorithms
  - url: /wireguard-config/
    name: WireGuard configuration
links:
  - {rel: stylesheet, href: assets/css/index.css}
---
<h1>{{ site.settings.author.name }}</h1>
<hr/>

<p>Hello! I'm a software engineer, and here's some of my stuff.</p>

<div class="list-group wide-enough">
  {% if page.main %}
    {% for link in page.main %}
      <a class="list-group-item" href="{{ link.url }}"><span class="glyphicon glyphicon-{{ link.glyph }}"></span>&nbsp;{{ link.text }}</a>
    {% endfor %}
  {% endif %}
  <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>
</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 %}