blob: c610388090f85ace4b5007be101a75c17ad289df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
---
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>
|