File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ exclude:
3434 - cache
3535collections :
3636 hackers :
37+ tutoriales :
38+ output : true
3739what_we_do : >
3840 We are a self managed group that work together and believe in sharing
3941 knowledge to improve and grow.
Original file line number Diff line number Diff line change 1+ ---
2+ layout : default
3+ permalink : /tutoriales/
4+ title : turoriales
5+ ---
6+
7+ <div class =" home " >
8+ <ul class =" post-list " >
9+ {% for tutorial in site.tutoriales %}
10+ <li>
11+ <span class="post-meta">{{ tutorial.date | date: "%b %-d, %Y" }}</span>
12+
13+ <h2>
14+ <a class="post-link" href="{{ tutorial.url }}">{{ tutorial.title | escape }}</a>
15+ </h2>
16+ <p class="description">{% if tutorial.description %}{{ tutorial.description | strip_html | strip_newlines | truncate: 250 }}{% else %}{{ tutorial.content | strip_html | strip_newlines | truncate: 250 }}{% endif %}</p>
17+ <a href="{{ tutorial.url }}">Read more</a>
18+ </li>
19+ {% endfor %}
20+ </ul >
21+
22+ </div >
23+
You can’t perform that action at this time.
0 commit comments