--- 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> {{ 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 %}