forked from wowthemesnet/mediumish-theme-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d983b65
commit e93c7ff
Showing
3 changed files
with
34 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,66 @@ | ||
--- | ||
layout: default | ||
title: Home | ||
image: 'assets/images/og-image.png' | ||
--- | ||
|
||
{% if page.url == "/" %} | ||
|
||
<!-- Featured | ||
================================================== --> | ||
<section class="featured-posts"> | ||
<!-- Featured | ||
================================================== --> | ||
<section class="featured-posts"> | ||
<div class="section-title"> | ||
<h2><span>Featured</span></h2> | ||
<h2> | ||
<span>Featured</span> | ||
</h2> | ||
</div> | ||
<div class="row"> | ||
|
||
{% for post in site.posts %} | ||
{% for post in site.posts %} | ||
|
||
{% if post.featured == true %} | ||
|
||
{% include featuredbox.html %} | ||
{% include featuredbox.html %} | ||
|
||
{% endif %} | ||
|
||
{% endfor %} | ||
{% endfor %} | ||
|
||
</div> | ||
</section> | ||
</section> | ||
|
||
{% endif %} | ||
|
||
<!-- Posts Index | ||
================================================== --> | ||
================================================== --> | ||
<section class="recent-posts"> | ||
|
||
<div class="section-title"> | ||
<div class="section-title"> | ||
|
||
<h2><span>All Stories</span></h2> | ||
<h2> | ||
<span>All Stories</span> | ||
</h2> | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="row listrecent"> | ||
<div class="row listrecent"> | ||
|
||
{% for post in paginator.posts %} | ||
{% for post in paginator.posts %} | ||
|
||
{% include postbox.html %} | ||
{% include postbox.html %} | ||
|
||
{% endfor %} | ||
{% endfor %} | ||
|
||
</div> | ||
</div> | ||
|
||
</section> | ||
|
||
<!-- Pagination | ||
================================================== --> | ||
================================================== --> | ||
<div class="bottompagination"> | ||
<div class="pointerup"><i class="fa fa-caret-up"></i></div> | ||
<span class="navigation" role="navigation"> | ||
<div class="pointerup"> | ||
<i class="fa fa-caret-up"></i> | ||
</div> | ||
<span class="navigation" role="navigation"> | ||
{% include pagination.html %} | ||
</span> | ||
</div> | ||
|
||
</span> | ||
</div> |