-
Notifications
You must be signed in to change notification settings - Fork 0
/
media-twitch.html
1653 lines (1247 loc) · 38.2 KB
/
media-twitch.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" />
<title>Tera</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/foundation.min.css" />
<link rel="stylesheet" href="css/fonts.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="wrapper" id="wrapper">
<img src="css/images/bg-site01.jpg" alt="" id="siteBackground" class="hidden" />
<header class="header clearfix">
<div class="header-mobile visible-for-small-only clearfix">
<a href="#" class="bars alignleft">
<span></span>
<span></span>
<span></span>
</a>
<a href="#" class="logo notext">Tera</a>
<div class="link-search alignright">
<a href="#searchModal" class="modal-trigger">
<i class="ico-search"></i>
</a>
</div>
<div class="link-notifications dropdown-holder alignright">
<a href="#" class="dropdown-trigger">
<i class="ico-notifications"></i>
<strong class="counter-notifications">5</strong>
</a>
<div class="dropdown">
<ul>
<li>
<a href="#">
<img src="css/images/temp/avatar01.png" alt="" class="avatar" />
<strong>DanRomero</strong> liked your guide: <em>“How to defeat the mad ogre king...”</em>
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar02.png" alt="" class="avatar" />
<strong>DanRomero</strong> has sent you a personal message.
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar03.png" alt="" class="avatar" />
<strong>DanRomero</strong> liked your forum post in <em>“What’s the best character?”.</em>
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar04.png" alt="" class="avatar" />
<strong>DanRomero</strong> replied to a thread you track: <em>“How to defeat the mad ogre...”</em>
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar05.png" alt="" class="avatar" />
<strong>DanRomero</strong> and 12 others liked your guide <em>“How to defeat...”</em>
</a>
</li>
</ul>
<a href="#" class="btn-grey">More Notifications</a>
<div class="user-account clearfix">
<a href="#" class="user-data">
<img src="css/images/temp/avatar-dan-romero.png" alt="Dan Romero" />
DanRomero
</a>
<a href="#" class="link-settings">
<i class="ico-settings"></i>
</a>
</div><!-- /.user-account -->
<div class="link-chat">
<a href="#">
<i class="ico-chat"></i>
</a>
</div>
</div><!-- /.dropdown -->
</div>
</div><!-- /.header-mobile -->
<div class="header-bar visible-for-medium-up">
<div class="row">
<div class="game-switch dropdown-holder">
<a href="#" class="dropdown-trigger">
<img src="css/images/temp/enmasse-logo.png" alt="Enmasse Entertainment" />
</a>
<ul class="dropdown">
<li class="current">
<a href="#">
<img src="css/images/temp/tera-logo.png" alt="Tera" />
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/zmr-logo.png" alt="ZMR - Zombie, Monsters, Robots" />
</a>
</li>
</ul>
</div><!-- /.game-switch -->
<nav class="nav-access">
<ul>
<li>Welcome, olshiftyeye</li>
<li>
<a href="#">Account <strong>Settings</strong></a>
</li>
<li>
<a href="#">Account <strong>Sign Out</strong></a>
</li>
</ul>
</nav><!-- /.nav-access -->
</div><!-- /.row -->
</div><!-- /.header-bar -->
<nav class="nav">
<div class="row">
<a href="#" class="logo notext visible-for-medium-up">Tera</a>
<ul>
<li>
<a href="#">News</a>
</li>
<li>
<a href="#">Game Guide</a>
</li>
<li>
<a href="#">Media</a>
</li>
<li class="dropdown-holder">
<a href="#" class="dropdown-trigger">Community</a>
<ul class="dropdown">
<li>
<a href="#">
<i class="ico-house-small"></i>
Community Home
</a>
</li>
<li>
<a href="#">
<i class="ico-newsfeed-small"></i>
Newsfeed
</a>
</li>
<li>
<a href="#">
<i class="ico-forums-small"></i>
Forums
</a>
</li>
<li>
<a href="#">
<i class="ico-guides-small"></i>
Guides
</a>
</li>
<li>
<a href="#">
<i class="ico-media-small"></i>
Media
</a>
</li>
<li>
<a href="#">
<i class="ico-guilds-small"></i>
Guilds
</a>
</li>
</ul>
</li>
<li>
<a href="#">Support</a>
</li>
<li>
<a href="#">Store</a>
</li>
</ul>
<div class="user-account visible-for-small-only clearfix">
<a href="#" class="user-data">
<img src="css/images/temp/avatar-dan-romero.png" alt="Dan Romero" />
DanRomero
</a>
<a href="#" class="link-settings">
<i class="ico-settings"></i>
</a>
</div><!-- /.user-account -->
<div class="link-chat visible-for-small-only">
<a href="#">
<i class="ico-chat"></i>
</a>
</div>
</div><!-- /.row -->
</nav><!-- /.nav -->
<div class="header-bottom visible-for-medium-up">
<div class="row">
<div class="user-account alignleft">
<a href="#" class="user-data">
<img src="css/images/temp/avatar-dan-romero.png" alt="Dan Romero" />
DanRomero
</a>
<a href="#" class="link-settings">
<i class="ico-settings"></i>
</a>
</div><!-- /.user-account -->
<nav class="nav-utilities alignright">
<ul>
<li class="link-search">
<a href="#searchModal" class="modal-trigger">
<i class="ico-search"></i>
</a>
</li>
<li class="link-notifications dropdown-holder">
<a href="#" class="dropdown-trigger">
<i class="ico-notifications"></i>
<strong class="counter-notifications">5</strong>
</a>
<div class="dropdown">
<ul>
<li>
<a href="#">
<img src="css/images/temp/avatar01.png" alt="" class="avatar" />
<strong>DanRomero</strong> liked your guide: <em>“How to defeat the mad ogre king...”</em>
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar02.png" alt="" class="avatar" />
<strong>DanRomero</strong> has sent you a personal message.
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar03.png" alt="" class="avatar" />
<strong>DanRomero</strong> liked your forum post in <em>“What’s the best character?”.</em>
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar04.png" alt="" class="avatar" />
<strong>DanRomero</strong> replied to a thread you track: <em>“How to defeat the mad ogre...”</em>
</a>
</li>
<li>
<a href="#">
<img src="css/images/temp/avatar05.png" alt="" class="avatar" />
<strong>DanRomero</strong> and 12 others liked your guide <em>“How to defeat...”</em>
</a>
</li>
</ul>
<a href="#" class="btn-grey">More Notifications</a>
</div><!-- /.dropdown -->
</li>
<li class="link-chat">
<a href="#">
<i class="ico-chat"></i>
</a>
</li>
</ul>
</nav><!-- /.nav-utilities -->
</div><!-- /.row -->
</div><!-- /.header-bottom -->
</header><!-- /.header -->
<div class="row">
<div class="main clearfix">
<nav class="breadcrumbs">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Media</a>
</li>
<li class="current">
<a href="#">Twitch</a>
</li>
</ul>
<a href="#" class="sidebar-toggle hidden">
<span></span>
<span></span>
<span></span>
</a>
</nav><!-- /.breadcrumbs -->
<div class="main-body">
<header class="main-body-head">
<h2>
<i class="ico-video-camera"></i>
Streaming Now
</h2>
</header><!-- /.main-body-head -->
<section class="section-twitch media-player">
<div class="tab-twitch clearfix">
<div class="video">
<a href="#">
<span class="button-play"></span>
<img src="css/images/temp/twitch-video.jpg" alt="" />
</a>
<div class="video-controls">
<img src="css/images/temp/twitch-controls-large.jpg" alt="" />
</div><!-- /.video-controls -->
</div><!-- /.video -->
<aside class="tab-aside">
<div class="tab-aside-inner">
<div class="chatroom">
<h3>TERA Chat Room</h3>
<div class="chatroom-content">
<ul>
<li>
<strong class="purple">Daynoom:</strong>
Curabitir mollis s
</li>
<li>
<strong class="pink">Trouble_minded:</strong>
Morbi quis
</li>
<li>
<strong class="light-blue">Lilman393:</strong>
Nulla facilisi
</li>
<li>
<strong class="dead-green">Adamblan1:</strong>
honcus tellus
</li>
<li>
<strong class="blue">Therealsmoochez187:</strong>
Pellente
</li>
<li>
<strong class="red">Mr_moonie:</strong>
Maecenas vitae!!!
</li>
<li>
<strong class="purple">Daynoom:</strong>
Curabitir mollis s
</li>
<li>
<strong class="pink">Trouble_minded:</strong>
Morbi quis
</li>
<li>
<strong class="light-blue">Lilman393:</strong>
Nulla facilisi
</li>
<li>
<strong class="dead-green">Adamblan1:</strong>
honcus tellus
</li>
<li>
<strong class="blue">Therealsmoochez187:</strong>
Pellente
</li>
<li>
<strong class="red">Mr_moonie:</strong>
Maecenas vitae!!!
</li>
</ul>
</div><!-- /.chatroom-content -->
<form action="?" method="post">
<textarea name="chatroom-message" id="chatroom-message" cols="30" rows="10"></textarea>
<div class="form-controls clearfix">
<a href="#">
<i class="ico-chat-settings"></i>
</a>
<a href="#">
<i class="ico-chat-bar"></i>
</a>
<input type="submit" value="Chat" name="chat-submit" class="form-btn" />
</div><!-- /.form-controls -->
</form>
</div><!-- /.chatroom -->
</div><!-- /.tab-aside-inner -->
</aside><!-- /.tab-aside -->
</div><!-- /.tab-twitch -->
<div class="section-list clearfix">
<div class="columns small-12 medium-6 large-4">
<a href="#">
<img src="css/images/temp/twitch-stream01.jpg" alt="" />
</a>
</div><!-- /.columns small-12 medium-6 large-4 -->
<div class="columns small-12 medium-6 large-4">
<a href="#">
<img src="css/images/temp/twitch-stream02.jpg" alt="" />
</a>
</div><!-- /.columns small-12 medium-6 large-4 -->
<div class="columns small-12 medium-6 large-4">
<a href="#">
<img src="css/images/temp/twitch-stream03.jpg" alt="" />
</a>
</div><!-- /.columns small-12 medium-6 large-4 -->
<div class="columns small-12 medium-6 large-4">
<a href="#">
<img src="css/images/temp/twitch-stream04.jpg" alt="" />
</a>
</div><!-- /.columns small-12 medium-6 large-4 -->
<div class="columns small-12 medium-6 large-4">
<a href="#">
<img src="css/images/temp/twitch-stream05.jpg" alt="" />
</a>
</div><!-- /.columns small-12 medium-6 large-4 -->
<div class="columns small-12 medium-6 large-4">
<a href="#">
<img src="css/images/temp/twitch-stream06.jpg" alt="" />
</a>
</div><!-- /.columns small-12 medium-6 large-4 -->
</div><!-- /.section-list -->
<div class="section-actions">
<a href="#" class="btn-green">Load More</a>
</div><!-- /.section-actions -->
</section><!-- /.section-twitch -->
</div><!-- /.main-body -->
</div><!-- /.main -->
<footer class="footer hidden-for-small-only">
<div class="footer-body clearfix">
<a href="#" class="footer-logo">
<img src="css/images/temp/enmasse-logo-large.png" alt="EnMasse Entertainment" />
</a>
<nav class="footer-nav">
<ul>
<li>
<a href="#">Privacy Policy</a>
</li>
<li>
<a href="#">Terms of Service</a>
</li>
<li>
<a href="#">Jobs</a>
</li>
<li>
<a href="#">Contact Us</a>
</li>
<li>
<a href="#" class="scrolltop">Back to Top</a>
</li>
</ul>
</nav><!-- /.footer-nav -->
</div><!-- /.footer-body -->
<div class="footer-entry">
<p>Copyright (C) 2014 Bluehole Studio Inc. All Rights Reserved. Your use of this product is subject<br />to the terms of the license agreement available on our website, tera.enmasse.com.<br />TERATM, “TERA: Rising” and “TERA: The Exiled Realm of Arborea” are trademarks of Bluehole Studio Inc.<br />All other trademarks are the property of their respective owners.</p>
</div><!-- /.footer-entry -->
<div class="socials">
<ul>
<li>
<a href="#" class="link-facebook">
<i class="ico-facebook"></i>
</a>
</li>
<li>
<a href="#" class="link-twitter">
<i class="ico-twitter"></i>
</a>
</li>
<li>
<a href="#" class="link-youtube">
<i class="ico-youtube"></i>
</a>
</li>
<li>
<a href="#" class="link-googleplus">
<i class="ico-googleplus"></i>
</a>
</li>
<li>
<a href="#" class="link-rss">
<i class="ico-rss"></i>
</a>
</li>
<li>
<a href="#" class="link-reddit">
<i class="ico-reddit"></i>
</a>
</li>
</ul>
</div><!-- /.socials -->
</footer><!-- /.footer -->
</div><!-- /.row -->
</div><!-- /.wrapper -->
<div id="modalOverlay"></div><!-- /#modalOverlay -->
<div class="modal modal-search row" id="searchModal">
<header class="modal-head clearfix">
<h2>
<i class="ico-magnifying-glass"></i>
Search
</h2>
<i class="ico-modal-close modal-close" data-close="searchModal"></i>
</header><!-- /.modal-head -->
<div class="modal-body tabs-section">
<form action="?" method="post">
<input type="text" name="site-search" id="site-search" value="" placeholder="Raid..." />
<i class="ico-preloader spinning"></i>
</form>
<div class="tabs">
<div class="modal-section tab visible" id="modalSection1">
<div class="columns small-12 medium-12 large-4">
<h3>
<i class="ico-forums-main"></i>
Tera Forums
<a href="#modalSection2" class="modal-tab">Show <strong>17</strong> more...</a>
</h3>
<ul>
<li>
<a href="#">
<strong>Looking for a raiding partner.</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding this afternoon, PM me if you’re interested lorem ipsum</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Best gear for raiding the Mines of Moria?</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding guild, looking for members</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Another made up thread title with “raiding” in it</strong>
Views: 1,986 | Replies: 132
</a>
</li>
</ul>
</div><!-- /.columns small-12 medium-12 large-4 -->
<div class="columns small-12 medium-12 large-4">
<h3>
<i class="ico-book"></i>
Guides
<a href="#modalSection3" class="modal-tab">Show <strong>2</strong> more...</a>
</h3>
<ul>
<li>
<a href="#">
<strong>How to raid #likeaboss </strong>
Views: 594 | Replies: 20,000
</a>
</li>
<li>
<a href="#">
<strong>Raiding with a party of 4.</strong>
Views: 594 | Replies: 20,000
</a>
</li>
<li>
<a href="#">
<strong>Guide title with the word “raid” in it</strong>
Views: 594 | Replies: 20,000
</a>
</li>
<li>
<a href="#">
<strong>How to raid as a level 1 newb</strong>
Views: 594 | Replies: 20,000
</a>
</li>
<li>
<a href="#">
<strong>Is raid even a word used in TERA?</strong>
Views: 594 | Replies: 20,000
</a>
</li>
</ul>
</div><!-- /.columns small-12 medium-12 large-4 -->
<div class="columns small-12 medium-12 large-4">
<h3>
<i class="ico-friends"></i>
Users
<a href="#modalSection4" class="modal-tab">Show <strong>231</strong> more...</a>
</h3>
<ul>
<li>
<a href="#" class="avatar">
<img src="css/images/temp/avatar01.png" alt="" />
<strong>How to raid #likeaboss </strong>
Friends: 87 | Posts: 2.345
</a>
</li>
<li>
<a href="#" class="avatar">
<img src="css/images/temp/avatar12.png" alt="" />
<strong>Raiding with a party of 4.</strong>
Friends: 87 | Posts: 2.345
</a>
</li>
<li>
<a href="#" class="avatar">
<img src="css/images/temp/avatar13.png" alt="" />
<strong>Guide title with the word “raid” in it</strong>
Friends: 87 | Posts: 2.345
</a>
</li>
<li>
<a href="#" class="avatar">
<img src="css/images/temp/avatar11.png" alt="" />
<strong>How to raid as a level 1 newb</strong>
Friends: 87 | Posts: 2.345
</a>
</li>
<li>
<a href="#" class="avatar">
<img src="css/images/temp/avatar14.png" alt="" />
<strong>Is raid even a word used in TERA?</strong>
Friends: 87 | Posts: 2.345
</a>
</li>
</ul>
</div><!-- /.columns small-12 medium-12 large-4 -->
</div><!-- /.modal-section -->
<div class="modal-section tab" id="modalSection2">
<h3>
<i class="ico-forums-main"></i>
Tera Forums
<a href="#modalSection1" class="modal-tab">Show less...</a>
</h3>
<div class="columns small-12 medium-12 large-4">
<ul>
<li>
<a href="#">
<strong>Looking for a raiding partner.</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding this afternoon, PM me if you’re interested lorem ipsum</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Best gear for raiding the Mines of Moria?</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding guild, looking for members</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Another made up thread title with “raiding” in it</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Looking for a raiding partner.</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding this afternoon, PM me if you’re interested lorem ipsum</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Best gear for raiding the Mines of Moria?</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding guild, looking for members</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Another made up thread title with “raiding” in it</strong>
Views: 1,986 | Replies: 132
</a>
</li>
</ul>
</div><!-- /.columns small-12 medium-12 large-4 -->
<div class="columns small-12 medium-12 large-4">
<ul>
<li>
<a href="#">
<strong>Looking for a raiding partner.</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding this afternoon, PM me if you’re interested lorem ipsum</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Best gear for raiding the Mines of Moria?</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding guild, looking for members</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Another made up thread title with “raiding” in it</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Looking for a raiding partner.</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding this afternoon, PM me if you’re interested lorem ipsum</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Best gear for raiding the Mines of Moria?</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding guild, looking for members</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Another made up thread title with “raiding” in it</strong>
Views: 1,986 | Replies: 132
</a>
</li>
</ul>
</div><!-- /.columns small-12 medium-12 large-4 -->
<div class="columns small-12 medium-12 large-4">
<ul>
<li>
<a href="#">
<strong>Looking for a raiding partner.</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Raiding this afternoon, PM me if you’re interested lorem ipsum</strong>
Views: 1,986 | Replies: 132
</a>
</li>
<li>
<a href="#">
<strong>Best gear for raiding the Mines of Moria?</strong>
Views: 1,986 | Replies: 132
</a>