aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_layouts
diff options
context:
space:
mode:
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/category.html14
-rw-r--r--_layouts/default.html10
-rw-r--r--_layouts/note.html6
-rw-r--r--_layouts/post.html10
4 files changed, 0 insertions, 40 deletions
diff --git a/_layouts/category.html b/_layouts/category.html
deleted file mode 100644
index efb34db..0000000
--- a/_layouts/category.html
+++ /dev/null
@@ -1,14 +0,0 @@
----
-layout: default
----
-<h1>{{ page.title }}</h1>
-<hr/>
-<p>This is a list of posts in category "{{ page.category }}".</p>
-{% if site.categories[page.category].size > 0 %}
- <ul>
- {% for post in site.categories[page.category] %}
- <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} &mdash; {{ post.title }}</a></li>
- {% endfor %}
- </ul>
-{% endif %}
-<p>For a complete list of posts grouped by category, please see <a href="{{ site.baseurl }}/all/">this page</a>.</p>
diff --git a/_layouts/default.html b/_layouts/default.html
deleted file mode 100644
index f151314..0000000
--- a/_layouts/default.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% include common/header.html %}
-<div class="row">
- <div class="col-md-8">
- {{ content }}
- </div>
- <div class="col-md-4">
- {% include common/sidebar.html %}
- </div>
-</div>
-{% include common/footer.html %}
diff --git a/_layouts/note.html b/_layouts/note.html
deleted file mode 100644
index 090100f..0000000
--- a/_layouts/note.html
+++ /dev/null
@@ -1,6 +0,0 @@
----
-layout: default
----
-<h1>{{ page.title }}</h1>
-<hr/>
-{{ content }}
diff --git a/_layouts/post.html b/_layouts/post.html
deleted file mode 100644
index c539244..0000000
--- a/_layouts/post.html
+++ /dev/null
@@ -1,10 +0,0 @@
----
-layout: default
----
-<h1>{{ page.title }}</h1>
-<p class="text-muted">
- <span class="glyphicon glyphicon-time"></span>&nbsp;Posted on {{ page.date | date: '%-d %B %Y' }}
- {%- if page.category %} in <span class="glyphicon glyphicon-folder-open"></span>&nbsp;<a class="category" href="{{ site.baseurl }}/categories/{{ page.category | slugify: 'pretty' }}/">{{ page.category }}</a>{% endif %}
-</p>
-{{ content }}
-<hr/>