Skip to content

Commit e56fb96

Browse files
committed
modular sections for vertical
1 parent d5063cd commit e56fb96

File tree

4 files changed

+46
-33
lines changed

4 files changed

+46
-33
lines changed

_includes/nh-test.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
<section class="hero-container {{vsecloop.color}}">
22
<div class="hero-inner grid">
33
<h2 class="hero-title col-1-1">{{vsecloop.title}}</h2>
4+
5+
<div class="vert-section">
6+
{% for paragraph in vsecloop.paragraphs %}
7+
8+
{% if paragraph.list %}
9+
<ul>
10+
{% for paragraphlist in paragraph.list %}
11+
<li>{{paragraphlist}}</li>
12+
{% endfor %}
13+
</ul>
14+
{% else %}
15+
<p>{{paragraph}}</p>
16+
{% endif %}
17+
18+
{% endfor %}
19+
</div>
20+
421
</div>
522
</section>
623
<!-- /.careers-container -->

_layouts/vertical.html

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
<section class="hero-container {{ page.colour }}">
88
<div class="hero-inner grid">
9-
<h1 class="hero-title col-1-1">{% if page.hero-title %}{{page.hero-title}}{% else %}{{page.title}}{% endif %}</h1>
109
{% if page.hero-subtitle %}
1110
<p class="hero-summary col-1-1">{{page.hero-subtitle}}</p>
1211
{% endif %}
@@ -21,38 +20,6 @@ <h1 class="hero-title col-1-1">{% if page.hero-title %}{{page.hero-title}}{% els
2120
</div>
2221
</section>
2322

24-
<section class="hero-container {{ page.firstitem-colour }}">
25-
<div class="hero-inner grid">
26-
<h1 class="hero-title col-1-1">{% if page.hero-title %}{{page.firstitem-title}}{% else %}{{page.title}}{% endif %}</h1>
27-
<p class="hero-summary col-1-1">{{page.firstitem-body}}</p>
28-
We discovered:
29-
{% if page.firstitem-list %}
30-
<ul class="col-1-1">
31-
{% for list_item in page.firstitem-list %}
32-
<li>{{ list_item }}</li>
33-
{% endfor %}
34-
</ul>
35-
{% endif %}
36-
<p class="hero-summary col-1-1">{{page.firstitem-2ndpara}}</p>
37-
</div>
38-
</section>
39-
40-
<section class="hero-container {{ page.item-2-colour }}">
41-
<div class="hero-inner grid">
42-
<h1 class="hero-title col-1-1">{% if page.hero-title %}{{page.item-2-title}}{% else %}{{page.title}}{% endif %}</h1>
43-
<p class="hero-summary col-1-1">{{page.item-2-body}}</p>
44-
We discovered:
45-
{% if page.item-2-list %}
46-
<ul class="col-1-1">
47-
{% for list_item in page.item-2-list %}
48-
<li>{{ list_item }}</li>
49-
{% endfor %}
50-
</ul>
51-
{% endif %}
52-
<p class="hero-summary col-1-1">{{page.item-2-2ndpara}}</p>
53-
</div>
54-
</section>
55-
5623
{% for vsecloop in page.sections %}
5724
<!-- <div>{{ nhtest }}</div> -->
5825
{% assign vsection = vsecloop %}

_sass/pages/_vertical.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@
99
border-radius: 400px;
1010
border: solid darken($pink, 10%) 8px;
1111
}
12+
13+
.vert-section {
14+
color: white;
15+
}

vertical-health.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,33 @@ item-2-2ndpara: We believe that by formalising a symbiotic relationship between
4444
sections:
4545
- title: Patient Centricity
4646
color: blue
47+
paragraphs:
48+
- Health care provision has historically been designed around moving patients through a system as efficiently as possible.
49+
- In our primary research with cancer patients we discovered that this top-down approach is not working efficiently for the very people it is meant to serve.
50+
- list:
51+
- a
52+
- b
53+
- c
54+
- We believe there are numerous opportunities to realise cost-savings, improve patient experience and life expectancies by considering health care as a network around individuals rather than asking a patient to pass through unconnected silos.
55+
4756
- title: Smart Research
4857
color: pink
58+
paragraphs:
59+
- In our interactions with the Health sector we have noticed that Research Scientists are increasingly using Computer Science to accelerate processes and discovery and to reduce costs.
60+
- list:
61+
- Research Scientists are developing programming skills.
62+
- Organisations are buying misplaced off-the-shelf data products.
63+
- Big Data is being widely espoused but is poorly understood.
64+
- An emerging discipline of data visualisation.
65+
- We believe that by formalising a symbiotic relationship between the two disciplines of Research Science and Computer Science organisations can realise cost-savings, shorten discovery cycles and deliver a Smart Research capability.
66+
- Furthermore for publicly funded organisations and charities we advocate an Open Data Policy where research data is made available to third-parties by default.
67+
- We believe that unlocking new meaning from data through openness and collaboration has the potential to accelerate discovery and understanding.
68+
69+
- title: Bottom-up Innovation
70+
color: aqua
71+
paragraphs:
72+
- To date Government Institutions, Charities and Pharmaceuticals have conceived of digital innovation from a top-down perspective. Simply put large, monolithic organisations struggle to innovate at the speed of the open market. Top-down innovation is also extremely risky, often resulting in high profile failures like the NHS Patient Record system.
73+
- We believe by starting small and involving users early and often in the process that innovation projects stand a better chance of success. Gradually, we believe large organisations can learn to innovate like the open market.
4974

5075
---
5176

0 commit comments

Comments
 (0)