_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
32 lines
961 B
HTML
Executable File
32 lines
961 B
HTML
Executable File
---
|
|
layout: default
|
|
---
|
|
|
|
<div class="container" id="posts">
|
|
<div class="row">
|
|
{% for post in site.posts limit:4 %}
|
|
<div class="col-md-3">
|
|
<h2>{{ post.title }}</h2>
|
|
<p>
|
|
{{ post.content | truncatewords:20 }}
|
|
</p>
|
|
{% assign wordcount = post.content | number_of_words %}
|
|
{% if wordcount > 20 %}
|
|
<p><a class="btn btn-default" href="{{ post.url | prepend: site.baseurl }}" role="button">> Weiterlesen</a></p>
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<hr>
|
|
<div class="container" id="about">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<p>
|
|
Wir sind der örtliche Erfa-Kreis des Chaos Computer Clubs in Essen. Unsere Gesprächsthemen und Projekte reichen von Soft- und Hardware zu Datenschutz und Netzpolitik. <br><br>
|
|
Alle Interessierten sind herzlich zu unserem Treff, Mittwochs ab 19 Uhr und Sonntags ab 16 Uhr, eingeladen.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|