forked from richardjpope/standards-and-identifiers
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
57 lines (56 loc) · 2.56 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
55
56
57
---
layout: base
title: Data standards
description: Common data formats for charities during COVID-19
---
<section class="proposition-intro vertical-spacing-bottom-1-5 vertical-spacing-top-1-5">
<div class="grid-container">
<div class="column-full-width">
<div class="inner bottom-border-2">
<h1 class="heading-extra-large vertical-spacing-bottom-0-5">{{page.title}}</h1>
<p class="body-copy-large vertical-spacing-bottom">
Common data formats for charities during COVID-19
</p>
<p class="body-copy-medium">
By adopting common data formats and identifiers across the sector, charities can make their services easier to find, help government make better policy and funders ensure that money is being directed to the right place. This website is a includes practical guides about using different types of data.
</p>
<p class="body-copy-medium vertical-spacing-bottom">
Each standard is the result of a challenge set by people working in the sector. If you work with data in the charity sector and want to see a standard way for publishing or exchanging a particular type of data, <a href="{{site.baseurl}}/new.html">create a new challenge</a>. You can <a href="https://github.com/WeTheCatalysts/formats-and-identifiers/projects/1">see the open challenges here</a>.
</p>
</div>
</div>
</div>
</section>
<section class="proto-style-block typography vertical-spacing-top">
<div class="grid-container">
<div class="column-full-width">
<div class="inner bottom-border">
<h2>Adopted standards</h2>
<h3>Identifiers</h3>
<p>Identifiers are standard codes for identifying things like organisations, categories or places.</p>
<ul>
{% for page in site.pages %}
{% if page.type == "Identifier" %}
<li>
<a href="{{site.baseurl}}{{page.url}}">{{page.title}}</a>
<span class="label">{{page.status}}</span>
</li>
{% endif %}
{% endfor %}
</ul>
<h3>Formats</h3>
<p>Formats are standard ways of publishing data about a thing such as a service provided by a charity, or a funding award.</p>
<ul>
{% for page in site.pages %}
{% if page.type == "Format" %}
<li>
<a href="{{site.baseurl}}{{page.url}}">{{page.title}}</a>
<span class="label">{{page.status}}</span>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</div>
</section>