0
mirror of https://github.com/valentineus/popov.link.git synced 2025-07-03 16:10:26 +03:00

Home page

This commit is contained in:
2018-04-18 03:45:55 +04:00
parent 38d5e30c3a
commit ce5db590ca
2 changed files with 15 additions and 39 deletions

View File

@ -1,18 +1,20 @@
---
permalink: "index.html"
layout: default
layout: page
---
<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>
{% for post in site.posts %}
<div class="header">
<h2 class="header-title">
<a href="{{ post.url | relative_url | uri_escape }}">
{{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
</a>
</h2>
{% if post.description %}
<p class="header-annotation">
{{ post.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
</p>
{% endif %}
<time>{{ post.date | date_to_long_string }}</time>
</div>
</section>
{% endfor %}