Sha256: c8a3619c0cc68467f9f71a8191f8e3e72b0c573d370f15f1f1ab1e2e43286c4e
Contents?: true
Size: 1.75 KB
Versions: 5
Compression:
Stored size: 1.75 KB
Contents
--- layout: default --- <div class="home"> {% if site.theme_settings.header_text %} <div id="main" class="call-out" style="background-image: url('{{ site.baseurl }}/{{ site.theme_settings.header_text_feature_image }}')"> {{ site.theme_settings.header_text }} </div> {% endif %} <div class="posts"> {% for post in paginator.posts %} <div class="post-teaser"> {% if post.thumbnail %} <div class="post-img"> <img src="{{ site.baseurl }}/{{ post.thumbnail }}"> </div> {% endif %} <span> <header> <h1> <a class="post-link" href="{{ post.url | prepend: site.baseurl }}"> {{ post.title }} </a> </h1> <p class="meta"> {{ post.date | date: "%B %-d, %Y" }} </p> </header> <div class="excerpt"> {{ post.content | strip_html | truncate: "250" }} <!--<a class="button" href="{{ post.url | prepend: site.baseurl }}"> {{ site.theme_settings.str_continue_reading }} </a>--> </div> </span> </div> {% endfor %} </div> {% if paginator.total_pages > 1 %} <div class="pagination"> {% if paginator.previous_page %} <a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="button" > <i class="fa fa-chevron-left"></i> {{ site.theme_settings.str_previous_page }} </a> {% endif %} {% if paginator.next_page %} <a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="button" > {{ site.theme_settings.str_next_page }} <i class="fa fa-chevron-right"></i> </a> {% endif %} </div> {% endif %} </div>
Version data entries
5 entries across 5 versions & 2 rubygems