diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-04 00:56:25 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-04 00:56:25 +0300 |
commit | 74b4b3f035720225895bbc2a047e6f83b5c888b3 (patch) | |
tree | 827416350309ab34fdf399b9e480239f8b61e9c0 /index.html | |
parent | c94a92c52fe23fd85bcdaf82b772a3777c5a2205 (diff) | |
download | popov.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.html | 32 |
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">←</a> - {% endif %} - - {% if paginator.next_page %} - <a href="{{ paginator.next_page_path | prepend: site.baseurl }}" class="right arrow">→</a> - {% endif %} - - <span>{{ paginator.page }}</span> -</div> |