forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdailystar.co.uk1.html
More file actions
1561 lines (1453 loc) · 117 KB
/
Copy pathdailystar.co.uk1.html
File metadata and controls
1561 lines (1453 loc) · 117 KB
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><!--OVOLABS_1 START-->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="http://images.dailystar-uk.co.uk/js/jquery.min.js"><\/script>');</script>
<script src='http://cdn.gigya.com/JS/socialize.js?apiKey=3_X9kTtJid0XPDQF-hGyrUNQzw17dkd4R4JN_hPZWT07ppRKkhxAOjte0w7k6v4Blr' type='text/javascript'></script>
<title>Ebola: Healthcare worker in Glasgow contracts Ebola | Latest News | Breaking News UK and Newspaper content | Daily Star</title>
<meta name="description" content="A FEMALE healthcare worker who contracted Ebola after returning to Glasgow from Sierra Leone has been named.">
<link rel="canonical" href="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone">
<meta name="og:description" content="A FEMALE healthcare worker who contracted Ebola after returning to Glasgow from Sierra Leone has...">
<meta name="twitter:description" content="A FEMALE healthcare worker who contracted Ebola after returning to...">
<meta property="og:title" content="Scot Ebola patient named: First pic of heroic nurse Pauline Cafferkey">
<meta name="twitter:title" content="Scot Ebola patient named: First pic of heroic nurse Pauline Cafferkey">
<meta property="twitter:account_id" content="20442930" />
<meta property="og:type" content="article">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:url" content="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone">
<meta name="twitter:url" content="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone">
<meta property="og:image" content="http://images.dailystar-uk.co.uk/dynamic/1/photos/904000/173x216/180904.jpg">
<meta name="twitter:image:src" content="http://images.dailystar-uk.co.uk/dynamic/1/photos/904000/620x/180904.jpg">
<meta property="og:site_name" content="Dailystar.co.uk">
<meta property="twitter:domain" content="dailystar.co.uk">
<meta property="og:language" content="en"/>
<meta name="news_keywords" content="headlines, world, Ebola, Scotland, Glasgow, Sierra Leone, West Africa, Africa, Ebola Virus, royal free hsopital, royal free hospital, royal free london ebola patient" />
<meta property="og:tags" content="headlines, world, Ebola, Scotland, Glasgow, Sierra Leone, West Africa, Africa, Ebola Virus, royal free hsopital, royal free hospital, royal free london ebola patient"/>
<meta property="article:tag" content="headlines"/>
<meta property="article:tag" content="world"/>
<meta property="article:tag" content="Ebola"/>
<meta property="article:tag" content="Scotland"/>
<meta property="article:tag" content="Glasgow"/>
<meta property="article:tag" content="Sierra Leone"/>
<meta property="article:tag" content="West Africa"/>
<meta property="article:tag" content="Africa"/>
<meta property="article:tag" content="Ebola Virus"/>
<meta property="article:tag" content="royal free hsopital"/>
<meta property="article:tag" content="royal free hospital"/>
<meta property="article:tag" content="royal free london ebola patient"/>
<meta property="og:section" content="Latest News"/>
<meta property="article:published_time" content="2014-12-30"/>
<meta property="article:modified_time" content="2014-12-30"/>
<meta property="article:expiration_time" content="2015-01-29"/>
<meta property="article:section" content="Latest News"/>
<link href='https://chrome.google.com/webstore/detail/onhilelbkklcedgpkkmobnkfljelgpdj' rel='chrome-webstore-item'/><meta name='parsely-page' content='{"title":"Scot Ebola patient named: First pic of heroic nurse Pauline Cafferkey","link":"http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone","image_url":"http://images.dailystar-uk.co.uk/dynamic/1/photos/904000/173x216/180904.jpg","type":"post","post_id":"417544","pub_date":"2014-12-30T07:00:00+00:00","section":"Latest News","author":"Cyrus Engineer & Sophie Alexander","tags":["Ebola","Scotland","Glasgow","Sierra Leone","West Africa","Africa","Ebola Virus","royal free hsopital","royal free hospital","royal free london ebola patient","ebola symptoms"]}'><script type="text/javascript">var ChannelName = 'latest_news,news,ebola,scotland,glasgow,sierra_leone,west_africa,africa,ebola_virus,royal_free_hsopital,royal_free_hospital,royal_free_london_ebola_patient,ebola_symptoms';</script> <meta name="author" content="Cyrus Engineer"/>
<meta name="msvalidate.01" content="E11C91F3522244AD728A407C255512DF">
<link rel="canonical" href="http://www.dailystar.co.uk/" />
<link href="http://cdn.images.dailystar-uk.co.uk/betafavicon.ico" type="image/x-icon" rel="icon" />
<link href="http://cdn.images.dailystar-uk.co.uk/betafavicon.ico" type="image/x-icon" rel="shortcut icon" />
<link rel="apple-touch-icon" href="http://cdn.images.dailystar-uk.co.uk/appletouch.png" />
<link rel="apple-touch-icon" sizes="72x72" href="http://cdn.images.dailystar-uk.co.uk/appletouch72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="http://cdn.images.dailystar-uk.co.uk/appletouch114.png" />
<link rel="apple-touch-icon" sizes="144x144" href="http://cdn.images.dailystar-uk.co.uk/appletouch144.png" />
<link rel="stylesheet" type="text/css" href="http://cdn.images.dailystar-uk.co.uk/css/foundation.css?r=201412191" /><link rel="stylesheet" type="text/css" href="http://cdn.images.dailystar-uk.co.uk/css/app20141219.css?r=201412191" /><link rel="stylesheet" type="text/css" href="http://cdn.images.dailystar-uk.co.uk/css/gigya20141219.css?r=201412191" /><link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Lato:400,700,700italic,900,900italic" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-545303-2']);
_gaq.push(['_setCustomVar', 1, 'article type', 'Latest News', 3]);
_gaq.push(['_setLocalRemoteServerMode']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type =
'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://'
: 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
var windowOnload=window.onload||function(){};window.onload=function(){windowOnload();};
</script> <!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
<script>
window.expressoOptions = {
brand: "DS",
headerBackgroundColor: "#282425",
messageBackgroundColor: "#eeeeee",
apiUrl: 'https://api.crm.northernandshell.co.uk/',
contentUrl: "http://cdn.crm.northernandshell.co.uk/cdn/",
sdkVersion: "rc16",
brandOptIn: " Yes, keep me up to date with breaking news, offers, promotions and exclusive content from Daily Star by email.",
nsOptIn: "Yes, I'd like to be contacted by Northern & Shell Companies about their offers, goods and services by email.",
thirdPartyOptIn: "Yes, I'd like to be contacted by selected 3rd parties about their offers, goods and services by email.",
preferencesLink: "/preferences",
promptToOptIn: "You need to opt-in to receive emails from the Daily Star before you can start receiving daily news emails - Click here to opt-in now.",
termsOfUseLink: "http://www.dailystar.co.uk/terms-and-conditions",
privacyPolicyLink: "http://www.dailystar.co.uk/privacy",
screens: {
register: {
caption: 'Register for a Daily Star account',
benefits: [
'Get involved with the discussion and comment on Daily Star articles',
'Get access to exclusive competitions and promotions',
'Get access to daily news emails and receive news you care about directly to your inbox'
]
},
login: {
caption: 'Sign into your Daily Star account'
},
forgotpassword: {
caption: 'Forgotten password'
},
preferencecentre: {
welcomeMessage: "Welcome to the email news preference center. Here you can subscribe to receive daily news emails about topics you care about directly to your inbox."
},
registrationnewsletters: {
caption: 'Thank you for registering!'
},
linkaccounts: {
caption: 'Already a member'
}
},
modules: {
acquisitionModule: {
moduleBackgroundColor: '#ea052c',
headerBackgroundColor: '#d90000',
headerCornerColor: '#9f021e'
}
},
specialInterest: {
label: 'Which football team do you support?',
options: [
{ value: 'Arsenal', displayText: 'Arsenal' },
{ value: 'Aston-Villa', displayText: 'Aston Villa' },
{ value: 'Burnley', displayText: 'Burnley' },
{ value: 'Chelsea', displayText: 'Chelsea' },
{ value: 'Crystal-Palace' , displayText: 'Crystal Palace' },
{ value: 'Everton', displayText: 'Everton' },
{ value: 'Hull-City', displayText: 'Hull City' },
{ value: 'Leicester-City', displayText: 'Leicester City' },
{ value: 'Liverpool', displayText: 'Liverpool' },
{ value: 'Manchester-City', displayText: 'Manchester City' },
{ value: 'Manchester-United', displayText: 'Manchester United' },
{ value: 'Newcastle-United', displayText: 'Newcastle United' },
{ value: 'Queens-Park-Rangers', displayText: 'Queens Park Rangers' },
{ value: 'Southampton', displayText: 'Southampton' },
{ value: 'Stoke-City', displayText: 'Stoke City' },
{ value: 'Sunderland', displayText: 'Sunderland' },
{ value: 'Swansea-City', displayText: 'Swansea City' },
{ value: 'Tottenham-Hotsupur', displayText: 'Tottenham Hotspurs' },
{ value: 'West-Bromwich-Albion', displayText: 'West Bromwich Albion' },
{ value: 'West-Ham', displayText: 'West Ham' }
]
}
};
</script>
<script src="http://cdn.crm.northernandshell.co.uk/cdn/js/expresso-0.1.min.js?rc16"></script><!-- BEGIN Krux Control Tag for "Daily Star" -->
<!-- Source: /snippet/controltag?confid=I34AE6UY&site=Daily%20Star&edit=1 -->
<script class="kxct" data-id="I34AE6UY" data-timing="async" data-version="1.9" type="text/javascript">
window.Krux||((Krux=function(){Krux.q.push(arguments)}).q=[]);
(function(){
var k=document.createElement('script');k.type='text/javascript';k.async=true;
var m,src=(m=location.href.match(/\bkxsrc=([^&]+)/))&&decodeURIComponent(m[1]);
k.src = /^https?:\/\/([^\/]+\.)?krxd\.net(:\d{1,5})?\//i.test(src) ? src : src === "disable" ? "" :
(location.protocol==="https:"?"https:":"http:")+"//cdn.krxd.net/controltag?confid=I34AE6UY"
;
var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(k,s);
}());
</script>
<!-- END Krux Controltag -->
<!-- Start: GPT Async -->
<script type='text/javascript'>
var gptadslots=[];
(function() {
var useSSL = 'https:' == document.location.protocol;
var src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
})();
function ISMScreenRes() {
if(screen.width >= 1280 ) {
return( "true" );
} else {
return( "false" );
}
}
</script>
<script>
window.Krux||((Krux=function(){Krux.q.push(arguments);}).q=[]);
(function(){
function retrieve(n){
var m, k='kx'+n;
if (window.localStorage) {
return window.localStorage[k] || "";
} else if (navigator.cookieEnabled) {
m = document.cookie.match(k+'=([^;]*)');
return (m && unescape(m[1])) || "";
} else {
return '';
}
}
Krux.user = retrieve('user');
Krux.segments = retrieve('segs') && retrieve('segs').split(',') || [];
})();
</script>
<script type="text/javascript">
var crtg_content = crtg_content || '';
//Adslot 1 declaration
gptadslots[1]= googletag.defineSlot('/34722903/DailyStar/News/Latest_News', [[1,1],[970,250],[900,250],[728,90]],'div-gpt-ad-968280443172664182-1').setTargeting('pos',['top']).addService(googletag.pubads());
//Adslot 2 declaration
gptadslots[2]= googletag.defineSlot('/34722903/DailyStar/News/Latest_News', [[300,250],[300,600]],'div-gpt-ad-968280443172664182-2').setTargeting('pos',['right']).addService(googletag.pubads());
//Adslot 3 declaration
gptadslots[3]= googletag.defineSlot('/34722903/DailyStar/News/Latest_News', [[300,250]],'div-gpt-ad-968280443172664182-3').setTargeting('pos',['right1']).addService(googletag.pubads());
//Adslot 4 declaration
gptadslots[4]= googletag.defineSlot('/34722903/DailyStar/News/Latest_News', [[300,250]],'div-gpt-ad-968280443172664182-4').setTargeting('pos',['right2']).addService(googletag.pubads());
//Adslot 5 declaration
gptadslots[5]= googletag.defineSlot('/34722903/DailyStar/News/Latest_News', [[970,250],[900,250],[728,90]],'div-gpt-ad-968280443172664182-5').setTargeting('pos',['top1']).addService(googletag.pubads());
//Adslot 6 declaration
gptadslots[6]= googletag.defineSlot('/34722903/DailyStar/News/Latest_News', [[1,1]],'div-gpt-ad-968280443172664182-6').setTargeting('pos',['middle']).addService(googletag.pubads());
//Adslot 7 declaration
gptadslots[7]= googletag.defineSlot('/34722903/DailyStar/News/Latest_News', [[620,80]],'div-gpt-ad-968280443172664182-7').setTargeting('pos',['centre']).addService(googletag.pubads());
//Adslot oop declaration
gptadslots[0] = googletag.defineOutOfPageSlot('/34722903/DailyStar/News/Latest_News', 'div-gpt-ad-968280443172664182-oop').setTargeting('pos',['outofpage']).addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.pubads().setTargeting('pagetype',['article']).setTargeting('articleid',['417544']).setTargeting('keywords',['headlines','world','Ebola','Scotland','Glasgow','Sierra Leone','West Africa','Africa','Ebola Virus','royal free hsopital','royal free hospital','royal free london ebola patient']).setTargeting('device',['Desktop']).setTargeting('inskin_yes', ISMScreenRes());
googletag.pubads().setTargeting("ksg", Krux.segments);
googletag.pubads().setTargeting("kuid", Krux.user);
googletag.pubads().setTargeting("khost", encodeURIComponent(location.hostname));
var crtg_split = crtg_content.split(';');
for (var i=1;i<crtg_split.length;i++){
googletag.pubads().setTargeting ("" + (crtg_split[i-1].split('='))[0] + "", "" + (crtg_split[i-1].split('='))[1] + "");
};
googletag.pubads().enableSyncRendering();
googletag.pubads().collapseEmptyDivs();
googletag.enableServices();
</script>
<!-- End: GPT --></head>
<body itemscope itemtype="http://schema.org/WebPage">
<!-- Beginning Async AdSlot oop for Ad unit DailyStar/News/Latest_News ### size: -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[0]]) -->
<div id='div-gpt-ad-968280443172664182-oop'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-968280443172664182-oop');
</script>
</div>
<!-- End AdSlot oop -->
<!-- container -->
<div class="container" id="maincontainer">
<div style="text-align:center;margin:0 auto;" id="superbanner">
<!-- Beginning Async AdSlot 1 for Ad unit DailyStar/News/Latest_News ### size: [[1,1],[728,90],[900,250],[970,250]] -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[1]]) -->
<div id='div-gpt-ad-968280443172664182-1' style="display:inline-block;">
<script type='text/javascript'>
googletag.display('div-gpt-ad-968280443172664182-1');
</script>
</div>
<!-- End AdSlot 1 -->
</div>
<!--OVOLABS_1 END-->
<header class="row page-header">
<div class="twelve columns">
<div class="row">
<div class="top-header clearfix">
<div class="columns three">
<h1 class="logo">
<a href="/">
<img src="http://cdn.images.dailystar-uk.co.uk/img/static/daily-star.png" alt="DailyStar" title="Daily Star">
</a>
</h1>
</div>
<nav class="columns nine">
<ul class="header-small-nav right">
<li class="site-search right">
<form action="http://www.dailystar.co.uk/search" id="header_search_form">
<input class="left" type="search" name="query" placeholder="Search...">
<button class="left link-button search-button" type="submit"><i class="icon-magnifier"></i></button>
</form>
</li>
<li class="right">
<div id="nse-widget"></div>
</li> <li class="hide-on-phones right"><a href="http://www.dailystar.co.uk/feeds" class="link-button rss"><i class="icon-rss"></i></a></li>
<li class="right"><a href="https://plus.google.com/102878321884201520955/posts" class="link-button google" onclick="App.GoogleAnalytics.TrackEvent('offsite', 'https://plus.google.com/102878321884201520955/posts')"><i class="icon-google-plus"></i></a></li>
<li class="right"><a href="https://twitter.com/daily_star" class="link-button twitter" onclick="App.GoogleAnalytics.TrackEvent('offsite', 'https://twitter.com/daily_star')"><i class="icon-twitter"></i></a></li>
<li class="right"><a href="https://www.facebook.com/thedailystar" class="link-button facebook" onclick="App.GoogleAnalytics.TrackEvent('offsite', 'https://www.facebook.com/thedailystar')"><i class="icon-facebook"></i></a></li>
</ul>
<ul class="clearRight header-small-nav right">
<li class="sep right"><a href="http://www.dailystar.co.uk/our-paper">Our Paper</a></li>
<li class="sep right"><a href="http://www.dailystar.co.uk/paper-archive">Paper Archive</a></li>
<li class="sep right"><a href="http://www.dailystar.co.uk/apps">Our Apps</a></li>
<li class="sep right"><a href="http://www.dailystar.co.uk/horoscopes">Daily Horoscope</a></li>
<li class="weather right">
<a href="http://www.dailystar.co.uk/weather" style="background: url('http://cdn.images.dailystar-uk.co.uk/img/weather/png/52x52/28.png') no-repeat scroll 0 0;">
<span>London, UK</span>
<b>14°</b>
</a>
</li>
</ul>
</nav>
</div>
</div>
<nav class="row sections main-navi">
<div class="wrapper">
<ul class="main-nav has-sub-nav">
<li><a href="/" class="item"><span>Home</span></a></li>
<li><a href="/news" class="active item"><span>News</span></a></li>
<li><a href="/sport" class="item"><span>Sport</span></a></li>
<li><a href="/showbiz-and-tv" class="item"><span>Showbiz & TV</span></a></li>
<li><a href="/travel" class="item"><span>Travel</span></a></li>
<li><a href="/life-style" class="item"><span>Life & Style</span></a></li>
<li><a href="/pics" class="item"><span>Pics</span></a></li>
<li><a href="/vids" class="item"><span>Vids</span></a></li>
<li><a href="http://games.dailystar.co.uk" class="item" rel="nofollow" target="_blank"><span>Games</span></a></li>
</ul>
</div>
<div class="sub-wrapper">
<ul class="sub-nav">
<li><a href="/news/latest-news" class="active item"><span>Latest News</span></a></li>
<li><a href="/news/weird-news" class="item"><span>Weird News</span></a></li>
<li><a href="/sunday" class="item"><span>Daily Star Sunday</span></a></li>
<li><a href="/columnists" class="item"><span>Columnists</span></a></li>
</ul>
</div>
</nav>
</div>
<div class="twelve columns" style="background-color:#f7f5f5; margin:0 auto;"></div>
<div class="twelve columns breadcrumbsShell">
<ul class="breadcrumbs" id="breadCrumb"><li itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="first"><a href="/" itemprop="url"><span itemprop="title">Home</span></a></li><li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/news" itemprop="url"><span itemprop="title">News</span></a><span class="breadcrumbs-sep"></span></li><li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/news/latest-news" itemprop="url"><span itemprop="title">Latest News</span></a><span class="breadcrumbs-sep"></span></li><li class="last">Scot Ebola patient named: First pic of heroic nurse Pauline Cafferkey<span class="breadcrumbs-sep"></span></li></ul> </div>
</header>
<!--OVOLABS_2 START-->
<div class="row page-content">
<!--OVOLABS_2 END-->
<div class="twelve columns flash-msg"> <div class="OUTBRAIN" data-widget-id="AR_21" data-src="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone" data-ob-template="DailyStar"></div>
</div>
<!--OVOLABS_3 START-->
<div class="row">
<!--OVOLABS_3 END-->
<!--OVOLABS_4 START-->
<article class="eight four-mobile columns story" style="margin-left:0;" id="singleArticle" itemscope itemtype="http://schema.org/Article" itemprop="mainContentOfPage" role="main">
<header>
<!--OVOLABS_4 END-->
<!--OVOLABS_5 START-->
<h1 class="clear" itemprop="headline">Scot Ebola patient named: First pic of heroic nurse Pauline Cafferkey</h1>
<p class="lead" class="clearfix">A FEMALE healthcare worker who contracted Ebola after returning to Glasgow from Sierra Leone has been named.</p>
<!--OVOLABS_5 END-->
<div class="social-panel">
<div id="componentDiv2"></div>
</div>
<!--OVOLABS_6 START-->
<div class="byline publication-date">
By <a class="author" href="/journalists/cyrus-engineer">Cyrus Engineer & Sophie Alexander</a>
<span class="sep">/</span>
<time pubdate datetime="2014-12-30T07:00:00Z">Published <span itemprop="datePublished">30th December 2014</span></time>
</div>
</header>
<div class="story-content clearfix">
<section class="photo main_photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/1/photos/904000/620x/ebola-ambulance-glasgow-london-patient-417544.jpg" alt="Woman with Ebola transported to London">
<meta itemprop="image" content="http://images.dailystar-uk.co.uk/dynamic/1/photos/904000/620x/ebola-ambulance-glasgow-london-patient-417544.jpg">
<span class="caption">TREATMENT: Pauline Cafferkey has been named as the Scottish Ebola patient [GETTY]</span>
</p>
</section>
<section class="text-description">
<p>Pauline Cafferkey, a Scottish nurse, arrived at the Royal Free Hospital in Hampstead, north London, for specialist treatment at the infectious diseases unit this morning.</p><p>Ms Cafferkey returned to Scotland after working in the west African country and arrived on a British Airways flight at Glasgow airport at around 11.30pm on Sunday.</p><p>She has been a nurse for 16 years and was volunteering for Save The Children when she contracted the deadly virus.</p><p>Ms Cafferkey was said to be displaying no symptoms on the plane and the risk to other patients is said to be "low".</p><p>Public health officials are said to be looking to contact passengers who sat adjacent to the nurse as a precautionary approach.</p><p>Meanwhile, another person is being tested in north west Scotland for the virus but is said to be "low risk".</p><p>Another patient, in Truro, Cornwall, has been placed in isolation and is also being tested for Ebola.</p><p>The Scottish nurse was admitted to hospital early on Monday after feeling unwell. She is in a stable condition.</p><p>She was accompanied to hospital by a convoy of ambulances and police cars as workers wore full protective suits.</p><p>A tent has been set up around her bed so the infection can be contained while she is treated.</p><p>The unit in London successfully treated British nurse WIlliam Pooley who was flown home from Sierra Leone in August after contracting the virus.</p></section>
<section class="photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/1/photos/852000/ebola-nurse-glasgow-180852.jpg" alt="">
<span class="caption">ISOLATION: Roads were shut as the woman arrived for her flight to London [REUTERS] </span>
</p>
</section>
<section class="text-description">
<p>Scotland's First Minister Nicola Sturgeon said: "Our first thoughts at this time must be with the patient diagnosed with Ebola and their friends and family. I wish them a speedy recovery.</p><p>"Scotland has been preparing for this possibility from the beginning of the outbreak in West Africa and I am confident that we are well prepared.</p><p>"We have the robust procedures in place to identify cases rapidly. Our health service also has the expertise and facilities to ensure that confirmed Ebola cases such as this are contained and isolated effectively minimising any potential spread of the disease.</p><p>"Scotland’s NHS has proved it is well able to cope with infectious diseases in the past, such as swine flu, and I am confident we will be able to respond effectively again.”</p><p>She has also spoken to Prime Minister David Cameron.</p><p>Health Secretary Jeremy Hunt, who chaired an emergency Cobra meeting, vowed the Government was doing "absolutely everything" to keep the public safe.</p><p>"We are reviewing our procedures and protocols for the other NHS workers who are working in Sierra Leone alongside colleagues from the Department for International Development and the Foreign Office," he said.</p><p>"They are doing a very, very brave job, under very challenging circumstances.</p></section>
<div class="jsElement"><!-- Start of Brightcove Player -->
<div style="display:none">
</div>
<!--
By use of this code snippet, I agree to the Brightcove Publisher T and C
found at https://accounts.brightcove.com/en/terms-and-conditions/.
-->
<script language="JavaScript" type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script>
<object id="myExperience3831929483001" class="BrightcoveExperience">
<param name="bgcolor" value="#FFFFFF" />
<param name="width" value="640" />
<param name="height" value="360" />
<param name="playerID" value="2762778358001" />
<param name="playerKey" value="AQ~~,AAACT2hWexE~,QV-ElXQT89VR0gsF5K_BsVW0r8KEzjyr" />
<param name="isVid" value="true" />
<param name="isUI" value="true" />
<param name="dynamicStreaming" value="true" />
<param name="@videoPlayer" value="3831929483001" />
</object>
<!--
This script tag will cause the Brightcove Players defined above it to be created as soon
as the line is read by the browser. If you wish to have the player instantiated only after
the rest of the HTML is processed and the page load is complete, remove the line.
-->
<script type="text/javascript">brightcove.createExperiences();</script>
<!-- End of Brightcove Player --></div>
<section class="text-description">
<p>"We want to make absolutely sure that we are doing everything we can to keep them safe.</p><p>"The clinical advice is that the risk is very low to other passengers. She wasn't exhibiting feverish symptoms.</p><p>"The process has worked well because the moment she did exhibit those symptoms we were able to take her into isolation."</p><p>A British Airways spokesman said: "We are working closely with the health authorities in England and Scotland and will offer assistance with any information they require.</p><p>"Customers who flew from London Heathrow to Glasgow on BA1478 which departed at 2100 on Sunday December 28 and have concerns should contact the special number 08000 858531 set up by the Scottish Government.</p><p>"The safety and security of our customers and crew is always our top priority and the risk to people on board that individual flight is extremely low."</p></section>
<section class="photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/1/photos/806000/180806.jpg" alt="">
<span class="caption">EMERGENCY: The Health Secretary Jeremy Hunt chaired a Cobra meeting following the news [GETTY] </span>
</p>
</section>
<div class="jsElement"><blockquote class="twitter-tweet" lang="en"><p>Ebola case. Public health experts have emphasised risks are negligible. Helpline for anyone on the Heathrow to Glasgow flight: 08000 858 531</p>— Scottish Government (@scotgov) <a href="https://twitter.com/scotgov/status/549643312593137664">December 29, 2014</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></div>
<section class="photo">
<p>
<img class="photo kalooga_12952" src="http://images.dailystar-uk.co.uk/dynamic/1/photos/756000/180756.jpg" alt="">
<span class="caption">TREATMENT: The Gartnavel Hospital campus in Glasgow where the female healthcare worker is being cared for [AFP/GETTY] </span>
</p>
</section>
<section class="text-description">
<p>The current Ebola outbreak, which began in West Africa, is the largest epidemic of the virus in history.</p><p>It began in Guinea in December 2013 and quickly spread to Liberia and Sierra Leone – the two worst-affected nations.</p><p>The World Health Organisation (WHO) has reported a total of 19,980 suspected cases and 7,793 deaths.</p><p>But the WHO believes these figures understate the true size of the deadly outbreak.</p><p>Earlier this month Time magazine named those healthcare workers who have travelled to help with the crisis as their "Person of the Year".</p><p><strong>Anyone who was on the British Airways Heathrow to Glasgow flight on Sunday night is asked to call 08000 858531</strong></p></section>
<section class="related-articles">
<header>Related articles</header>
<ul>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/showbiz/409767/Amy-Childs-Ebola-band-Jolyon-Rubinstein" itemprop="name">'They're going to be huge' Amy Childs thinks Ebola is a BAND who are 'amazing'</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/news/latest-news/410596/MI5-fears-Islamic-State-infected-Ebola-attack" itemprop="name">EXCLUSIVE: MI5 fears Islamic State Ebola 'bomb'</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/sport/football/410830/Chelsea-Didier-Drogba-Ebola-virus-Jose-Mourinho" itemprop="name">Chelsea hero Didier Drogba joins the fight against Ebola with video message</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/news/latest-news/414327/William-Pooley-survived-Ebola-says-Bob-Geldof-s-Band-aid-song-is-cringe" itemprop="name">Geldof's Band Aid song makes me cringe says Brit Ebola nurse</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/showbiz/414510/bob-geldof-hits-back-at-band-aid-critics-saying-they-can-off" itemprop="name">'They can f*** off': Bob Geldof hits back at Band Aid critics</a>
</li>
<li itemscope itemtype="http://schema.org/Article">
<a href="http://www.dailystar.co.uk/news/latest-news/417042/Queen-Christmas-royal-speech" itemprop="name">Queen has been 'deeply touched' by Ebola crisis as royals attend Christmas service</a>
</li>
</ul>
</section> </div>
<script>Expresso.Acquisition.createFor({ metaTag: 'keywords' });</script>
<footer>
<!-- AdSlot 6 Called -->
<!--OVOLABS_6 END-->
<div class="social-panel">
<div id="componentDiv"></div>
</div>
<!--OVOLABS_7 START-->
<section class="outbrain-news">
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone" data-widget-id="AR_16" data-ob-template="DailyStar" ></div>
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone" data-widget-id="AR_17" data-ob-template="DailyStar" ></div>
</section>
<section class="outbrain-news">
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone" data-widget-id="AR_18" data-ob-template="DailyStar" ></div>
<div class="OUTBRAIN" data-src="http://www.dailystar.co.uk/news/latest-news/417544/Ebola-virus-Glasgow-Scotland-Sierra-Leone" data-widget-id="AR_19" data-ob-template="DailyStar" ></div>
<script type="text/javascript" src="http://widgets.outbrain.com/outbrain.js"></script>
</section>
<!--OVOLABS_7 END-->
<div class="p402_premium"></div>
<a name="comments" id="comments"></a>
<div id="gigyacomments">
<header class="box-header">
<span class="main-label">Comments</span>
</header> <div id='commentsDiv'></div>
</div>
<!--OVOLABS_8 START-->
</footer>
</article>
<aside id="rhSide" class="rh-side four three-mobile columns">
<div class="rh type1">
<!-- Beginning Async AdSlot 2 for Ad unit DailyStar/News/Latest_News ### size: [[300,250],[300,600]] -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[2]]) -->
<div id='div-gpt-ad-968280443172664182-2'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-968280443172664182-2');
</script>
</div>
<!-- End AdSlot 2 -->
</div>
<div class="rh type3">
<section class="aside section-stories">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz" class="left">Celebs</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz">More</a>
</header>
<div class="first-story relative">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418210/Caroline-Flack-bikini-body-Jamaica-holiday-pictures">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/991000/300x200/181991.jpg" alt="Caroline Flack flaunts body on Jamaica holiday"> </div>
<h5 class="title" itemprop="name">That Strictly training paid off! Caroline Flack continues to flaunt bikini bod in Jamaica</h5>
<p class="lead">CAROLINE Flack continued to raise the temperatures during her sun-soaked Jamaica getaway as she paraded her bikini body online. </p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418210/Caroline-Flack-bikini-body-Jamaica-holiday-pictures#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418210/Caroline-Flack-bikini-body-Jamaica-holiday-pictures#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="stories">
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418196/Celeb-babes-beat-the-January-blues-by-jetting-to-warmer-climes">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/932000/135x88/181932.jpg" alt="Myleen Klass"> </span>
<h5 class="title" itemprop="name">SIZZLING celeb babes beat the January blues by jetting to warm...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418196/Celeb-babes-beat-the-January-blues-by-jetting-to-warmer-climes#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418196/Celeb-babes-beat-the-January-blues-by-jetting-to-warmer-climes#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418180/Blonde-bombshell-Rita-Ora-is-ready-to-spice-up-The-Voice">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/908000/135x88/181908.jpg" alt="Rita Ora"> </span>
<h5 class="title" itemprop="name">Blonde bombshell Rita Ora is ready to spice up The Voice</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418180/Blonde-bombshell-Rita-Ora-is-ready-to-spice-up-The-Voice#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418180/Blonde-bombshell-Rita-Ora-is-ready-to-spice-up-The-Voice#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418178/Lose-840-pounds-a-week-on-Gwyneth-s-crazy-new-diet-That-s-NOT-lb">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/904000/135x88/181904.jpg" alt="Gwyneth Paltrow"> </span>
<h5 class="title" itemprop="name">Lose 840 pounds a week on Gwyneth's crazy new diet... That's £...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418178/Lose-840-pounds-a-week-on-Gwyneth-s-crazy-new-diet-That-s-NOT-lb#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418178/Lose-840-pounds-a-week-on-Gwyneth-s-crazy-new-diet-That-s-NOT-lb#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418154/Madonna-Martin-Luther-King-Nelson-Mandela-Rebel-Heart">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/876000/135x88/181876.jpg" alt="Madonna's Rebel Heart album cover and Martin Luther King"> </span>
<h5 class="title" itemprop="name">'It's neither a crime, an insult or racist’ Madonna defends co...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418154/Madonna-Martin-Luther-King-Nelson-Mandela-Rebel-Heart#comments" class="comments"><span class="cloud"><var class="arrow"></var> 5</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418154/Madonna-Martin-Luther-King-Nelson-Mandela-Rebel-Heart#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418134/Ray-Winstone-reveals-his-wardrobe-fav-A-pair-of-15-year-old-skintight-gold-trunks">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/849000/135x88/181849.jpg" alt="Ray Winstone"> </span>
<h5 class="title" itemprop="name">Ray Winstone reveals his wardrobe fav: A pair of 15-year-old s...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418134/Ray-Winstone-reveals-his-wardrobe-fav-A-pair-of-15-year-old-skintight-gold-trunks#comments" class="comments"><span class="cloud"><var class="arrow"></var> 2</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418134/Ray-Winstone-reveals-his-wardrobe-fav-A-pair-of-15-year-old-skintight-gold-trunks#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418137/Katie-Hopkins-New-Year-hospital">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/861000/135x88/181861.jpg" alt="Katie Hopkins"> </span>
<h5 class="title" itemprop="name">‘My time at A&E was not alcohol related’ Katie Hopkins in New ...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418137/Katie-Hopkins-New-Year-hospital#comments" class="comments"><span class="cloud"><var class="arrow"></var> 5</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418137/Katie-Hopkins-New-Year-hospital#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418113/Jodie-Marsh-flashes-assets-in-world-s-smallest-bikini">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/816000/135x88/181816.jpg" alt=""> </span>
<h5 class="title" itemprop="name">Next step nudist beach? Jodie Marsh continues boobylicious bik...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418113/Jodie-Marsh-flashes-assets-in-world-s-smallest-bikini#comments" class="comments"><span class="cloud"><var class="arrow"></var> 3</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418113/Jodie-Marsh-flashes-assets-in-world-s-smallest-bikini#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418109/Coronation-Street-Paula-Lane-gives-birth-baby-boy">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/815000/135x88/181815.jpg" alt="Paula Lane as Kylie Platt in Coronation Street"> </span>
<h5 class="title" itemprop="name">Baby joy for Corrie’s Kylie as actress Paula Lane welcomes fir...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418109/Coronation-Street-Paula-Lane-gives-birth-baby-boy#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418109/Coronation-Street-Paula-Lane-gives-birth-baby-boy#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418085/Kim-Kardashian-ex-Ray-J-in-murder-suicide-scare">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/782000/135x88/181782.jpg" alt="Kim Kardashian sex tape with Ray J"> </span>
<h5 class="title" itemprop="name">Kim Kardashian sex tape co-star calls 911 in murder-suicide scare</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418085/Kim-Kardashian-ex-Ray-J-in-murder-suicide-scare#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418085/Kim-Kardashian-ex-Ray-J-in-murder-suicide-scare#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418077/Rihanna-flaunts-toned-body-in-teeny-bikini">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/750000/135x88/181750.jpg" alt=""> </span>
<h5 class="title" itemprop="name">RiRi's ripped! Rihanna flaunts sexy six-pack in teeny bikini</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418077/Rihanna-flaunts-toned-body-in-teeny-bikini#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418077/Rihanna-flaunts-toned-body-in-teeny-bikini#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418058/Tara-Reid-shares-NAKED-selfie">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/708000/135x88/181708.jpg" alt=""> </span>
<h5 class="title" itemprop="name">Happy NUDE year! Tara Reid shares completely starkers selfie</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418058/Tara-Reid-shares-NAKED-selfie#comments" class="comments"><span class="cloud"><var class="arrow"></var> 4</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418058/Tara-Reid-shares-NAKED-selfie#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418051/Katie-Hopkins-One-Direction-to-lose-fans-Kimye-split">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/689000/135x88/181689.jpg" alt=""> </span>
<h5 class="title" itemprop="name">'One Direction to lose fans & Kimye will split' Horseface Hopk...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418051/Katie-Hopkins-One-Direction-to-lose-fans-Kimye-split#comments" class="comments"><span class="cloud"><var class="arrow"></var> 4</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418051/Katie-Hopkins-One-Direction-to-lose-fans-Kimye-split#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418018/Ex-lover-snubs-Cheryl-in-autobiography-because-he-is-still-too-heartbroken">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/636000/135x88/181636.jpg" alt="Cheryl Fernandez-Versini dancing with Derek Hough on Dancing with the Stars"> </span>
<h5 class="title" itemprop="name">Ex-lover snubs Cheryl in autobiography because he is still too...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418018/Ex-lover-snubs-Cheryl-in-autobiography-because-he-is-still-too-heartbroken#comments" class="comments"><span class="cloud"><var class="arrow"></var> 3</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418018/Ex-lover-snubs-Cheryl-in-autobiography-because-he-is-still-too-heartbroken#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417981/Boyband-Union-J-soak-up-some-Barbados-sunshine">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/583000/135x88/181583.jpg" alt="Jaymi Hensley"> </span>
<h5 class="title" itemprop="name">Boyband Union J escape the cold to soak up some Barbados sunshine</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417981/Boyband-Union-J-soak-up-some-Barbados-sunshine#comments" class="comments"><span class="cloud"><var class="arrow"></var> 2</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417981/Boyband-Union-J-soak-up-some-Barbados-sunshine#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417927/Vicky-Pattison-snogs-Josh-Robson-on-wild-night-out">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/503000/135x88/181503.jpg" alt=""> </span>
<h5 class="title" itemprop="name">Tequila & tashing on! Vicky Pattison flaunts cleavage & snogs ...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417927/Vicky-Pattison-snogs-Josh-Robson-on-wild-night-out#comments" class="comments"><span class="cloud"><var class="arrow"></var> 3</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417927/Vicky-Pattison-snogs-Josh-Robson-on-wild-night-out#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/418024/EastEnders-Luisa-Bradshaw-White-topless-picture">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/646000/135x88/181646.jpg" alt="EastEnders' Luisa Bradshaw-White topless in jacuzzi"> </span>
<h5 class="title" itemprop="name">What would Dot Cotton say? EastEnders star poses topless in ra...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/418024/EastEnders-Luisa-Bradshaw-White-topless-picture#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/418024/EastEnders-Luisa-Bradshaw-White-topless-picture#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417954/Perrie-Edwards-Zayn-Malik-Edward-Scissorshands-Cleopatra-New-Years-Eve">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/550000/135x88/181550.jpg" alt="Zayn Malik and Perrie Edeards dressed as Edward Scissorhands and Cleopatra"> </span>
<h5 class="title" itemprop="name">Guess who? Celeb couple look unrecognisable in NYE fancy dress</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417954/Perrie-Edwards-Zayn-Malik-Edward-Scissorshands-Cleopatra-New-Years-Eve#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417954/Perrie-Edwards-Zayn-Malik-Edward-Scissorshands-Cleopatra-New-Years-Eve#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417949/Michelle-Keegan-Mark-Wright-New-Year-kiss">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/541000/135x88/181541.jpg" alt=""> </span>
<h5 class="title" itemprop="name">First kiss of 2015! Michelle Keegan & Mark Wright lock lips in...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417949/Michelle-Keegan-Mark-Wright-New-Year-kiss#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417949/Michelle-Keegan-Mark-Wright-New-Year-kiss#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417935/Video-Idina-Menzel-fails-to-hit-the-high-notes-in-Let-It-Go">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/523000/135x88/181523.jpg" alt="Idina Menzel has been slated for her rendition of the Frozen track"> </span>
<h5 class="title" itemprop="name">WATCH: 'She sounds like a goat!' Glee star fails to hit high n...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417935/Video-Idina-Menzel-fails-to-hit-the-high-notes-in-Let-It-Go#comments" class="comments"><span class="cloud"><var class="arrow"></var> 3</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417935/Video-Idina-Menzel-fails-to-hit-the-high-notes-in-Let-It-Go#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417888/Jenson-Button-Jessica-Michibata-wedding-Hawaii">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/484000/135x88/181484.jpg" alt="Jenson Button and Jessica Michibata have tied the knot in Hawaii"> </span>
<h5 class="title" itemprop="name">Racing down the aisle! F1 ace Jenson Button marries model brid...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417888/Jenson-Button-Jessica-Michibata-wedding-Hawaii#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417888/Jenson-Button-Jessica-Michibata-wedding-Hawaii#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417898/Kimberley-Garner-bikini-beach-body">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/431000/135x88/181431.jpg" alt=""> </span>
<h5 class="title" itemprop="name">Red Hot! Bikini-clad Kimberley Garner flaunts toned beach body</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417898/Kimberley-Garner-bikini-beach-body#comments" class="comments"><span class="cloud"><var class="arrow"></var> 3</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417898/Kimberley-Garner-bikini-beach-body#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417908/Katie-Price-slams-cheating-friends">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/464000/135x88/181464.jpg" alt=""> </span>
<h5 class="title" itemprop="name">'The wh***s deserve a sh** life' Katie Price slams ex-BFFs as ...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417908/Katie-Price-slams-cheating-friends#comments" class="comments"><span class="cloud"><var class="arrow"></var> 5</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417908/Katie-Price-slams-cheating-friends#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417892/Kendall-Jenner-in-red-hot-bikini-selfie">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/424000/135x88/181424.jpg" alt=""> </span>
<h5 class="title" itemprop="name">Top model body! Kendall Jenner sizzles in skimpy bikini snap</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417892/Kendall-Jenner-in-red-hot-bikini-selfie#comments" class="comments"><span class="cloud"><var class="arrow"></var> 2</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417892/Kendall-Jenner-in-red-hot-bikini-selfie#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417862/Tulisa-sizzles-in-the-sand-at-the-end-of-a-tough-year">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/366000/135x88/181366.jpg" alt="Tulisa Contostavlos"> </span>
<h5 class="title" itemprop="name">WOW! Tulisa sizzles in the sand at the end of a tough year</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417862/Tulisa-sizzles-in-the-sand-at-the-end-of-a-tough-year#comments" class="comments"><span class="cloud"><var class="arrow"></var> 8</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417862/Tulisa-sizzles-in-the-sand-at-the-end-of-a-tough-year#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417861/Gwyneth-Paltrow-admits-it-would-have-been-better-to-stay-together-with-ex-Chris-Martin">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/364000/135x88/181364.jpg" alt="Gwyneth Paltrow, Chris Martin, coldplay, romance, conscious uncoupling, apple and moses, jennifer lawrence"> </span>
<h5 class="title" itemprop="name">'I’m still close to ex Chris' Gwyneth admits it 'would have be...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417861/Gwyneth-Paltrow-admits-it-would-have-been-better-to-stay-together-with-ex-Chris-Martin#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417861/Gwyneth-Paltrow-admits-it-would-have-been-better-to-stay-together-with-ex-Chris-Martin#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/417630/Luisa-Zissman-flaunts-bikini-body-on-festive-holiday">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/140/photos/478000/135x88/181478.jpg" alt=""> </span>
<h5 class="title" itemprop="name">New Year – same hot body! Sexy Luisa Zissman shows wild side i...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/417630/Luisa-Zissman-flaunts-bikini-body-on-festive-holiday#comments" class="comments"><span class="cloud"><var class="arrow"></var> 8</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/417630/Luisa-Zissman-flaunts-bikini-body-on-festive-holiday#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
</div>
</section>
</div>
<div class="rh type1">
<!-- Beginning Async AdSlot 3 for Ad unit DailyStar/News/Latest_News ### size: [[300,250]] -->
<!-- Adslot's refresh function: googletag.pubads().refresh([gptadslots[3]]) -->
<div id='div-gpt-ad-968280443172664182-3'>
<script type='text/javascript'>
googletag.display('div-gpt-ad-968280443172664182-3');
</script>
</div>
<!-- End AdSlot 3 --> </div>
<div class="rh type3">
<section class="aside section-stories">
<header>
<h4 class="left section-title">
<a href="http://www.dailystar.co.uk/showbiz/towie" class="left">TOWIE</a>
</h4>
<a class="right more" href="http://www.dailystar.co.uk/showbiz/towie">More</a>
</header>
<div class="first-story relative">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/towie/417996/Chloe-Sims-Elliott-Wright-pregnancy-rumours">
<div class="photo size-300x200">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/174/photos/594000/300x200/181594.jpg" alt="Eliliott Wright and Chloe Sims fuel pregnancy rumours"> </div>
<h5 class="title" itemprop="name">Baby on board? TOWIE’s Chloe Sims and Elliott Wright spark pregnancy rumours</h5>
<p class="lead">TOWIE couple Chloe Sims and Elliott Wright have sparked rumours that they are expecting.</p>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/towie/417996/Chloe-Sims-Elliott-Wright-pregnancy-rumours#comments" class="comments"><span class="cloud"><var class="arrow"></var> 1</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/towie/417996/Chloe-Sims-Elliott-Wright-pregnancy-rumours#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="stories">
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/towie/417453/Lucy-Meck-wears-thong-for-fitness-photoshoot">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/174/photos/515000/135x88/180515.jpg" alt="Lucy Mecklenburgh in sexy gymnastic display"> </span>
<h5 class="title" itemprop="name">'The sexiest move for a girl' Lucy Meck picks up gymnastics ti...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/towie/417453/Lucy-Meck-wears-thong-for-fitness-photoshoot#comments" class="comments"><span class="cloud"><var class="arrow"></var> 4</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/towie/417453/Lucy-Meck-wears-thong-for-fitness-photoshoot#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/towie/416663/Amy-Childs-dating-TOWIE-Tom-Pearce">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/174/photos/1000/135x88/179001.jpg" alt=""> </span>
<h5 class="title" itemprop="name">Shut up! Amy Childs dating TOWIE lothario Tom Pearce</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/towie/416663/Amy-Childs-dating-TOWIE-Tom-Pearce#comments" class="comments"><span class="cloud"><var class="arrow"></var> 2</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/towie/416663/Amy-Childs-dating-TOWIE-Tom-Pearce#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
<div class="items">
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/towie/416629/TOWIE-Jasmin-Walia-wears-world-s-smallest-shorts">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/174/photos/932000/135x88/178932.jpg" alt="Jasmin Walia TOWIE"> </span>
<h5 class="title" itemprop="name">Too hot to feel the cold! Sexy Jasmin Walia braves the cold in...</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/towie/416629/TOWIE-Jasmin-Walia-wears-world-s-smallest-shorts#comments" class="comments"><span class="cloud"><var class="arrow"></var> 2</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/towie/416629/TOWIE-Jasmin-Walia-wears-world-s-smallest-shorts#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
<section class="inline-story" itemscope itemtype="http://schema.org/Article">
<a class="story" href="http://www.dailystar.co.uk/showbiz/towie/416480/Towie-actors-get-bodyguards-save-them-from-female-fans">
<span class="photo size-135x88">
<img class="lazy" src="http://cdn.images.dailystar-uk.co.uk/img/static/placeholder-horizontal.gif" data-src="http://images.dailystar-uk.co.uk/dynamic/174/photos/509000/135x88/178509.jpg" alt="Dan Osborne with female fans"> </span>
<h5 class="title" itemprop="name">Towie lads get bodyguards to save them from female fans</h5>
</a>
<footer class="story-footer">
<a href="http://www.dailystar.co.uk/showbiz/towie/416480/Towie-actors-get-bodyguards-save-them-from-female-fans#comments" class="comments"><span class="cloud"><var class="arrow"></var> 0</span> Comments</a>
<var class="button-sep"><br></var>
<a href="http://www.dailystar.co.uk/showbiz/towie/416480/Towie-actors-get-bodyguards-save-them-from-female-fans#addthis" class="share"><i class="icon-share"></i> Share</a>
</footer>
</section>
</div>
</div>
</section>
</div>