--- title: Main page layout: plain main: - url: /cv/cv.pdf text: cv - url: https://egort.name/ text: egort.name description: My other place on the web projects: - url: /blog/ name: blog description: Random notes - url: https://egort.name/status/ name: linux-status description: Simple Linux server monitoring - 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 - url: https://egort.name/git/ description: More... --- <h1>{{ site.settings.author.name }}</h1> <hr/> <div class="row"> {% if page.projects %} <div class="col-sm-6 col-md-5 col-lg-4"> <div class="list-group"> <div class="list-group-item disabled"> <h4 class="list-group-item-heading">pages</h4> </div> {% for project in page.projects %} <a class="list-group-item" href="{{ project.url }}"> {% if project.name %} <h4 class="list-group-item-heading">{{ project.name }}</h4> {% endif %} {% if project.description %} <p class="list-group-item-text">{{ project.description }}</p> {% endif %} </a> {% endfor %} </div> </div> {% endif %} <div class="col-sm-5 col-md-4 col-lg-3"> <div class="list-group"> <div class="list-group-item disabled"> <h4 class="list-group-item-heading">links</h4> </div> <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> {% if link.description %} <p class="list-group-item-text">{{ link.description }}</p> {% endif %} </a> {% endfor %} {% endif %} </div> </div> </div>