-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
239 lines (183 loc) · 8.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
---
layout: default
---
<header class="lg masthead text-center text-white d-flex">
<div class="container my-auto">
<div class="row">
<div class="col-lg-10 mx-auto">
<h1 class="text-uppercase text-dark">
<strong>The Apperta Foundation</strong>
</h1>
<hr>
</div>
<div class="col-lg-8 mx-auto">
<p class="text-faded text-dark mb-5">The Apperta Foundation is a clinician-led, not-for-profit company. Supported by public and independent healthcare providers and industry, we promote open systems and standards for digital health and social care.
We show how the delivery of health and social care can be transformed when data, information and knowledge in IT systems is open, shareable and computable.</p>
<a class="btn btn-primary btn-xl js-scroll-trigger" href="#about" target="_blank">Find Out More</a>
</div>
</div>
</div>
</header>
<section id="about" style="background-image:url(../img/blog-bg.png);background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover">
<div class="container">
<div class="row">
<div class="col-lg12 mx-auto text-center">
<h1 class="text-uppercase text-dark">
<strong>Who We Are</strong>
</h1>
<h2 class="section-heading text-white" style="padding-top: 20px">Our Directors</h2>
<hr class="light my-4">
{% assign rows = site.directors.size | divided_by: 3.0 | ceil %}
{% for i in (1..rows) %}
<div class="row" style="margin-top: 20px">
{% assign offset = forloop.index0 | times: 3 %}
{% for director in site.directors limit:3 offset:offset %}
<div class="col-sm-4">
<div class="card" style="height: 100%;">
<div class="card-header"><strong>{{ director.name }}</strong> <p><em>{{ director.title }}</em> </p></div>
<div class="card-body">
<img class="pull-left" src="{{ director.photo }}" style="height:100px; width:100px; margin:10px" alt="Card image cap">
<p class="card-text">{{ director.bio }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
</section>
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">What We Do</h2>
<hr class="my-4">
<p class="mb-0">We provide governance, support and funding to a range of programmes, all of which contribute to our mission to transform health and social care through open systems, standards and data. Some, like Code4Health, are a way of working collaboratively to generate innovation, others, like CKM are tools to help generate new data models, others again are specific pieces of software. All are linked by their fundamental commitment to the power of open digital platforms.</p><br>
</div>
</div>
{% assign rows = site.products.size | divided_by: 3.0 | ceil %}
{% for i in (1..rows) %}
<div class="row" style="margin-top: 20px">
{% assign offset = forloop.index0 | times: 3 %}
{% for product in site.products limit:3 offset:offset %}
<div class="col-sm-4 text-center">
<div class="card" style="height: 100%; padding-top:25px;">
<div class="card-header bg-white" style="border-bottom: none">
<img src="{{ product.photo }}" style="width:150px" class="text-primary mb-3 sr-icons">
</div>
<div class="card-body" style="border-bottom: none">
<h3 class="mb-3">{{ product.name }}</h3>
<p class="text-muted mb-0">{{ product.text }}</p>
</div>
<div class="card-footer bg-white" style="border-top: none">
<a class="btn btn-info" target="_blank" href="{{ product.aboutLink }}">Find Out More</a>
{% if product.sourceCodeLink %}
<a style="margin-top:10px;" class="btn btn-light" target="_blank" href="{{ product.sourceCodeLink }}">Source Code <img src="img/GitHub-Mark.png" style="height:20px;"></a>
{% else %}
<p style="height: 30px"></p>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</section>
<section id="governance" style="background-image:url(../img/blog-bg_blue.png);background-position:center center;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="text-uppercase text-dark">
<strong>Committees</strong>
</h1>
<hr class="my-4">
<p class="mb-0">Overall governance for the Apperta Foundation is provided by our Board of Directors; we also have committees who govern the development of particular services or products. As with our board, each sub-committee is clinically led to ensure work is always for the greatest benefit to patients and professionals.</p>
</div>
</div>
{% assign rows = site.subcommittees.size | divided_by: 3.0 | ceil %}
{% for i in (1..rows) %}
<div class="row" style="margin-top: 20px">
{% assign offset = forloop.index0 | times: 3 %}
{% for subcommittee in site.subcommittees limit:3 offset:offset %}
<div class="col-sm-4">
<div class="card" style="height: 100%;">
<div class="card-header"><strong>{{ subcommittee.name }}</strong></div>
<div class="card-body">
<img class="pull-left" src="{{ subcommittee.photo }}" style="height:100px; width:100px; margin:10px" alt="Card image cap">
<p class="card-text">{{ subcommittee.text }}</p>
{% if subcommittee.link == null %}
{% else %}
<center>
<a class="btn btn-info" href="{{ subcommittee.link }}" target="_blank">More Information</a></center>
{% endif %}
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</section>
<section id="documents">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h1 class="text-uppercase text-dark">
<strong>Key Documents</strong>
</h1>
<hr class="my-4">
<p class="mb-0">We want to begin articulating our view of the world in a set of documents that stimulate productive debate and generate useable ideas. They will appear here as they are released.</p>
</div>
</div>
{% assign rows = site.keydocuments.size | divided_by: 2.0 | ceil %}
{% for i in (1..rows) %}
<div class="row" style="margin-top: 20px">
{% assign offset = forloop.index0 | times: 2 %}
{% for keydocument in site.keydocuments limit:2 offset:offset %}
<div class="col-sm-6">
<div class="card" style="height: 100%; text-align: center;">
<div class="card-header" style="border-bottom: none"><strong>{{ keydocument.title }}</strong></div>
<div class="card-body" style="border-bottom: none">
<img class="pull-left" src="{{ keydocument.thumbnail }}" style="height:100px; width:100px; margin:10px" alt="Card image cap">
<p class="card-text">{{ keydocument.description }}</p>
</div>
<div class="card-footer bg-white" style="border-top: none">
<a class="btn btn-info" target="_blank" href="{{ keydocument.docURL }}">Read here</a>
<br>
<a style="margin-top:10px;" class="btn btn-light" target="_blank" href="{{ keydocument.feedbackURL }}">Give Feedback</a>
</div>
</div>
</div>
{% endfor %}
</div>
{% endfor %}
</div>
</section>
<!-- <section class="text-white" id="news" style="background-color:#1a5281">
<div class="container text-center">
<div class="col-lg-10 mx-auto">
<h2 class="mb-4">Featured Stories</h2>
<hr class="my-4">
<div class="row" id="stories">
{% for post in site.posts limit:3 %}
<div class="col-md-4">
<div class="thumbnail">
<a href="{{ post.url }}">
<img src="{{ post.thumbnail }}" style="width:100%" alt="{{ post.title }}">
<div class="caption text-white"><br>
<p>{{ post.title }}</p>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
</div>
</br>
<a class="btn btn-light btn-xl sr-button" href="{{ '/featured-stories/' }}">More Stories</a>
</div>
</div>
</section>-->