Updating index,html
This commit is contained in:
parent
3bf7a92375
commit
30b313a72c
44
index.html
44
index.html
|
@ -1,18 +1,36 @@
|
||||||
---
|
---
|
||||||
layout: default
|
layout: page
|
||||||
|
description: "A Clean Blog Theme by Start Bootstrap"
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="posts">
|
{% for post in paginator.posts %}
|
||||||
{% for post in site.posts %}
|
<div class="post-preview">
|
||||||
<article class="post">
|
<a href="{{ post.url | prepend: site.baseurl }}">
|
||||||
|
<h2 class="post-title"> {{ post.title }}
|
||||||
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
</h2>
|
||||||
|
{% if post.subtitle %}
|
||||||
<div class="entry">
|
<h3 class="post-subtitle">
|
||||||
{{ post.excerpt }}
|
{{ post.subtitle }}
|
||||||
|
</h3>
|
||||||
|
{% endif %}
|
||||||
|
</a>
|
||||||
|
<p class="post-meta">Posted by {% if post.author %}{{ post.author }}{% else %}{{ site.title }}{% endif %} on {{ post.date | date: "%B %-d, %Y" }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
<hr>
|
||||||
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
|
||||||
</article>
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
|
||||||
|
<!-- Pager -->
|
||||||
|
{% if paginator.total_pages > 1 %}
|
||||||
|
<ul class="pager">
|
||||||
|
{% if paginator.previous_page %}
|
||||||
|
<li class="previous">
|
||||||
|
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">← Newer Posts</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
{% if paginator.next_page %}
|
||||||
|
<li class="next">
|
||||||
|
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Older Posts →</a>
|
||||||
|
</li>
|
||||||
|
{% endif %}
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
|
|
18
index.html.org
Normal file
18
index.html.org
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="posts">
|
||||||
|
{% for post in site.posts %}
|
||||||
|
<article class="post">
|
||||||
|
|
||||||
|
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
|
||||||
|
|
||||||
|
<div class="entry">
|
||||||
|
{{ post.excerpt }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
|
||||||
|
</article>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
Loading…
Reference in a new issue