-
Notifications
You must be signed in to change notification settings - Fork 2
/
tutorials.html
executable file
·68 lines (68 loc) · 2.53 KB
/
tutorials.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
layout: blog
title: Tools
permalink: /tutorials/
---
<h1>Tutorial</h1>
<div class="hline"></div>
<h2>Scratch</h2>
<ul class="list-unstyled popular-posts">
{% for post in site.tutorials reversed %}
{% if post.categories[0] == 'Scratch' %}
<li>
<h4><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<em>Pubblicato il {{ post.date | date: "%m/%d/%Y" }}</em>
<p>{{post.excerpt}}</p>
</li>
{% endif %}
{% endfor %}
</ul>
<div class="hline"></div>
<h2>HTML/CSS</h2>
<ul class="list-unstyled popular-posts">
{% for post in site.tutorials reversed %}
{% if post.categories[0] == 'Html/Css' %}
<li>
<h4><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<em>Pubblicato il {{ post.date | date: "%m/%d/%Y" }}</em>
<p>{{post.excerpt}}</p>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>Javascript</h2>
<ul class="list-unstyled popular-posts">
{% for post in site.tutorials reversed %}
{% if post.categories[0] == 'Javascript' %}
<li>
<h4><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<em>Pubblicato il {{ post.date | date: "%m/%d/%Y" }}</em>
<p>{{post.excerpt}}</p>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>Minecraft</h2>
<ul class="list-unstyled popular-posts">
{% for post in site.tutorials reversed %}
{% if post.categories[0] == 'Minecraft' %}
<li>
<h4><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<em>Pubblicato il {{ post.date | date: "%m/%d/%Y" }}</em>
<p>{{post.excerpt}}</p>
</li>
{% endif %}
{% endfor %}
</ul>
<h2>Python</h2>
<ul class="list-unstyled popular-posts">
{% for post in site.tutorials reversed %}
{% if post.categories[0] == 'Python' %}
<li>
<h4><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h4>
<em>Pubblicato il {{ post.date | date: "%m/%d/%Y" }}</em>
<p>{{post.excerpt}}</p>
</li>
{% endif %}
{% endfor %}
</ul>