|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +--- |
| 4 | + |
| 5 | +<div class="teaserimage"> |
| 6 | + <div class="teaserimage-image" {% if site.cover %}style="background-image: url({{ site.cover | prepend: site.baseurl }})"{% endif %}> |
| 7 | + Teaser Image |
| 8 | + </div> |
| 9 | +</div> |
| 10 | + |
| 11 | +<header class="blog-header"> |
| 12 | + {% if site.logo %} |
| 13 | + <a class="blog-logo" href="{{site.url}}{{site.baseurl}}" style="background-image: url('{{ site.logo | prepend: site.baseurl }}')">{{ site.title }}</a> |
| 14 | + {% endif %} |
| 15 | + <h1 class="blog-title">{{ site.title }}</h1> |
| 16 | + <h2 class="blog-description">{{ site.description }}</h2> |
| 17 | + <div class="custom-links"> |
| 18 | + {% for social in site.social %} |
| 19 | + {% if social.url %} |
| 20 | + <a class="icon-{{ social.icon }}" href="{{ social.url }}" {% if social.desc %} title="{{ social.desc }}"{% endif %}"> |
| 21 | + <i class="fa fa-{{ social.icon }}"></i> |
| 22 | + </a> |
| 23 | + · |
| 24 | + {% endif %} |
| 25 | + {% endfor %} |
| 26 | + <a href={{ "/about/" | prepend: site.baseurl }}>About</a> |
| 27 | + </div> |
| 28 | +</header> |
| 29 | + |
| 30 | + |
| 31 | +<main class="content" role="main"> |
| 32 | + |
| 33 | + {% if site.tags.featured %} |
| 34 | + <h5 class="index-headline featured"><span>Featured</span></h5> |
| 35 | + |
| 36 | + <div class="container featured"> |
| 37 | + {% for post in site.tags.featured %} |
| 38 | + <article class="post" itemscope itemtype="http://schema.org/BlogPosting" role="article"> |
| 39 | + <div class="article-item"> |
| 40 | + <header class="post-header"> |
| 41 | + <h2 class="post-title" itemprop="name"><a href="{{ post.url | prepend: site.baseurl }}" itemprop="url">{{ post.title }}</a></h2> |
| 42 | + </header> |
| 43 | + <section class="post-excerpt" itemprop="description"> |
| 44 | + <p>{{ post.content | strip_html | truncatewords: 50 }}</p> |
| 45 | + </section> |
| 46 | + <div class="post-meta"> |
| 47 | + <time datetime="{{ post.date | date_to_long_string }}">{{ post.date | date_to_long_string }}</time> |
| 48 | + <!-- <span class="post-tags-set">on {{#foreach tags}}<span class="post-tag-{{slug}}">{{#if @first}}{{else}}, {{/if}}<a href="/tag/{{slug}}">{{name}}</a></span>{{/foreach}}</span>--> |
| 49 | + </div> |
| 50 | + </div> |
| 51 | + </article> |
| 52 | + {% endfor %} |
| 53 | + </div> |
| 54 | + |
| 55 | + <h5 class="index-headline normal"><span>Regular</span></h5> |
| 56 | + {% endif %} |
| 57 | + |
| 58 | + <div class="cf frame"> |
| 59 | + {% for post in paginator.posts %} |
| 60 | + <article class="post" itemscope itemtype="http://schema.org/BlogPosting" role="article"> |
| 61 | + <div class="article-item"> |
| 62 | + <header class="post-header"> |
| 63 | + <h2 class="post-title" itemprop="name"><a href="{{ post.url | prepend: site.baseurl }}" itemprop="url">{{ post.title }}</a></h2> |
| 64 | + </header> |
| 65 | + <section class="post-excerpt" itemprop="description"> |
| 66 | + <p>{{ post.excerpt | strip_html | truncatewords: 50 }}</p> |
| 67 | + </section> |
| 68 | + <div class="post-meta"> |
| 69 | + <time datetime="{{ post.date | date_to_long_string }}">{{ post.date | date_to_long_string }}</time> |
| 70 | +<!-- <span class="post-tags-set">on {{#foreach tags}}<span class="post-tag-{{slug}}">{{#if @first}}{{else}}, {{/if}}<a href="/tag/{{slug}}">{{name}}</a></span>{{/foreach}}</span>--> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + </article> |
| 74 | + {% endfor %} |
| 75 | + </div> |
| 76 | + |
| 77 | + <nav class="pagination" role="navigation"> |
| 78 | + {% if paginator.next_page %} |
| 79 | + <a class="newer-posts" href={{ "/page" | prepend: site.baseurl | append: paginator.next_page }}>← Older posts</a> |
| 80 | + {% endif %} |
| 81 | + <span class="page-number">Page {{ paginator.page }} of {{ paginator.total_pages }}</span> |
| 82 | + {% if paginator.previous_page %} |
| 83 | + {% if paginator.page == 2 %} |
| 84 | + <a class="older-posts" href={{ "/" | prepend: site.baseurl }}>Newer posts →</a> |
| 85 | + {% else %} |
| 86 | + <a class="older-posts" href={{ "/page" | prepend: site.baseurl | append: paginator.previous_page }}>Newer posts →</a> |
| 87 | + {% endif %} |
| 88 | + {% endif %} |
| 89 | + </nav> |
| 90 | + |
| 91 | + |
| 92 | + <!-- {{!! After all the posts, we have the previous/next pagination links }} |
| 93 | + {{pagination}} --> |
| 94 | + |
| 95 | +</main> |
0 commit comments