forked from TailorDev/manifesto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 936 Bytes
/
index.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
---
layout: default
title: Open Science Company Manifesto
---
{% for p in site.pages %}
{% if p.url contains '/version/' and p.current %}
{{ p.content }}
{% endif %}
{% endfor %}
<div class="clear"></div>
<h3 id="versions">Versions</h3>
<ul class="versions">
{% for p in site.pages %}
{% if p.url contains '/version/' %}
<li class="version">
{% assign name = p.name|replace:'.md','' %}
{% if p.current %}
<a href="{{ p.url }}"><strong>{{ name }}</strong></a>
{% else %}
<a href="{{ p.url }}">{{ name }}</a>
{% endif %}
created on {{ p.created_at|date_to_long_string }}
{% if p.status %}(status: {{ p.status }}){% endif %}
</li>
{% endif %}
{% endfor %}
</ul>
<h3 id="adopters">Adopters</h3>
<ul class="adopters">
{% for adopter in site.data.adopters %}
<li class="adopter">
<a href="{{ adopter.url }}">{{ adopter.name }}</a>
</li>
{% endfor %}
</ul>