aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorValentin Popov <valentineus@gmail.com>2018-04-04 00:56:25 +0300
committerValentin Popov <valentineus@gmail.com>2018-04-04 00:56:25 +0300
commit74b4b3f035720225895bbc2a047e6f83b5c888b3 (patch)
tree827416350309ab34fdf399b9e480239f8b61e9c0 /index.html
parentc94a92c52fe23fd85bcdaf82b772a3777c5a2205 (diff)
downloadpopov.link-74b4b3f035720225895bbc2a047e6f83b5c888b3.tar.xz
popov.link-74b4b3f035720225895bbc2a047e6f83b5c888b3.zip
Home page template
Signed-off-by: Valentin Popov <valentineus@gmail.com>
Diffstat (limited to 'index.html')
-rw-r--r--index.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/index.html b/index.html
deleted file mode 100644
index ce4965c..0000000
--- a/index.html
+++ /dev/null
@@ -1,32 +0,0 @@
----
-layout: default
-title: Home
----
-
-<div class="catalogue">
- {% for post in paginator.posts %}
- <a href="{{ post.url | prepend: site.baseurl }}" class="catalogue-item">
- <div>
- <time datetime="{{ post.date }}" class="catalogue-time">{{ post.date | date: "%B %d, %Y" }}</time>
- <h1 class="catalogue-title">{{ post.title }}</h1>
- <div class="catalogue-line"></div>
-
- <p>
- {{ post.content | truncatewords: 30 | strip_html }}
- </p>
- </div>
- </a>
- {% endfor %}
-</div>
-
-<div class="pagination">
- {% if paginator.previous_page %}
- <a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" class="left arrow">&#8592;</a>
- {% endif %}
-
- {% if paginator.next_page %}
- <a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="right arrow">&#8594;</a>
- {% endif %}
-
- <span>{{ paginator.page }}</span>
-</div>