-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·36 lines (32 loc) · 1.02 KB
/
index.html
File metadata and controls
executable file
·36 lines (32 loc) · 1.02 KB
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
28
29
30
31
32
33
34
35
36
---
layout: default
title: Learn Javascript and Node.js through books and tutorials
redirect_to: "http://makerlog.org"
---
<div class="main blog">
<div class="container">
<div class="inner-wrapper">
<div class="posts">
<h1>Recent posts:</h1>
{% for post in site.posts limit: 5 %}
{% if post.published and post.type == 'post' %}
<div class="post" id="{{ post.slug }}">
<div class="post-date">{{ post.date | date: "%-d %B %Y" }}</div>
<h2 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
<div class="post-excerpt">
{% if post.description %}
{{ post.description }}
{% else %}
{{ post.excerpt | strip_html | truncate: 250 }}
{% endif %}
</div>
</div>
{% endif %}
{% endfor %}
<a href="{{ site.baseurl }}/blog" class="button wide">More posts!</a>
</div>
</div>
</div>
</div>
<br>
<hr>