This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
1670 lines (1299 loc) · 58.8 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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 8 ]><html lang="en" id="jsPage" class="no-js ie8"><![endif]-->
<html lang="en" id="jsPage" class="no-js">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0" />
<title>Nightingale</title>
<script>
// Check JavaScript
(function(){
var page = document.getElementById('jsPage');
page.classList.remove('no-js');
}());
</script>
<link rel="stylesheet" href="./dist/main.css" />
<link rel="shortcut icon" href="/favicon.png">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!-- Menus, sub-menus, burger-menu, etc. -->
<script type="text/javascript" src="js/menus.js" async></script>
<style>
h2[id]::before,
h3[id]::before,
h4[id]::before,
h5[id]::before,
h6[id]::before {
content: "#";
display: inline-block;
text-align: center;
width: 1em;
margin-left: -1em;
opacity: 0;
}
h2[id]:hover::before,
h3[id]:hover::before,
h4[id]:hover::before,
h5[id]:hover::before,
h6[id]:hover::before,
h2[id]:target::before,
h3[id]:target::before,
h4[id]:target::before,
h5[id]:target::before,
h6[id]:target::before {
opacity: 0.25;
}
.c-color-grid {
display: flex;
flex-wrap: wrap;
margin-left: 0;
padding: 0;
list-style: none;
}
.c-color-grid > li {
flex-grow: 1;
padding-top: 5.882352941%;
background: red;
}
.u-demo-grid {
text-align: center;
background-color: #ff8;
}
.u-demo-sprite {
padding: 15px;
background-color: #e8edee;
}
</style>
</head>
<body>
<div class="c-ribbon c-ribbon--expandable">
<div class="o-wrapper">
<details class="c-ribbon__body">
<summary><b>In partnership with:</b> NHS Health Education England – The Princess Alexandra Hospital NHS Trust – South Essex Partnership University NHS Foundation Trust – Virgin Health Care – Bupa – Simplyhealth – Pruhealth – Department of Health.</summary>
</details>
</div>
</div>
<div class="c-ribbon c-ribbon--beta">
<div class="o-wrapper">
<strong class="c-ribbon__tag">Beta</strong>
<strong class="c-ribbon__body">This page is part of a new service – your <a href="#0" target="_blank">feedback</a> will help us to improve it.</strong>
</div>
</div>
<header class="c-page-header" id="jsPageHeader">
<div class="o-wrapper c-page-header__inner">
<a href="#0" class="c-page-header__lockup">
<img src="./assets/img/logos/[email protected]" alt="NHS Leadership Academy" width="245" height="72" class="c-page-header__logo" />
</a>
<div class="c-page-header__controls">
<!-- Search box -->
<form class="c-search c-page-header__search" role="search" method="get" action="/">
<input type="search" class="c-form-input c-search__input" placeholder="Search" value="" name="s">
<button class="c-search__btn">
<span class="c-sprite c-sprite--magnifying-glass-rev">Search</span>
</button>
</form>
<button class="c-nav-trigger" id="jsNavTrigger" aria-label="menu" data-expands="#jsNav">☰</button>
<nav class="c-nav-primary c-page-header__nav" id="primaryNav">
<ul class="c-nav-primary__list" id="jsNav">
<li class="c-nav-primary__item">
<a href="#0" class="c-nav-primary__link">Item One</a>
</li>
<li class="c-nav-primary__item">
<a href="#0" class="c-nav-primary__link">Item Two</a>
</li>
<li class="c-nav-primary__item">
<a href="#0" class="c-nav-primary__link">Item Three</a>
</li>
<li class="c-nav-primary__item">
<button class="c-nav-primary__link">Sub nav</button>
<nav class="c-nav-primary__sub jsNavSub">
<div class="o-wrapper">
<div class="o-layout">
<div class="o-layout__item u-6/12@lg">
<h4 class="u-margin-bottom-small">This is a new sub nav area</h4>
<p class="u-margin-bottom-small"><small>Menu short description that introduces the user to the list
within this dropdown menu.</small></p>
<p class="u-margin-bottom-small">
<a href="#0" class="c-btn c-btn--primary c-btn--full">Button</a>
</p>
</div><!-- /.o-layout__item -->
<div class="o-layout__item u-6/12@lg">
<ul class="c-nav-primary__sub-links">
<li>
<a href="#0">Sub Link 1</a>
</li>
<li>
<a href="#0">Sub Link 2</a>
</li>
<li>
<a href="#0">Sub Link 3</a>
</li>
<li>
<a href="#0">Sub Link 4</a>
</li>
</ul>
</div><!-- /.o-layout__item -->
</div><!-- /.o-layout -->
</div><!-- /.o-wrapper -->
</nav>
</li>
<li class="c-nav-primary__item">
<a href="#0" class="c-nav-primary__link">Item Five</a>
</li>
</ul>
<!-- login/out button -->
<a class="c-btn c-btn--primary c-btn--natural c-page-header__login" href="/">Log out</a>
</nav>
</div>
</div>
</header>
<div class="o-wrapper">
<div class="c-ribbon c-ribbon--page-specific c-ribbon--expandable">
<div class="o-wrapper">
<details class="c-ribbon__body">
<summary><b>In partnership with:</b> NHS Health Education England – The Princess Alexandra Hospital NHS Trust – South Essex Partnership University NHS Foundation Trust – Virgin Health Care – Bupa – Simplyhealth – Pruhealth – Department of Health.</summary>
</details>
</div>
</div>
<nav class="c-breadcrumb">
<ol class="c-breadcrumb__list">
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link c-sprite c-sprite--home">Home</a></li>
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link">Breadcrumb 01</a></li>
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link is-current">Breadcrumb 02</a></li>
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link">Breadcrumb 03</a></li>
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link">Breadcrumb 04</a></li>
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link">Breadcrumb 05</a></li>
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link">Breadcrumb 06</a></li>
<li class="c-breadcrumb__item"><a href="#0" class="c-breadcrumb__link">Breadcrumb 07</a></li>
</ol>
</nav>
<h1>Nightingale</h1>
<p class="c-leading-paragraph">Welcome to the NHS Leadership Academy UI Toolkit and front-end
framework, codename <b>Nightingale</b>.</p>
<hr class="c-divider" />
<div class="o-layout o-layout--wide">
<div class="o-layout__item u-4/12@lg">
<h3><a href="/">Header Link</a></h3>
<p>With some supporting text</p>
</div><!-- o-layout__item -->
<div class="o-layout__item u-4/12@lg">
<h3><a href="/">Header Link</a></h3>
<p>With some supporting text</p>
</div><!-- o-layout__item -->
<div class="o-layout__item u-4/12@lg">
<h3><a href="/">Header Link</a></h3>
<p>With some supporting text</p>
</div><!-- o-layout__item -->
</div><!-- o-layout -->
<hr class="c-divider" />
<div class="o-layout o-layout--wide">
<div class="o-layout__item u-4/12@lg">
<div class="c-card c-card--information">
<h4>Call to Action Card</h4>
<small><p>This is your chance<br>
Don't miss out</p>
<p>Another paragraph of text to test the layout.</p>
<p>And another.</p></small>
<p><a href="Array" class="c-btn c-btn--primary c-btn--full">Apply Now!</a></p>
</div><!-- c-card -->
</div><!-- o-layout__item -->
<div class="o-layout__item u-4/12@lg">
<div class="c-card c-card--information">
<h4>Call to Action Card</h4>
<small><p>This is your chance<br>
Don't miss out</p></small>
<p><a href="Array" class="c-btn c-btn--primary c-btn--full">Apply Now!</a></p>
</div><!-- c-card -->
</div><!-- o-layout__item -->
<div class="o-layout__item u-4/12@lg">
<div class="c-card c-card--information">
<h4>Call to Action Card</h4>
<small><p>This is your chance<br>
Don't miss out</p></small>
<p><a href="Array" class="c-btn c-btn--primary c-btn--full">Apply Now!</a></p>
</div><!-- c-card -->
</div><!-- o-layout__item -->
</div><!-- o-layout -->
<hr class="c-divider" />
<div class="o-layout o-layout--wide">
<main class="o-layout__item u-8/12@lg">
<h2 id="drag-and-drop">Drag & Drop</h2>
<form class="c-file-upload">
<h3 class="c-file-upload__title">Drag and Drop Files Here…</h3>
<small class="c-file-upload__or">or</small>
<label class="c-btn c-btn--submit c-file-upload__btn" for="file-upload">Browse Files</label>
<input type="file" id="file-upload" class="c-file-upload__input" />
</form>
<h2 id="drag-and-drop">Drag & Drop</h2>
<form class="c-file-upload is-active">
<h3 class="c-file-upload__title">Drag and Drop Files Here…</h3>
<small class="c-file-upload__or">or</small>
<label class="c-btn c-btn--submit c-file-upload__btn" for="file-upload">Browse Files</label>
<input type="file" id="file-upload" class="c-file-upload__input" />
</form>
<h2 id="cards">Cards</h2>
<div class="c-card c-card--information">
<h6>This is an information card</h6>
<small>I hope you find it informative</small>
</div>
<div class="c-card c-card--alert">
<h6>This is an alert!</h6>
<small>I hope you're paying attention</small>
</div>
<hr class="c-divider" />
<h2 id="comments">Comments</h2>
<p>Default Comment form style:</p>
<form>
<fieldset class="c-form-region">
<ul class="c-form-list">
<li>
<label for="comments2">
Leave a Comment
</label>
<textarea rows="5" cols="50" class="c-form-input c-form-comment" id="comments2" placeholder="Enter your comment here…"></textarea>
</li>
<li class="c-form-region__reveal">
<label for="name2">
Full Name (Required)
</label>
<input type="text" class="c-form-input" id="name2" placeholder="Jane Smith">
</li>
<li class="c-form-region__reveal">
<label for="email2">
Email Address
<small>Email is used only for verification and will not be published</small>
</label>
<input type="email" class="c-form-input" id="email2" placeholder="[email protected]" />
</li>
<li class="c-form-region__reveal">
<button class="c-btn c-btn--submit c-btn--full">Submit</button>
</li>
<li class="c-form-region__reveal">
<button class="c-btn c-btn--secondary c-btn--full">Cancel</button>
</li>
</ul>
</fieldset>
</form>
<p>Once <code>.is-active</code> class is added to the regions and
<code>textarea</code> (needs applying on a per-implementation
basis):</p>
<form>
<fieldset class="c-form-region is-active">
<ul class="c-form-list">
<li>
<label for="comments3">
Leave a Comment
</label>
<textarea rows="5" cols="50" class="c-form-input c-form-comment is-active" id="comments3" placeholder="Enter your comment here…">Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</textarea>
</li>
<li class="c-form-region__reveal">
<label for="name3">
Full Name (Required)
</label>
<input type="text" class="c-form-input" id="name3" placeholder="Jane Smith">
</li>
<li class="c-form-region__reveal">
<label for="email3">
Email Address
<small>Email is used only for verification and will not be published</small>
</label>
<input type="email" class="c-form-input" id="email3" placeholder="[email protected]" />
</li>
<li class="c-form-region__reveal">
<button class="c-btn c-btn--submit c-btn--full">Submit</button>
</li>
<li class="c-form-region__reveal">
<button class="c-btn c-btn--secondary c-btn--full">Cancel</button>
</li>
</ul>
</fieldset>
</form>
<h3>4 Comments</h3>
<ol class="c-comments">
<li class="c-comments__item">
<header class="c-comment__meta">
<a href="#0" class="c-comment__author">Paul Design</a>
<time class="c-comment__date">2017-08-15</time>
</header>
<div class="c-comments__content">
<p>There are number of instructions to be followed at the time of
refilling an inkjet cartridge. So whenever your printer ink runs
dry you need to follow the below steps for inkjet cartridge
refill.</p>
</div>
<footer class="c-comments__footer">
<a href="#0" class="c-comments__reply">Reply to comment</a>
</footer>
<ol class="c-comments c-comments--replies">
<li class="c-comments__item">
<header class="c-comment__meta">
<a href="#0" class="c-comment__author">Paul Design</a>
<time class="c-comment__date">2017-08-15</time>
</header>
<div class="c-comments__content">
<p>Many centuries ago, man was able to tell the time by
looking at the sun and its position in the sky. Then came the
sundial and finally the clocks and watches.</p>
</div>
<footer class="c-comments__footer">
<a href="#0" class="c-comments__reply">Reply to comment</a>
</footer>
<ol class="c-comments c-comments--replies">
<li class="c-comments__item">
<header class="c-comment__meta">
<a href="#0" class="c-comment__author">Paul Design</a>
<time class="c-comment__date">2017-08-15</time>
</header>
<div class="c-comments__content">
<p>I’m a little teapot short and stout. Here is my
handle. Here is my spout. When I get all steamed up,
Hear me shout! Just tip me over And pour me out.</p>
<p>I’m a clever teapot, yes it’s true. Here’s an example
of what I can do. I can turn my handle to a spout. Just
tip me over and pour me out</p>
</div>
</li>
</ol>
</li>
<li class="c-comments__item">
<header class="c-comment__meta">
<a href="#0" class="c-comment__author">Paul Design</a>
<time class="c-comment__date">2017-08-15</time>
</header>
<div class="c-comments__content">
<p>Successful businesses can have many things in common, today
we’ll look at the big ‘R’of recognition and how a digital
advertising may help.</p>
</div>
</li>
</ol>
</li>
</ol>
<hr class="c-divider" />
<h2 id="tabs">Tabs</h2>
<ul class="c-tabs">
<li class="c-tabs__item">
<a href="#0" class="c-tabs__link">
<span class="c-sprite c-sprite--menu c-tabs__icon"></span>
<span class="c-tabs__text">Overview</span>
</a>
</li>
<li class="c-tabs__item">
<a href="#0" class="c-tabs__link is-current">
<span class="c-sprite c-sprite--info c-tabs__icon"></span>
<span class="c-tabs__text">Structure</span>
</a>
</li>
<li class="c-tabs__item">
<a href="#0" class="c-tabs__link">
<span class="c-sprite c-sprite--currency c-tabs__icon"></span>
<span class="c-tabs__text">Faculty</span>
</a>
</li>
<li class="c-tabs__item">
<a href="#0" class="c-tabs__link is-disabled">
<span class="c-sprite c-sprite--user c-tabs__icon"></span>
<span class="c-tabs__text">Details</span>
</a>
</li>
<li class="c-tabs__item">
<a href="#0" class="c-tabs__link">
<span class="c-sprite c-sprite--home c-tabs__icon"></span>
<span class="c-tabs__text">Apply</span>
</a>
</li>
</ul>
<hr class="c-divider" />
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada
fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae,
ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam
egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend
leo.</p>
<blockquote class="uote">
<p>Many centuries ago, man was able to tell the time by looking at the
sun and its position in the sky. Then came the sundial and finally
clocks and watches.</p>
<span class="uote__meta">
<b>Quote author</b><br />
Author role<br />
Organisation
</span>
</blockquote>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada
fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae,
ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam
egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend
leo.</p>
<h2 id="media">Media</h2>
<figure class="c-media">
<div class="c-media__masthead">
<img src="./assets/img/content/photo.jpg" alt="" class="c-media__media" />
</div>
</figure>
<hr class="c-divider" />
<figure class="c-media">
<div class="c-media__masthead">
<img src="./assets/img/content/photo.jpg" alt="" class="c-media__media" />
<nav class="c-media__controls">
<a href="#0" class="c-media__control"><span class="c-sprite c-sprite--dot-inactive">Slide 1</span></a>
<a href="#0" class="c-media__control"><span class="c-sprite c-sprite--dot-inactive">Slide 2</span></a>
<a href="#0" class="c-media__control"><span class="c-sprite c-sprite--dot">Slide 3</span></a>
<a href="#0" class="c-media__control"><span class="c-sprite c-sprite--dot-inactive">Slide 4</span></a>
<a href="#0" class="c-media__control"><span class="c-sprite c-sprite--dot-inactive">Slide 5</span></a>
</nav>
</div>
</figure>
<hr class="c-divider" />
<figure class="c-media">
<div class="c-media__masthead c-media__masthead--overlay">
<img src="./assets/img/content/photo.jpg" alt="" class="c-media__media--overlay" />
</div>
<figcaption class="c-media__content">Image with overlay</figcaption>
</figure>
<hr class="c-divider" />
<aside class="c-media">
<div class="c-media__masthead">
<img src="./assets/img/content/photo.jpg" alt="" class="c-media__media" />
<img src="./assets/img/logos/logo-jenner.png" alt="Edward Jenner Programme" class="c-media__emblem" />
</div>
</aside>
<hr class="c-divider" />
<aside class="c-media">
<div class="c-media__masthead">
<img src="./assets/img/content/photo.jpg" alt="" class="c-media__media" />
<button class="c-sprite c-sprite--play c-media__emblem"></button>
</div>
<div class="c-media__content">
<details class="c-media__reveal" open>
<summary class="c-media__reveal-title">Transcript</summary>
<div class="c-media__scroller">
<p>In today’s net-savvy world it has become common for any
business to have a website which they use mostly for advertising
their products and services. With the advent of search engines
it has become even easier for the customers to search for the
stuff online.</p>
<p>For a website to be successful its link should land in the
first three pages which the search engine brings and the rank of
the page should be high which means many visitors come to the
site. This can be achieved by applying search engine
optimization or popularly known as SEO. This is a marketing
strategy which increases the quality and quantity of traffic
flow to a particular website via search engines. SEO not only
affects the search engine results, but also image search, video
search and industry specific vertical search engines. It
determines how a search for it. This is a point of controversy,
as only the big businesses will be able to increase the number
of hits of their page but not the small business who might be
having a better quality page.</p>
<p>Google Ad Words explores ads which have words typed in the
search box by the surfer. The Million Dollar Homepage started
the concept of Pixel advertising, which is a graphical kind of
advertising. Depending on the pixels, the space is sold to the
advertiser. Keyword advertising involves advertisers who buy
URLs of a site and place their ads at that location. Thus SEO is
a market in its own which is yielding great results for
businesses on Internet.</p>
</div>
</details>
</div>
</aside>
<hr class="c-divider" />
<h2 id="icons">Icons</h2>
<p class="u-demo-sprite">
<span class="c-sprite c-sprite--dot"></span>
<span class="c-sprite c-sprite--dot-inactive"></span>
<br />
<span class="c-sprite c-sprite--new-window"></span>
<span class="c-sprite c-sprite--new-window-rev"></span>
<br />
<span class="c-sprite c-sprite--arrow-down"></span>
<span class="c-sprite c-sprite--arrow-up"></span>
<span class="c-sprite c-sprite--arrow-left"></span>
<span class="c-sprite c-sprite--arrow-right"></span>
<span class="c-sprite c-sprite--arrow-down-rev"></span>
<span class="c-sprite c-sprite--arrow-up-rev"></span>
<span class="c-sprite c-sprite--arrow-left-rev"></span>
<span class="c-sprite c-sprite--arrow-right-rev"></span>
<br />
<span class="c-sprite c-sprite--pencil"></span>
<span class="c-sprite c-sprite--currency"></span>
<span class="c-sprite c-sprite--speaker"></span>
<span class="c-sprite c-sprite--info"></span>
<span class="c-sprite c-sprite--user"></span>
<span class="c-sprite c-sprite--menu"></span>
<span class="c-sprite c-sprite--home"></span>
<span class="c-sprite c-sprite--close"></span>
<span class="c-sprite c-sprite--pencil-rev"></span>
<span class="c-sprite c-sprite--currency-rev"></span>
<span class="c-sprite c-sprite--speaker-rev"></span>
<span class="c-sprite c-sprite--info-rev"></span>
<span class="c-sprite c-sprite--user-rev"></span>
<span class="c-sprite c-sprite--menu-rev"></span>
<span class="c-sprite c-sprite--close-rev"></span>
<br />
<span class="c-sprite c-sprite--prev-blue"></span>
<span class="c-sprite c-sprite--next-blue"></span>
<span class="c-sprite c-sprite--prev-grey"></span>
<span class="c-sprite c-sprite--next-grey"></span>
<br />
<span class="c-sprite c-sprite--close-large"></span>
<span class="c-sprite c-sprite--hamburger"></span>
<span class="c-sprite c-sprite--magnifying-glass"></span>
<span class="c-sprite c-sprite--magnifying-glass-rev"></span>
<br />
<span class="c-sprite c-sprite--facebook"></span>
<span class="c-sprite c-sprite--twitter"></span>
<span class="c-sprite c-sprite--linkedin"></span>
<br />
<span class="c-sprite c-sprite--add"></span>
<span class="c-sprite c-sprite--play"></span>
</p>
<hr class="c-divider" />
<h2 id="ribbons">Ribbons</h2>
<div class="c-ribbon u-margin-bottom" id="jsCookieRibbon">
<div class="o-wrapper">
<div class="c-ribbon__actions">
<button class="c-sprite c-sprite--close-rev" id="jsCookieBtn">Close</button>
</div>
<strong class="c-ribbon__body">This website uses cookies.</strong>
</div>
</div>
<!-- Cookies Ribbon -->
<script type="text/javascript" src="js/cookies.js" async></script>
<div class="c-ribbon c-ribbon--alpha u-margin-bottom">
<div class="o-wrapper">
<strong class="c-ribbon__tag">Alpha</strong>
<strong class="c-ribbon__body">Pellentesque habitant morbi tristique
senectus et netus et malesuada.</strong>
</div>
</div>
<div class="c-ribbon c-ribbon--beta u-margin-bottom">
<div class="o-wrapper">
<strong class="c-ribbon__tag">Beta</strong>
<strong class="c-ribbon__body">Pellentesque habitant morbi tristique
senectus <a href="#0" target="_blank">netus</a> et malesuada.</strong>
</div>
</div>
<div class="c-ribbon c-ribbon--expandable u-margin-bottom">
<div class="o-wrapper">
<details class="c-ribbon__body">
<summary><b>In partnership with:</b> NHS Health Education England – The Princess Alexandra Hospital NHS Trust – South Essex Partnership University NHS Foundation Trust – Virgin Health Care – Bupa – Simplyhealth – Pruhealth – Department of Health.</summary>
</details>
</div>
</div>
<hr class="c-divider" />
<h2 id="articles">Articles (Excerpts)</h2>
<article class="c-article">
<header>
<h2 class="c-article__header"><a href="/">Trumping Care</a></h2>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a class="c-comment__author" href="/">John Deffenbaugh</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<time class="c-comment__date" datetime="2017-07-24T20:15:40+00:00">24/7/2017</time>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
</header>
<div class="c-article__content">
<img src="./assets/img/content/photo.jpg" alt="" class="c-media__media">
<p>The NHS Leadership Academy works with a world-class expert faculty of global business leaders, educators and practitioners. Our programme [...]</p>
</div><!-- .c-article__content -->
<footer>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a href="/">5 Comments</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<a href="/">Read More</a>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
<a href="/">Edit "Trumping Care"</a>
</footer>
</article><!-- .c-article -->
<hr class="c-divider" />
<article class="c-article">
<header>
<h2 class="c-article__header"><a href="/">Junior doctors should start leadership development</a></h2>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a class="c-comment__author" href="/">Rebecca Crosby</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<time class="c-comment__date" datetime="2017-07-24T20:15:40+00:00">24/7/2017</time>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
</header>
<div class="c-article__content">
<p>Junior doctor Rebecca Crosby discusses why leadership is so crucial in critical situations [...]</p>
</div><!-- .c-article__content -->
<footer>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a href="/">3 Comments</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<a href="/">Read More</a>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
</footer>
</article><!-- .c-article -->
<hr class="c-divider" />
<h2 id="articles">Articles (Titles only)</h2>
<article class="c-article">
<header>
<h2 class="c-article__header--titles-only"><a href="/">Trumping Care</a></h2>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a class="c-comment__author" href="/">John Deffenbaugh</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<time class="c-comment__date" datetime="2017-07-24T20:15:40+00:00">24/7/2017</time>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
</header>
<footer>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a href="/">5 Comments</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<a href="/">Read More</a>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
<a href="/">Edit "Trumping Care"</a>
</footer>
</article><!-- .c-article -->
<hr class="c-divider" />
<article class="c-article">
<header>
<h2 class="c-article__header--titles-only"><a href="/">Junior doctors should start leadership development</a></h2>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a class="c-comment__author" href="/">Rebecca Crosby</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<time class="c-comment__date" datetime="2017-07-24T20:15:40+00:00">24/7/2017</time>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
</header>
<footer>
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a href="/">3 Comments</a>
</div><!--o-layout--left-->
</div><!--o-layout__item-->
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<a href="/">Read More</a>
</div><!--o-layout--right-->
</div><!--o-layout__item-->
</div><!--o-layout-->
</footer>
</article><!-- .c-article -->
<hr class="c-divider" />
<header class="page-header">
<h1>Search Results: <span>leader</span></h1>
<p>203 Results found</p>
</header><!-- .page-header -->
<hr class="c-divider">
<article>
<header>
<h2 class="c-article__header"><a href="#" rel="bookmark">“It’s about becoming the type of leader that can benefit patients and staff beyond your immediate portfolio”</a></h2>
<div class="entry-meta">
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a class="c-comment__author" href="#">Louise Thompson</a>
</div>
</div>
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<a class="c-comment__date" href="#" rel="bookmark">31/01/2018</a>
</div>
</div>
</div>
</div>
</header>
<div class="c-article__content">
<p>Nye Bevan programme graduate and director of communications at Burton Hospitals NHS Foundation Trust, Louise Thompson, tells us how the programme has helped her to recognise her own value as a leader while keeping front line staff and patient focus at the centre of her thinking.</p>
</div>
<footer class="o-layout--right">
<a href="#">Read more</a>
</footer>
</article>
<br />
<article>
<header>
<h2 class="c-article__header"><a href="#" rel="bookmark">“As a leader, you need to make sure you’re approachable by anyone at any level in any organisation.”</a></h2>
<div class="entry-meta">
<div class="o-layout">
<div class="o-layout__item u-9/12@lg">
<div class="o-layout--left">
<a class="c-comment__author" href="#">Chris Pointon</a>
</div>
</div>
<div class="o-layout__item u-3/12@lg">
<div class="o-layout--right">
<a class="c-comment__date" href="#" rel="bookmark">21/07/2017</a>
</div>
</div>
</div>
</div>