forked from codelucas/newspaper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglamour.com1.html
More file actions
2328 lines (893 loc) · 73.3 KB
/
Copy pathglamour.com1.html
File metadata and controls
2328 lines (893 loc) · 73.3 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>
<html class="no-js" lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Glamour Magazine">
<meta name="copyright" content="Copyright (c) CondéNet 2015">
<meta name="robots" content="noarchive">
<meta name="description" content="Oh, RiRi. You truly are an icon. When Rihanna walks into a fashion show, even editors, publicists, other celebs gasp. Gasp they did on Friday and Saturday as the cooler-than-thou-crooner sashayed into her costume designer Adam Selman's show, as well as those of Joseph Altuzarra and Alexander Wang. And she did not disappoint. Let's take a look at what she wore: At Adam Selman, RiRi rocked an elegant and girly white A-line dress with pearls and my favorite Christian Louboutin strappy pumps. For Altuzarra, she glammed out in super sophistication with a plunging black jacket with fringe from the designer's collection&#8212;WITHOUT PANTS. I LOVE IT. At Alexander Wang, she brought out her inner '90s child with a matching midnight blue hoodie and skirt. Are you a Rihhana fan? I love her. Now where's my plunging black jacket? Not to fret&#8212;I will wear pants.">
<meta name="news_keywords" content="adam selman,rihanna">
<meta name="format-detection" content="telephone=no">
<meta name="application-name" content="Glamour Magazine">
<meta property="fb:admins" content="694049960, 500038235, 542934201, 1510799, 706348009, 511257885, 789168297, 616818390, 823617">
<meta property="fb:app_id" content="101358874221">
<meta property="og:description" content="Oh, RiRi. You truly are an icon. When Rihanna walks into a fashion show, even editors, publicists, other celebs gasp. Gasp they did on Friday and Saturday as the cooler-than-thou-crooner sashayed into her costume designer Adam Selman's show, as well as those of Joseph Altuzarra and Alexander Wang. And she did not disappoint. Let's take a look at what she wore: At Adam Selman, RiRi rocked an elegant and girly white A-line dress with pearls and my favorite Christian Louboutin strappy pumps. For Altuzarra, she glammed out in super sophistication with a plunging black jacket with fringe from the designer's collection&#8212;WITHOUT PANTS. I LOVE IT. At Alexander Wang, she brought out her inner '90s child with a matching midnight blue hoodie and skirt. Are you a Rihhana fan? I love her. Now where's my plunging black jacket? Not to fret&#8212;I will wear pants.">
<meta property="og:image" content="http://www.glamour.com/images/fashion/2014/09/rihanna-altuzarra1-main.jpg">
<meta property="og:site_name" content="Glamour">
<meta property="og:title" content="Rihanna Leaves Pants at Home for Altuzarra Show, and We Love Her for It">
<meta property="og:url" content="http://www.glamour.com/fashion/blogs/dressed/2014/09/rihanna-leaves-pants-at-home-f">
<meta name="msapplication-TileColor" content="#f00a71">
<meta name="msapplication-TileImage" content="/css/i/global/cn_glamour.png">
<meta name="MSSmartTagsPreventParsing" content="true">
<meta name="p:domain_verify" content="8854eb20d50aeadef27b9dd8fa4f26c8">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:creator" content="SophiaChabbott">
<meta name="twitter:site" content="@glamourmag">
<meta name="twitter:image" content="/images/fashion/2014/09/rihanna-altuzarra1-square-w352.jpg">
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "NewsArticle",
"headline": "Rihanna Leaves Pants at Home for Altuzarra Show, and We Love Her for It",
"url": "http://www.glamour.com/fashion/blogs/dressed/2014/09/rihanna-leaves-pants-at-home-f",
"thumbnailUrl": "http://www.glamour.com/images/fashion/2014/09/rihanna-altuzarra1-square-w352.jpg",
"dateCreated": "2014-09-07T14:55:00.000Z",
"articleSection": "fashion",
"creator": "Sophia Chabbott",
"keywords": ["adam selman","rihanna"]
}
</script>
<title>Rihanna at Alexander Wang, Adam Selman, and Altuzarra at New York Fashion Week: Glamour.com</title>
<link rel="stylesheet" href="/aspen/css/glamour.css?v=0.1.53">
<!--[if IE 8]>
<link rel="stylesheet" media="Screen" href="/aspen/css/IE-8-fix.css?v=0.1.53" />
<![endif]-->
<link rel="canonical" href="http://www.glamour.com/fashion/blogs/dressed/2014/09/rihanna-leaves-pants-at-home-f">
<link rel="icon" href="/favicon.ico" type="image/x-icon" />
<script src="/aspen/js/build/modernizr-custom.js?v=0.1.53"></script>
<script>
'use strict';
var Courier = {
config: {"previewSocial":false,"skipView":false,"site":"glamour","env":"production","hostName":"http://www.glamour.com","lipstickLaunchDate":"20140409","sansHtmlDate":"20140808","services":{"cnid":{"apiKey":"85111a62-d034-4b3c-b404-04a06da7b1fd","host":"https://cnid.condenastdigital.com"},"eventCollector":{"env":"PROD","host":"http://event.glamour.com"},"eventResult":{"host":"http://result.glamour.com"},"social":{"host":"http://social.glamour.com"},"stats":{"host":"http://api.glamour.com","root":"/content/stats"},"userServiceHost":"https://user-service.condenastdigital.com","userServiceKey":"0OobSjxeOBbB5CMWzh3sAB5Vsdk="},"version":"0.1.53","viewSuffix":"","type":"blog-entry","view":"blog-entry","livefyre":{"articleIdPrefix":"glamour_","commentCountSelector":".livefyre-commentcount","commentsEnabledTag":"comments","lfCookieName":"lt","mostCommentedEntries":4,"mostCommentedId":"commented","mostPopularAge":15,"mostPopularEntries":5,"previewSocial":false,"socialStreamSelector":".stream","streams":[],"strings":{"moderator":"glamour"},"userToken":"eyJhbGciOiJIUzI1NiJ9.eyJkaXNwbGF5X25hbWUiOiJUZXN0IFVzZXIgTGl2ZWZ5cmUgMSIsImV4cGlyZXMiOiIxNDUwODI1ODE4IiwiZG9tYWluIjoiZ2xhbW91ci0wLmZ5cmUuY28iLCJ1c2VyX2lkIjoiMTIzNDU2Nzg5MCJ9.oVkq4ULCBpu7vn9v7qLBFtrAu8z9ejcEvILKVCFIiTY","network":"condenast.fyre.co","scripts":{"livefyre":"http://zor.livefyre.com/wjs/v3.0/javascripts/livefyre.js","commentCount":"http://zor.livefyre.com/wjs/v1.0/javascripts/CommentCount.js"},"siteId":"314714","trendingServer":"http://bootstrap.condenast.fyre.co/api/v3.0/hottest/?site=","pageConfig":{"articleId":"glamour_2000000002863673","checksum":"8c90c5c816100bb9e446b0b3585dd66f","collectionMeta":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0YWdzIjoiY29tbWVudHMiLCJ0aXRsZSI6IlJpaGFubmEgTGVhdmVzIFBhbnRzIGF0IEhvbWUgZm9yIEFsdHV6YXJyYSBTaG93LCBhbmQgV2UgTG92ZSBIZXIgZm9yIEl0IiwidXJsIjoiaHR0cDovL2dsYW1vdXIuY29tL2Zhc2hpb24vYmxvZ3MvZHJlc3NlZC8yMDE0LzA5L3JpaGFubmEtbGVhdmVzLXBhbnRzLWF0LWhvbWUtZj9pbWFnZVVybD0vaW1hZ2VzL2Zhc2hpb24vMjAxNC8wOS9yaWhhbm5hLWFsdHV6YXJyYTEtc3F1YXJlLXczNTIuanBnIiwiY2hlY2tzdW0iOiI4YzkwYzVjODE2MTAwYmI5ZTQ0NmIwYjM1ODVkZDY2ZiIsImFydGljbGVJZCI6ImdsYW1vdXJfMjAwMDAwMDAwMjg2MzY3MyJ9.lTcpwR51QLn-imMtCuBoGIX2ltHJTqwtuQmWIWaVU5s","el":"livefyre","siteId":"314714"}},"pageAdsPath":"//subscribe.glamour.com/ams/page-ads.js?ad_category_prefix=fashion&browser_path=%2Ffashion%2Fblogs%2Fdressed%2F2014%2F09%2Frihanna-leaves-pants-at-home-f&cat_prefixes=%2Cfashion%2Cblogs%2Cdressed%2C2014%2C09%2Crihanna-leaves-pants-at-home-f&keywords=fashion%2Cdesigners_and_fashion_week%2Cadamselman%2Crihanna%2Cblogs%2Cdressed%2C2014%2C09%2Crihanna_leaves_pants_at_home_f%2Cblog-entry&position_list=AMS_GLM_CONTENTPAGE_ZRAIL%2CAMS_GLM_GLOBAL_FLYIN%2CAMS_GLM_GLOBAL_FOOTER%2CAMS_GLM_GLOBAL_HEADERCALLOUT%2CAMS_GLM_GLOBAL_HEADERCALLOUT_COLLAPSE%2CAMS_GLM_GLOBAL_INTER%2CAMS_GLM_GLOBAL_LEFTNAV%2CAMS_GLM_LITEREG_SUBSCRIBE%2CAMS_GLM_MOBILE_CONTENTPAGE_ZRAIL%2CAMS_GLM_MOBILE_GLOBAL_FOOTER%2CAMS_GLM_TABLET_GLOBAL_HEADERCALLOUT%2CAMS_GLM_MOBILE_GLOBAL_NAVBAR%2CAMS_GLM_BLOG_RIGHTNAV&site_prefix=glamour&subdomain=www&url_name=rihanna-leaves-pants-at-home-f","dtm":{"pageValue":"all"}},
meta: {"contributor":"Sophia Chabbott","description":"Oh, RiRi. You truly are an icon. When Rihanna walks into a fashion show, even editors, publicists, other celebs gasp. Gasp they did on Friday and Saturday as the cooler-than-thou-crooner sashayed into her costume designer Adam Selman's show, as well as those of Joseph Altuzarra and Alexander Wang. And she did not disappoint. Let's take a look at what she wore: At Adam Selman, RiRi rocked an elegant and girly white A-line dress with pearls and my favorite Christian Louboutin strappy pumps. For Altuzarra, she glammed out in super sophistication with a plunging black jacket with fringe from the designer's collection—WITHOUT PANTS. I LOVE IT. At Alexander Wang, she brought out her inner '90s child with a matching midnight blue hoodie and skirt. Are you a Rihhana fan? I love her. Now where's my plunging black jacket? Not to fret—I will wear pants.","heds":{"display":"Rihanna Leaves Pants at Home for Altuzarra Show, and We Love Her for It","seo":"Rihanna at Alexander Wang, Adam Selman, and Altuzarra at New York Fashion Week: Glamour.com","social":"Rihanna Leaves Pants at Home for Altuzarra Show, and We Love Her for It"},"id":"2000000002863673","keywords":{"ads":["fashion","designers_and_fashion_week","adam selman","rihanna","blogs","dressed","2014","09","rihanna_leaves_pants_at_home_f","blog-entry"],"display":["adam selman","rihanna"],"hidden":[]},"pageType":"blogpost","pagination":{},"properties":"","publishDate":"2014-09-07T14:55:00.000Z","reactions":"","searchImage":"/images/fashion/2014/09/rihanna-altuzarra1-square-w352.jpg","section":"fashion","site":"glamour","source":"","subsection":"designers-and-fashion-week","type":"blog-entry","urls":{"canonical":"/fashion/blogs/dressed/2014/09/rihanna-leaves-pants-at-home-f","lookup":"/fashion/blogs/dressed/2014/09/rihanna-leaves-pants-at-home-f","social":"/fashion/blogs/dressed/2014/09/rihanna-leaves-pants-at-home-f"},"stitch":{}},
stats: {"2000000003015754":{"likes":2}}
};
Courier.config.cmPlacements = ["AMS_GLM_GLOBAL_LEFTNAV","AMS_GLM_MOBILE_GLOBAL_NAVBAR","AMS_GLM_GLOBAL_HEADERCALLOUT","AMS_GLM_GLOBAL_HEADERCALLOUT_COLLAPSE","AMS_GLM_BLOG_RIGHTNAV","AMS_GLM_CONTENTPAGE_ZRAIL","AMS_GLM_MOBILE_CONTENTPAGE_ZRAIL","AMS_GLM_MOBILE_GLOBAL_FOOTER","AMS_GLM_GLOBAL_FOOTER","AMS_GLM_GLOBAL_FLYIN"];
Courier.config.ads = {
desktop: { 'header': {"sz":"728x90","kws":["top"]}, 'blogcontent': {"sz":"300x250","kws":["bottom"]}, 'xrail': {"sz":"728x91","kws":[]}, 'yrail': {"sz":"300x250","kws":["top"]} },
mobile: { 'topmobile': {"sz":"320x50","kws":["top"]}, 'blogcontentmobile': {"sz":"300x52","kws":[]}, 'bottommobile': {"sz":"320x51","kws":["bottom"]} }
};
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="//assets.adobedtm.com/6372cf21ef88ee60bc2977a4898dcb5c7945a212/satelliteLib-97b05637e488bed6e0839467a3c617b166b09274.js"></script>
<script src="/aspen/js/build/glamour.js?v=0.1.53" async></script>
</head>
<body class="glamour l-blog-entry">
<div id="eventListHolder" style="display:none;"></div>
<div class="outer-wrapper">
<div class="sidebar-offcanvas">
<span data-toggle="offcanvas" class="btn-nav-close pull-right"></span>
<div class="glam-nav">
<dt class='fashion'>
<a href="/fashion" title="">Fashion</a>
</dt>
<dt class='beauty'>
<a href="/lipstick" title="">Beauty</a>
</dt>
<dt class='entertainment'>
<a href="/entertainment" title="">Celebs</a>
</dt>
<dt class='sex-love-life'>
<a href="/sex-love-life" title="">Sex <span style='color:#F00A71'>♥</span> Dating</a>
</dt>
<dt class='weddings'>
<a href="/weddings" title="">Weddings</a>
</dt>
<dt class='health-fitness'>
<a href="/health-fitness" title="">Health & Diet</a>
</dt>
<dt class='inspired'>
<a href="/inspired" title="">Inspired</a>
</dt>
<dt class='home'>
<a href="/home" title="">Living</a>
</dt>
<dt class='video'>
<a href="http://video.glamour.com/" title="">Video</a>
</dt>
<dt class='fashionweek'>
<a href="/fashion-week" title=""></a>
</dt>
<dt class='min-link-start'>
<a href="" title=""> </a>
</dt>
<dt class='magazine min-link'>
<a href="/magazine" title="">Magazine</a>
</dt>
<dt class='contest min-link'>
<a href="/win" title="">Free Stuff</a>
</dt>
<dt class='promo min-link'>
<a href="http://promotions.glamour.com/" title="">Promos</a>
</dt>
<dt class='app min-link'>
<a href="/magazine/apps" title="">Apps</a>
</dt>
<dt class='horoscopes min-link'>
<a href="/entertainment/horoscopes" title="">Horoscopes</a>
</dt>
<dt class='newsletters min-link'>
<a href="https://secure.glamour.com/services/newsletters/demographics" title="">Newsletters</a>
</dt>
</div>
<div class="social-skittles">
<a class="icon-fb" href="http://www.facebook.com/glamour" target="_blank">Facebook</a>
<a class="icon-tw" href="http://twitter.com/#!/glamourmag" target="_blank">Twitter</a>
<a class="icon-insta" href="http://instagram.com/glamourmag" target="_blank">Instagram</a>
<a class="icon-pin" href="http://pinterest.com/glamourmag/" target="_blank">Pinterest</a>
</div>
<div class="glamour-search-container">
<form name="search_form_rail" id="search_form_rail" action="/search" class="paginatorForm form-inline" method="get">
<input type="hidden" name="qt" value="dismax" />
<input type="hidden" name="sort" value="" />
<input type="search" name="query" id="results-search-rail" class="input-large search-query" value="" placeholder="Search" />
<button name="submit" class="submit" id="submit_rail" title="Search" type="submit"></button>
</form>
</div>
</div>
<div class="overlay-offcanvas" data-toggle="offcanvas"></div>
<div class="container utility-bar">
<div class="row">
<div class="span4">
<div id="AMS_GLM_GLOBAL_LEFTNAV" class="ecom-placement hidden-phone" style="visibility:hidden">
<div id="AMS_GLM_GLOBAL_LEFTNAV" class='static-subscribe-options-container'>
<a class="brand-logo" href="https://w1.buysub.com/loc/GLM/ATGFailsafe" title="Glamour"><img src="/aspen/img/Glamour_Logo_M.png" alt="GLAMOUR"></a>
<a href="https://w1.buysub.com/loc/GLM/ATGFailsafe" target="_blank" title="Subscribe to Glamour magazine">Subscribe</a>
<span class="divider">|</span>
<a href="https://w1.buysub.com/loc/GLM/ATGFailsafeGift" target="_blank" title="Give a Subscription to Glamour magazine as a Gift">Give a gift</a>
<span class="divider">|</span>
<a href="https://w1.buysub.com/servlet/CSGateway?cds_mag_code=GLM" target="_blank" title="Renew your Subscription to Glamour magazine">Renew</a>
</div>
</div>
</div>
<div class="login-container">
<span class="logged-out">
<a href="/user/login" class="login cnid-auth" title="Login">Log in / Register</a>
<a href="http://www.glamalert.com/" class="promos" title="Promos"> Promos </a>
</span>
<span class="logged-in">
<span class="login-msg">Hi
<span class="user-title"></span>
<a href="http://www.glamalert.com/" class="promos" title="Promos"> Promos </a>
</span>
<ul class="logout-box">
<li>
<a href="/user/logout" class="logout cnid-auth first">Logout</a>
</li>
<li>
<a href="/user/update" class="update-profile">Edit Profile</a>
</li>
</ul>
</span>
</div>
</div>
</div>
<div class="header-anchor"></div>
<div class="header-container text-center">
<div class="header-ad">
<div id="header728x90_frame"></div>
<div id="topmobile320x50_frame"></div>
</div>
<div class="top-header">
<div class="container">
<div class="nav-logo pull-left text-left">
<span data-toggle="offcanvas" class="btn-nav-dd pull-left"></span>
<a class="glamour-logo" href="/"><img src="/aspen/img/Glamour_Logo_M.png" alt="GLAMOUR"/></a>
<a href="/fashion" class="active-section" title="">Fashion</a>
<ul class="section-nav"></ul>
</div>
<div class="top-header-ecom pull-right text-right">
<div id="AMS_GLM_MOBILE_GLOBAL_NAVBAR" class="ecom-placement visible-phone" style="visibility:hidden">
<div id="mobile_global_navbar" title="Subscribe to Glamour magazine">
<a href="https://w1.buysub.com/loc/GLM/ATGFailsafeMobile" target="_blank"><span>Subscribe</span></a>
</div>
</div>
<div id="AMS_GLM_GLOBAL_HEADERCALLOUT" class="ecom-placement hidden-phone" style="visibility:hidden">
<div class='ecom-placement-content' style="width:300px; float:right; background-color: #f00a71; color: #fff; position:relative;">
<div class="subs-text" style="width:210px; text-align:center; height:60px; display:table-cell; vertical-align:middle;">
<a style="color:#fff" href="https://w1.buysub.com/loc/GLM/ATGFailsafe" target="_blank" title="Subscribe to Glamour magazine" rel="nofollow">SUBSCRIBE</a>
<p style="margin:0; text-transform:none; font-style:italic;"><a style="color:#fff" href="https://w1.buysub.com/loc/GLM/ATGFailsafe" target="_blank" title="Subscribe to Glamour magazine" rel="nofollow">For Just <strong>$1.25</strong> An Issue</a></p>
</div>
<a style="color:#fff" href="https://w1.buysub.com/loc/GLM/ATGFailsafe" target="_blank" title="Subscribe to Glamour magazine" rel="nofollow"><img class="mag-image" style="position:absolute; top:-42px; right:15px;" src="https://subscribe.condenet.com/images_covers/cover_glamour_80.jpg" width="75" /></a>
</div>
</div>
<div id="AMS_GLM_GLOBAL_HEADERCALLOUT_COLLAPSE" class="ecom-placement hidden-phone" style="visibility:hidden">
<div class='ecom-placement-content'>
<div id="subs-collapsed"><a href="https://w1.buysub.com/loc/GLM/ATGFailsafe" target="_blank" title="Subscribe to Glamour magazine" rel="nofollow">SUBSCRIBE</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="main-container">
<div class="glamour-content container">
<div class="article-wrapper row">
<div class="span8 article-container">
<div class="article blog-article">
<div id="AMS_GLM_BLOG_RIGHTNAV" class="ecom-placement hidden-phone" style="visibility:hidden">
<a href="https://w1.buysub.com/loc/GLM/ATGFailsafe" target="_blank">Subscribe</a>
</div>
<div class="article-header">
<div class="blog-header">
<a href="/fashion/blogs/dressed/" class="blog-title"><span class="text">Dressed</span></a>
</div>
<ul class="blognav">
<li class="previous">
<a class="previous-arrow" href="/fashion/blogs/dressed/2014/09/the-comfortable-and-chic-eveni"></a>
<div class="prev-story">
<h4>prev story</h4>
<a class="permalink" href="/fashion/blogs/dressed/2014/09/the-comfortable-and-chic-eveni" title="The Comfortable and Chic Evening Wear Trend Hot Off the Spring 2015 Runways"><img src="/images/fashion/2014/09/evening-trousers-w724.jpg">The Comfortable and Chic Evening Wear Trend Hot Off the Spring 2015 Runways</a>
</div>
</li>
<li class="next">
<a class="next-arrow" href="/fashion/blogs/dressed/2014/09/spring-2015-fashion-trend-flat"></a>
<div class="next-story">
<h4>next story</h4>
<a class="permalink" href="/fashion/blogs/dressed/2014/09/spring-2015-fashion-trend-flat" title="Found at NYFW: The Best Way to Flatter Your Waist for Spring 2015 and Beyond"><img src="/images/fashion/2014/09/soft-obi-belts-nyfw-bcbg-1-w352.jpg">Found at NYFW: The Best Way to Flatter Your Waist for Spring 2015 and Beyond</a>
</div>
</li>
</ul>
<h1 class="span6">Rihanna Leaves Pants at Home for Altuzarra Show, and We Love Her for It</h1>
<div class="byline-container top">
<div class="byline">
By
<cite class="vcard author">
<a href="/contributors/sophia-chabbott">Sophia Chabbott</a>
</cite>
</div>
<div class="date-time-stamp">September 7, 2014</div>
</div>
<div class="social-container">
<div class="sharrre-tools"></div>
<div class="comment-count-social">
<a href="#comments">
<span class="livefyre-commentcount" data-lf-site-id="314714" data-lf-article-id="glamour_2000000002863673"></span>
</a>
</div>
</div>
</div>
<div class="article-text">
<p>Oh, RiRi. <a href="http://www.glamour.com/fashion/blogs/dressed/2013/07/glamour-icon-of-the-week-rihan">You truly are an icon</a>. </p> <p>When <a href="www.glamour.com/about/rihanna">Rihanna</a> walks into a fashion show, even editors, publicists, <em>other celebs</em> gasp. Gasp they did on Friday and Saturday as the cooler-than-thou-crooner sashayed into her costume designer Adam Selman's show, as well as those of <a href="www.glamour.com/about/altuzarra">Joseph Altuzarra</a> and <a href="www.glamour.com/about/alexander-wang">Alexander Wang</a>. And she did not disappoint. Let's take a look at what she wore:</p> <p><img src="http://www.glamour.com/images/fashion/2014/09/rihanna-adam-selman-w352.jpg" data-dam-id="2000000002863644" alt="rihanna-adam-selman"><br /> At Adam Selman, RiRi rocked an elegant and girly white A-line dress with pearls and my favorite Christian Louboutin strappy pumps.</p> <p><img src="http://www.glamour.com/images/fashion/2014/09/rihanna-altuzarra1-w352.jpg" data-dam-id="2000000002863643" alt="rihanna-altuzarra1"><br /> For Altuzarra, she glammed out in super sophistication with a plunging black jacket with fringe from the designer's collection—WITHOUT PANTS. I LOVE IT.</p> <p><img src="http://www.glamour.com/images/fashion/2014/09/rihanna-alexander-wang-w352.jpg" data-dam-id="2000000002863627" alt="rihanna-alexander-wang"><br /> At Alexander Wang, she brought out her inner '90s child with a matching midnight blue hoodie and skirt.</p> <p><strong>Are you a Rihhana fan? I love her. Now where's my plunging black jacket? Not to fret—I will wear pants.</strong></p>
<h6>Photos: Getty Images</h6>
<div class="ad-container">
<span class="ad-copy">ADVERTISEMENT</span>
<div id="blogcontent300x250_frame"></div>
<div id="blogcontentmobile300x52_frame"></div>
</div>
</div>
<div class="social-container">
<div class="sharrre-tools"></div>
</div>
<div class="byline-container bottom">
<div class="span1 author-image border-image-style">
<a href="/contributors/sophia-chabbott">
<img src="/images/contributors/sophia-chabbott.jpg" />
</a>
</div>
<div class="byline">
<cite class="vcard author">
<a href="/contributors/sophia-chabbott">Sophia Chabbott</a>
</cite>
<span class="byline-desc">Senior online fashion editor, Alaïa enthusiast, collector of white button down shirts, shredded jean shorts, and huge fan of beach waves.</span>
<div class="author-contact">
<a id="popup-share" class="twitter-btn" href="https://twitter.com/intent/follow?screen_name=SophiaChabbott">FOLLOW ME</a>
</div>
</div>
</div>
<div class="article-keywords">
<h4>Keywords:</h4>
<ul>
<li>
<a title="search site for "adam selman"" rel="tag" href="/about/adam-selman">adam selman</a>
</li>
<li>
<a title="search site for "rihanna"" rel="tag" href="/about/rihanna">rihanna</a>
</li>
</ul>
</div>
</div>
<div class="mobile-social">
<span class="mobile-share"></span>
<div class="icons">
<div class="sharrre-tools-list"></div>
<div class="whatsapp">
<a href="whatsapp://send?text=Rihanna Leaves Pants at Home for Altuzarra Show, and We Love Her for It%0D%0A%0D%0Ahttp://www.glamour.com/fashion/blogs/dressed/2014/09/rihanna-leaves-pants-at-home-f"></a>
</div>
</div>
</div>
<h2 class="zergnet-header">Recommended</h2>
<div id="zergnet-widget-22569"></div>
<div id="comments">
<div id="livefyre"></div>
</div>
<div class="xrail">
<div class="span #blogs-leaderboard-ad">
<section id="ps_fs" class="features">
<div class="feature feature-1 dart_ad first last">
<div class="ad-container">
<div id="xrail728x91_frame"></div>
</div>
</div>
</section>
</div>
<div class="span more-stories">
<section id="ps_fs" class="features">
<h2 class="features-header header">More Stories Like This</h2>
<div class="feature feature-1 search resultswithimage first last">
<div class="s-item article_v2 full-width">
<div class="s-media">
<a href="/fashion/blogs/dressed/2015/01/still-dont-know-what-to-wear-t">
<img class="visible-phone" alt="The 5 New Ways To Style Pants That Will Rock Your World" src="/images/fashion/2014/12/nye-pants-river-square-w352.jpg">
<img class="hidden-phone" alt="The 5 New Ways To Style Pants That Will Rock Your World" src="/images/fashion/2014/12/nye-pants-river-w724.jpg" />
</a>
</div>
<div class="s-content">
<span class="section-title"><a href="/fashion">fashion</a></span>
<a class="hidden-phone s-title" href="/fashion/blogs/dressed/2015/01/still-dont-know-what-to-wear-t">The 5 New Ways To Style Pants That Will Rock Your World</a>
<a class="visible-phone s-title" href="/fashion/blogs/dressed/2015/01/still-dont-know-what-to-wear-t">The 5 New Ways To Style Pants That Will Rock Your World</a>
<div class="search-byline">By <a href="/contributors/avery-matera">Avery Matera</a></div>
<div class="timestamp">13 hours ago</div>
</div>
</div>
<div class="s-item article_v2 full-width">
<div class="s-media">
<a href="/fashion/blogs/dressed/2015/01/nye-may-be-over-but-you-can-st">
<img class="visible-phone" alt="Over Glitter? Never. Glitter Shoes That Are Year-Round Approved" src="/images/fashion/2015/01/garance-dore-square-w352.jpg">
<img class="hidden-phone" alt="Over Glitter? Never. Glitter Shoes That Are Year-Round Approved" src="/images/fashion/2015/01/garance-dore-w724.jpg" />
</a>
</div>
<div class="s-content">
<span class="section-title"><a href="/fashion">fashion</a></span>
<a class="hidden-phone s-title" href="/fashion/blogs/dressed/2015/01/nye-may-be-over-but-you-can-st">Over Glitter? Never. Glitter Shoes That Are Year-Round Approved</a>
<a class="visible-phone s-title" href="/fashion/blogs/dressed/2015/01/nye-may-be-over-but-you-can-st">Over Glitter? Never. 17 Glitter Shoes That Are Year-Round Approved</a>
<div class="search-byline">By <a href="/contributors/avery-matera">Avery Matera</a></div>
<div class="timestamp">14 hours ago</div>
</div>
</div>
</div>
</section>
</div>
<div class="span most popular">