forked from geoblacklight/geoblacklight.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
30 lines (28 loc) · 792 Bytes
/
tutorials.html
File metadata and controls
30 lines (28 loc) · 792 Bytes
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
---
layout: default
title: "Tutorials"
---
<div class='intro-text'>
<h1>Tutorials</h1>
<hr>
<ul class='unstyled'>
{% for tutorial in site.categories.tutorial %}
<li>
<h4>
<a class="" href="{{ tutorial.url | prepend: site.baseurl }}">{{ tutorial.title }}</a>
</h4>
<p class='post-snippet'>{{ tutorial.snippet }}</p>
<p class='post-metadata'>
{% if post.author %}
{% if post.author_link %}
<a href="{{tutorial.author_link}}">{{ tutorial.author }}</a>
{% else %}
{{ post.author }}
{% endif %}
{% endif %} – <span class='post-date'>{{ tutorial.date | date: "%B %-d, %Y" }}</span>
</p>
</li>
<hr>
{% endfor %}
</ul>
</div>