-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
95 changed files
with
12,527 additions
and
7,907 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
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
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
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{% include hero_area.html %} | ||
<div class="main-content-area pb-100 clearfix"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-10 col-md-10 offset-md-2 offset-lg-2"> | ||
{% for post in paginator.posts %} {% if forloop.index !=1 %} | ||
<div | ||
class="blog-list wow fadeIn" | ||
data-wow-delay="100ms" | ||
data-wow-duration=".5s" | ||
> | ||
<div class="list-block block-{{forloop.index}}"> | ||
<span>{{post.date | date_to_long_string}}</span> | ||
<h2><a href="{{post.url}}">{{post.title}}</a></h2> | ||
<p>{{post.excerpt | truncatewords:30 }}</p> | ||
<div class="btn-read"><a href="{{post.url}}">Read More</a></div> | ||
</div> | ||
</div> | ||
{% endif %} {% endfor %} | ||
</div> | ||
</div> | ||
{% if paginator.total_pages > 1 %} | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div class="post-pagination pt-100 text-center clearfix"> | ||
{% if paginator.previous_page %} | ||
<p class="float-left"> | ||
<a href="{{ paginator.previous_page_path | prepend: site.baseurl }}" | ||
>Prev {{pre}} | ||
</a> | ||
</p> | ||
{% endif %} | ||
<p class="page-count"> | ||
Page {{paginator.page}} of {{paginator.total_pages}} | ||
</p> | ||
{% if paginator.next_page %} | ||
<p class="float-right"> | ||
<a href="{{ paginator.next_page_path | prepend: site.baseurl }}" | ||
>Next</a | ||
> | ||
</p> | ||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
{% endif %} | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,86 @@ | ||
<footer> | ||
<div class="footer-area clearfix"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-lg-12"> | ||
<div class="footer-logo pb-100 pt-100 text-center"> | ||
<a href="{{site.url}}"> | ||
{% if site.logo_url %} | ||
<img src="{{site.logo_url}}" alt="{{site.title}}"/> | ||
{% else %} | ||
<img src="{{site.baseurl}}/images/logo_notext_inv.svg" alt="{{site.title}}"/> | ||
{% endif %} | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row pb-60"> | ||
<div class="col-lg-3 col-md-6"> | ||
<div class="footer-widget"> | ||
<div class="widget-title"> | ||
<h4> About </h4> | ||
</div> | ||
<div class="widget-text"> | ||
<p>{{site.blog-desc}}</p> | ||
<div class="social-link"> | ||
<ul> | ||
{% if site.facebook_username %} | ||
<li><a href="https://facebook.com/{{site.facebook_username}}"><i class="fa fa-facebook-f"></i></a></li> | ||
{% endif %} | ||
{% if site.facebook_username %} | ||
<li><a href="https://twitter.com/{{site.twitter_username}}"><i class="fa fa-twitter"></i></a></li> | ||
{% endif %} | ||
{% if site.facebook_username %} | ||
<li><a href="https://plus.google.com/{{site.google_plus_username}}"><i class="fa fa-google-plus"></i></a></li> | ||
{% endif %} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-lg-3 col-md-6"> | ||
<div class="footer-widget"> | ||
<div class="widget-title"> | ||
<h4>Recent posts</h4> | ||
</div> | ||
<div class="widget-text"> | ||
<div class="r-post"> | ||
<ul> | ||
{% for post in site.posts limit:4 %} | ||
<li><a href="{{post.url}}">{{post.title}} </a> </li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-lg-3 col-md-6"> | ||
<div class="footer-widget"> | ||
<div class="widget-title"> | ||
<h4> Links</h4> | ||
</div> | ||
<div class="widget-text"> | ||
<div class="widget-link"> | ||
<ul> | ||
<ul> | ||
<li><a href="/" target="_blank">Main page</a></li> | ||
<li><a href="{{site.youtube}}" target="_blank">YouTube</a></li> | ||
<li><a href="{{site.facebook}}" target="_blank">Facebook</a></li> | ||
<li><a href="{{site.github}}" target="_blank">GitHub</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col"> | ||
<div class="footer-text text-center"> | ||
<p class="footer-address"> © {{ site.time | date: '%Y' }} {{ site.title }} | Developed by <a href="https://themeix.com">themeix</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> |
File renamed without changes.
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.