_includes
_layouts
_posts
_sass
bootstrap
css
fonts
images
js
media
.gitignore
README.md
_config.yml
android-chrome-144x144.png
android-chrome-192x192.png
android-chrome-36x36.png
android-chrome-48x48.png
android-chrome-72x72.png
android-chrome-96x96.png
android-chrome-manifest.json
apple-touch-icon-114x114.png
apple-touch-icon-120x120.png
apple-touch-icon-144x144.png
apple-touch-icon-152x152.png
apple-touch-icon-180x180.png
apple-touch-icon-57x57.png
apple-touch-icon-60x60.png
apple-touch-icon-72x72.png
apple-touch-icon-76x76.png
apple-touch-icon-precomposed.png
apple-touch-icon.png
blog.html
browserconfig.xml
favicon-16x16.png
favicon-32x32.png
favicon-96x96.png
favicon.ico
feed.xml
index.html
mstile-144x144.png
mstile-150x150.png
mstile-310x150.png
mstile-310x310.png
mstile-70x70.png
status.html
30 lines
820 B
HTML
30 lines
820 B
HTML
---
|
|
layout: default
|
|
---
|
|
|
|
{% for post in site.posts %}
|
|
{% if forloop.first == false %}
|
|
<hr>
|
|
{% endif %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12 post">
|
|
|
|
<header class="post-header">
|
|
<h1 class="post-title">{{ post.title }}</h1>
|
|
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</p>
|
|
</header>
|
|
|
|
<article class="post-content">
|
|
{{post.content}}
|
|
{% assign wordcount = post.content | number_of_words %}
|
|
{% if wordcount > 200 %}
|
|
<p><a class="btn btn-default" href="{{ post.url | prepend: site.baseurl }}" role="button">> Weiterlesen</a></p>
|
|
{% endif %}
|
|
</article>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|