-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
54 lines (53 loc) · 1.93 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
---
title: FINOS FDC3 App Directory
description: "List of apps"
layout: default
---
<main>
{% for record in site.apps %}
{% if (record.include) %}
{% assign app = record.data %}
<article class="implementation">
<header class="implementation-metadata">
<div class="title-and-publisher">
<div class="title">{{ app.title }} </div>
<div class="publisher">{{ app.publisher }}</div>
</div>
{% if app.icons[0] %}
<div class="type icons">
{% for icon in app.icons %} <img class="icon" src="{{ icon.src }}" title="{{ icon.label }}" /> {% endfor %}
</div>
{% endif %}
</header>
<section class="implementation-details">
<div class="description">
<div class="infoLinks">
<a href="mailto:{{ app.supportEmail }}" class="button">Support</a>
<a href="mailto:{{ app.contactEmail }}" class="button">Contact </a>
{% for d in app.details %}
<a href="{{ d.url }}" class="button">Details</a>
{% endfor %}
<a href="{{ site.baseurl }}/v2/apps/{{ app.appId }}" class="button">AppD Record </a>
</div>
<div class="prose">{{ app.description }}</div>
</div>
<div class="screenshots">
{% for ss in app.screenshots %}
<img src="{{ss.src }} " title="{{ss.label }}" id="screenshot-{{ forloop.index }}"
class="screenshot {% if forloop.first %}visible{% endif %}" />
{% endfor %}
</div>
<div class="description">
<div class="badges">
{% for c in app.categories %} <a href="#" class="button badge">{{ c }} </a> {% endfor %}
</div>
</div>
</section>
<footer class="implementation-metadata">
<small class="version">Version: {{ app.version }}</small> <a href="apps/{{ app.id }}">View Appd Record</a> <a href="{{ app.moreInfo }}">More
Info</a>
</footer>
</article>
{% endif %}
{% endfor %}
</main>