2018-04-04 00:56:25 +03:00
|
|
|
---
|
2018-04-11 03:19:47 +03:00
|
|
|
permalink: "index.html"
|
2018-04-04 02:16:45 +03:00
|
|
|
layout: default
|
2018-04-04 00:56:25 +03:00
|
|
|
---
|
|
|
|
|
2018-04-11 03:19:47 +03:00
|
|
|
<section class="container centered">
|
|
|
|
<div class="about">
|
|
|
|
<h1>{{ site.author.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}</h1>
|
|
|
|
<h2>{{ site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}</h2>
|
|
|
|
<ul>
|
2018-04-11 17:21:16 +03:00
|
|
|
{% for item in site.social_links %}
|
2018-04-11 03:19:47 +03:00
|
|
|
<li>
|
|
|
|
<a href="{{ item[1] | strip_newlines | strip_html | strip | uri_escape }}" target="_blank">
|
|
|
|
{{ item[0] | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</section>
|