-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (45 loc) · 1.72 KB
/
index.html
File metadata and controls
46 lines (45 loc) · 1.72 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
37
38
39
40
41
42
43
44
45
46
---
---
<div class="jumbotron">
<p class="lead">Tools and guidance contributed by community members, in support of <a href="https://iatistandard.org">IATI</a> infrastructure, publishers and data users.</p>
</div>
<hr />
<div class="container">
<div class="card border-light">
{% for post in site.posts limit:1 %}
<div class="card-body">
<h5 class="card-title"><span class="badge badge-pill badge-primary">Blog post</span> <a class="link-unstyled" href="{{ post.url }}">{{ post.title }}</a></h5>
<h6 class="text-muted">{{ post.date | date_to_long_string: "ordinal" }}</h6>
<p>{{ post.excerpt | markdownify }}</p>
<p>
<a class="btn btn-primary" href="{{ post.url }}">Read post »</a>
</p>
</div>
{% endfor %}
</div>
</div>
<hr />
<div class="text-center">
<h2>Projects</h2>
</div>
<div class="album py-3">
<div class="container">
<div class="row">
{% for project in site.projects reversed %}
{% unless project.hidden %}
<div class="col-12">
<div class="card mb-4 shadow-sm">
<div class="card-header">
<h4 class="my-0 font-weight-normal"><a href="{{ project.link }}">{{ project.title }}</a></h4>
</div>
<div class="card-body">
<p>{{ project.content | remove: '<p>' | remove: '</p>' }}</p>
<p>{% for tag in project.tags %} <span class="badge badge-pill badge-secondary">{{ tag }}</span>{% endfor %}</p>
</div>
</div>
</div>
{% endunless %}
{% endfor %}
</div>
</div>
</div>