blob: d65550a094677a336609217c5670ef2c7bef6e38 (
plain) (
tree)
|
|
---
title: Main page
layout: plain
links:
- 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
---
<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.links %}
{% for link in page.links %}
<a class="list-group-item" href="{{ link.url }}"><span class="glyphicon glyphicon-{{ link.glyph }}"></span> {{ link.text }}</a>
{% endfor %}
{% endif %}
<a class="list-group-item" href="{{ site.github.owner_url }}"><span class="glyphicon glyphicon-home"></span> GitHub</a>
<a class="list-group-item" href="mailto:{{ site.settings.author.email }}"><span class="glyphicon glyphicon-envelope"></span> {{ 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> {{ project.name }}</a>
{% endfor %}
</div>
{% endif %}
|