blob: 8029f174b619b7d82e0ae610b429d29d7c52a7b5 (
plain) (
tree)
|
|
---
title: Main page
layout: plain
main:
- url: /cv/cv.pdf
text: cv
- url: https://egort.name/
text: egort.name
projects:
- url: /blog/
name: blog
description: Random posts and notes
- url: /jekyll-theme/
name: jekyll-theme
description: My Jekyll theme
- url: /sorting-algorithms/
name: sorting-algorithms
description: Getting the hang out of (sorting) algorithms
- url: /wireguard-config/
name: wireguard-config
description: Generate WireGuard configuration files
---
<h1>{{ site.settings.author.name }}</h1>
<hr/>
<div style="display: flex; flex-wrap: wrap; column-gap: 1em;">
{% if page.projects %}
<div class="list-group wide-enough">
<a class="list-group-item disabled" href="#">
<h4 class="list-group-item-heading">projects</h4>
</a>
{% for project in page.projects %}
<a class="list-group-item" href="{{ project.url }}">
<h4 class="list-group-item-heading">{{ project.name }}</h4>
{% if project.description %}
<p class="list-group-item-text">{{ project.description }}</p>
{% endif %}
</a>
{% endfor %}
</div>
{% endif %}
<div class="list-group wide-enough">
<a class="list-group-item disabled" href="#">
<h4 class="list-group-item-heading">links</h4>
</a>
<a class="list-group-item" href="mailto:{{ site.settings.author.email }}">
<h4 class="list-group-item-heading">{{ site.settings.author.email | downcase }}</h4>
</a>
<a class="list-group-item" href="{{ site.github.owner_url }}">
<h4 class="list-group-item-heading">github</h4>
</a>
{% if page.main %}
{% for link in page.main %}
<a class="list-group-item" href="{{ link.url }}">
<h4 class="list-group-item-heading">{{ link.text }}</h4>
</a>
{% endfor %}
{% endif %}
</div>
</div>
|