diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-11 03:19:47 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-11 03:19:47 +0300 |
commit | 5c2f1a80093d2a787074ade6b5a02ff8cdaab90e (patch) | |
tree | 9e6666fd12043e64d0afa1f77f705a2b96b2e731 /_pages | |
parent | 187bf204d4b949ac314c992611ffa3f1d7bb1d83 (diff) | |
download | popov.link-5c2f1a80093d2a787074ade6b5a02ff8cdaab90e.tar.xz popov.link-5c2f1a80093d2a787074ade6b5a02ff8cdaab90e.zip |
Main page
Diffstat (limited to '_pages')
-rw-r--r-- | _pages/index.html | 40 |
1 files changed, 16 insertions, 24 deletions
diff --git a/_pages/index.html b/_pages/index.html index 94d09e8..d1a19c3 100644 --- a/_pages/index.html +++ b/_pages/index.html @@ -1,28 +1,20 @@ --- -permalink: "/index.html" +permalink: "index.html" layout: default --- -<div class="container"> - <div class="content"> - <!-- Header --> - <div class="page-heading">Blog</div> - <!-- List --> - <ul> - {% for node in site.posts %} - <li class="post-item"> - <!-- Time --> - <span class="meta"> - <time datetime="{{ node.latest_update | default: node.date | date_to_xmlschema }}"> - {{ node.latest_update | default: node.date | date_to_string }} - </time> - </span> - <!-- Link --> - <a href="{{ node.url | relative_url | uri_escape }}"> - <span>{{ node.title | smartify | strip_html | normalize_whitespace }}</span> - </a> - </li> - {% endfor %} - </ul> - </div> -</div> +<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.links %} + <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> |