aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-01-23 11:17:24 +0300
committerValentin Popov <info@valentineus.link>2020-01-23 11:17:24 +0300
commit3e0efb5d500550ea2a5687f080582e200a495d25 (patch)
tree614ebc526ca6e52609a9bb226a448f430694a1eb
parent20a83cfb4a9f7841944b62c914250d8938274585 (diff)
downloadpopov.link-3e0efb5d500550ea2a5687f080582e200a495d25.tar.xz
popov.link-3e0efb5d500550ea2a5687f080582e200a495d25.zip
Removed sidebar
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--_includes/aside.html41
-rw-r--r--_layouts/page.html2
-rw-r--r--_layouts/post.html2
3 files changed, 0 insertions, 45 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>
diff --git a/_layouts/page.html b/_layouts/page.html
index 56d1864..01d6fcd 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -9,5 +9,3 @@ layout: default
{{ content }}
</main>
-
-{% include aside.html %}
diff --git a/_layouts/post.html b/_layouts/post.html
index e4aaa10..8270973 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -18,6 +18,4 @@ layout: default
</header>
{{ content }}
-
- {% include disqus.html %}
</article>