19 lines
690 B
HTML
19 lines
690 B
HTML
---
|
|
permalink: "index.html"
|
|
layout: default
|
|
---
|
|
|
|
<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>
|
|
{% for item in site.social_links %}
|
|
{% assign title = item[0] | strip_newlines | strip_html | strip | normalize_whitespace | smartify %}
|
|
{% assign link = item[1] | strip_newlines | strip_html | strip | uri_escape %}
|
|
<li><a href="{{ link }}" target="_blank">{{ title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</section>
|