diff --git a/_includes/tutorials.html b/_includes/tutorials.html new file mode 100644 index 00000000..cb8b2c10 --- /dev/null +++ b/_includes/tutorials.html @@ -0,0 +1,19 @@ +
+
+

Tutoriais

+
+ tutoriais +
+ + {% for post in site.posts %} + {% if post.type == "tutorial" %} +
{{ post.title }} | {{ post.date | date: "%b %-d, %Y"}}
+

{{ post.description }}

+ {% endif %} + {% endfor %} + +

+ + {% include archive.html %} +
+
diff --git a/tutorials.html b/tutorials.html index 547782da..6af950ff 100644 --- a/tutorials.html +++ b/tutorials.html @@ -4,18 +4,4 @@ title: Tutorials --- -
-
-

Tutoriais

-
- tutoriais -
- - {% for post in site.posts %} - {% if post.type == "tutorial" %} -
{{ post.title }} | {{ post.date | date: "%b %-d, %Y"}}
-

{{ post.description }}

- {% endif %} - {% endfor %} -
-
+{% include tutorials.html %}