forked from ourcodingclub/ourcodingclub.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
27 lines (27 loc) · 872 Bytes
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: page
title: Blog
permalink: /blog/
---
<!-- Slider Start -->
<section id="global-header">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="block">
<h1>CODING CLUB UPDATES</h1>
<b><p><big>Read about our experience with Coding Club and check out our tutorials. Each tutorial post includes instructions and a link to the Github repository from where you can download all files necessary to participate in our workshops remotely.</big></p></b>
</div>
</div>
</div>
</div>
</section>
{% for post in site.posts %}
<div class="post-area">
<a href="{{ post.url | prepend: site.baseurl }}" class="bold">{{ post.title }}</a>
<p class="post-date">{{ post.date | date_to_long_string }}</p>
<p>
{{ post.content | strip_html | truncatewords: 50 }}
</p>
</div>
{% endfor %}