diff options
-rw-r--r-- | source/_includes/archive_post.html | 2 | ||||
-rw-r--r-- | source/_includes/asides.html | 3 | ||||
-rw-r--r-- | source/_includes/asides/recent_posts.html | 8 |
3 files changed, 1 insertions, 12 deletions
diff --git a/source/_includes/archive_post.html b/source/_includes/archive_post.html index fef3328..5693f95 100644 --- a/source/_includes/archive_post.html +++ b/source/_includes/archive_post.html @@ -5,4 +5,4 @@ <footer> <span class="categories">posted in {{ post.categories | category_links }}</span> </footer> -{% endif %} +{% endif %}
\ No newline at end of file diff --git a/source/_includes/asides.html b/source/_includes/asides.html deleted file mode 100644 index 432c8fc..0000000 --- a/source/_includes/asides.html +++ /dev/null @@ -1,3 +0,0 @@ -<aside id="sidebar" class="right"> - {% include asides/recent_posts.html %} -</aside>
\ No newline at end of file diff --git a/source/_includes/asides/recent_posts.html b/source/_includes/asides/recent_posts.html deleted file mode 100644 index 0a73593..0000000 --- a/source/_includes/asides/recent_posts.html +++ /dev/null @@ -1,8 +0,0 @@ -<div class="widget"> - <h3>Recent Posts</h3> - <ul> - {% for post in site.posts limit: site.recent_posts %} - <li><a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a></li> - {% endfor %} - </ul> -</div> |