Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.

Commit 58cc7a6

Browse files
committed
Add first iteration of AWS page
1 parent 19037af commit 58cc7a6

File tree

1 file changed

+108
-0
lines changed

1 file changed

+108
-0
lines changed
+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
---
2+
title: "AWS Partnership"
3+
4+
services:
5+
introduction: "We have a wealth of experience delivering highly robust AWS infrastructure and digital services for sectors including Central and Local Government, Healthcare and Housing. We have exceptionally talented AWS certified people, delivering value on every project."
6+
7+
content:
8+
- title: "epetitions"
9+
image: "/assets/images/homepage/service-discover.jpg"
10+
text: "We built and support this important Government service: up to 100,000 signatures submitted and processed per hour"
11+
12+
- title: "V&A"
13+
image: "/assets/images/homepage/service-build.jpg"
14+
text: "Hosting and infrastructure delivery of new digital platform for world-leading Victoria and Albert Museum"
15+
16+
- title: "BoPS"
17+
image: "/assets/images/homepage/service-transform.jpg"
18+
text: "A user-centred Back-office Planning System (BoPS) for local authorities"
19+
20+
aws_hero:
21+
image: "/assets/images/services/approach-diagram.gif"
22+
23+
aws_reason:
24+
title: "Unboxed and AWS"
25+
text: "We have a proven track record of developing and supporting applications and infrastructure on AWS in both the private and public sector. We built the UK Petitions website (amongst others) on highly scalable AWS infrastructure
26+
We build pragmatic user-focused products, maximising return on investment, specialising in Ruby on Rails. Our CTO is one of 12 global Rails core members. We provide multidisciplinary teams to deliver across the full digital development lifecycle, including user research, service design, development, infrastructure, and ongoing support and maintenance."
27+
28+
case_studies:
29+
introduction: "Case Studies"
30+
content:
31+
- title: "epetitions"
32+
image: "/assets/images/homepage/service-discover.jpg"
33+
text: "We built and support this important Government service: up to 100,000 signatures submitted and processed per hour"
34+
35+
- title: "V&A"
36+
image: "/assets/images/homepage/service-build.jpg"
37+
text: "Hosting and infrastructure delivery of new digital platform for world-leading Victoria and Albert Museum"
38+
39+
- title: "BoPS"
40+
image: "/assets/images/homepage/service-transform.jpg"
41+
text: "A user-centred Back-office Planning System (BoPS) for local authorities"
42+
43+
---
44+
<header class="page-header page-header--bottom-margin">
45+
<div class="page-header__container">
46+
<h1 class="page-header__title">
47+
<%= current_page.data.title %>
48+
</h1>
49+
</div>
50+
</header>
51+
52+
<div class="container">
53+
<section class="component--full-page">
54+
<div class="diagram-container">
55+
<%= image_tag current_page.data.aws_hero.image, alt: "Graphic showing AWS services", class: "diagram", srcset: retina_srcset(current_page.data.aws_hero.image) %>
56+
</div>
57+
</section>
58+
<section class="services" data-header-waypoint>
59+
<p class="services__introduction">
60+
<%= current_page.data.services.introduction %>
61+
</p>
62+
<% current_page.data.content.each do |service| %>
63+
<div class="services-container__service">
64+
<div class="services-page-service">
65+
<%= image_tag service.image, alt: "Case study", srcset: retina_srcset(service.image) %>
66+
<h3 class="service__title">
67+
<%= service.title %>
68+
</h3>
69+
<p class="service__paragraph">
70+
<%= service.text %>
71+
</p>
72+
</div>
73+
</div>
74+
<% end %>
75+
</section>
76+
<section class="component--full-page">
77+
<div class="services-page-text-tile">
78+
<h2 class="text-tile__title">
79+
<%= current_page.data.aws_reason.title %>
80+
</h2>
81+
82+
<p class="text-tile__paragraph--with-spacing">
83+
<%= current_page.data.aws_reason.text %>
84+
</p>
85+
</div>
86+
</section>
87+
88+
<section class="case_studies" data-header-waypoint>
89+
<p class="services__introduction">
90+
<%= current_page.data.case_studies.introduction %>
91+
</p>
92+
<% current_page.data.case_studies.content.each do |case_study| %>
93+
<div class="services-container__service">
94+
<div class="services-page-service">
95+
<%= image_tag case_study.image, alt: "Case study", srcset: retina_srcset(case_study.image) %>
96+
<h3 class="service__title">
97+
<%= case_study.title %>
98+
</h3>
99+
<p class="service__paragraph">
100+
<%= case_study.text %>
101+
</p>
102+
</div>
103+
</div>
104+
<% end %>
105+
</section>
106+
</div>
107+
108+
<%= partial 'book_meeting' %>

0 commit comments

Comments
 (0)