aboutsummaryrefslogtreecommitdiff
path: root/_includes/aside.html
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-01-23 19:26:23 +0300
committerGitHub <noreply@github.com>2020-01-23 19:26:23 +0300
commitd05dfb5fbc9603491643a41a47ff9463bf2fda4e (patch)
tree5be50a926a746832df84e7a4abd04eb967f0bb79 /_includes/aside.html
parentd48911089650991034664eac3d2dc2cb2527fcaa (diff)
parent11c402a2938935111fc6c82f53b720eb71e355c7 (diff)
downloadpopov.link-d05dfb5fbc9603491643a41a47ff9463bf2fda4e.tar.xz
popov.link-d05dfb5fbc9603491643a41a47ff9463bf2fda4e.zip
Merge pull request #2 from valentineus/monopage
Monopage
Diffstat (limited to '_includes/aside.html')
-rw-r--r--_includes/aside.html41
1 files changed, 0 insertions, 41 deletions
diff --git a/_includes/aside.html b/_includes/aside.html
deleted file mode 100644
index 311b826..0000000
--- a/_includes/aside.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<aside class="sidebar">
- <div class="avatar">
- <img alt="[Avatar]" src="{{ site.avatar | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}" />
- </div>
-
- <p>{{ site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</p>
-
- {% for link in site.data.aside_links %}
- <p>
- <span>{{ link.name | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}</span>
-
- <a href="{{ link.url | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}" target="_blank">
- {{ link.tag | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
- </a>
- </p>
- {% endfor %}
-
- <h4>Recent Posts</h4>
-
- {% for post in site.posts limit: 5 %}
- <div>
- <small>
- <time datetime="{{ post.date | date_to_xmlschema }}">
- {{ post.date | date: '%Y-%m-%d' | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
- </time>
- </small>
- &raquo;
- <a href="{{ post.url | relative_url | uri_escape }}">
- {{ post.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | xml_escape }}
- </a>
- </div>
- {% endfor %}
-
- <h4>License</h4>
-
- <p>
- The content for this site is <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC BY-NC 4.0</a>.
- The <a href="{{ site.repos | strip_newlines | strip_html | strip | normalize_whitespace | relative_url | uri_escape }}" target="_blank">code</a>
- for this site is <a href="https://opensource.org/licenses/MIT" target="_blank">MIT</a>.
- </p>
-</aside>