-
Notifications
You must be signed in to change notification settings - Fork 1
/
mock_data.yml
990 lines (976 loc) · 39.4 KB
/
mock_data.yml
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
hammer_nav:
disabled: false
shared_themes:
"Code": "code"
"University Relations: WVU Design System": "wvu-design-system"
show_editable_regions: false #If true a div with `border: 1px dashed red` will be injected into the content of the region
editable_region:
main: This is content for the main editable region. Change what it says in the mock_data.yml file.
sidebar: Sidebar stuff.
contact: |
<p><strong>Division of Virginia West Advancement</strong></p>
<p>1111 WVU Road Suite 250 | P.O. Box 6202 | Morgantown, WV 26506-6202</p>
<p><strong>Phone:</strong> 304.293.5600 | <strong>Fax:</strong> 304.293.8279 | <strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
search-content: ""
wvu-action-hero-1__header: "Action Hero Header"
wvu-action-hero-1__main: |
<p class="lead pb-2">
This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.
</p>
<a class="btn btn-wvu-blue btn-lg" href="#">Call to Action</a>
<p class="mt-2">Here is a <a href="#" class="text-wvu-accent--darl-blue">Secondary Call to Action</a></p>
wvu-action-hero-card-1__header: "Action Hero Card Header"
wvu-action-hero-card-1__main: |
<p class="lead mb-2">
<%= Faker::Lorem.paragraph(1) %>
</p>
<p class="mb-2"><%= Faker::Lorem.paragraph(1) %>
</p>
<p>
<a href="#" class="btn btn-primary">Call to Action</a>
</p>
wvu-action-hero-card-1-default-component-classes: "wvu-bg-blend-mode-lighten wvu-bg-pattern-grid bg-wvu-blue"
wvu-action-hero-split-1__header: "Action Hero Header"
wvu-action-hero-split-1__main: |
<p class="iowan-old-style-italic text-wvu-blue h1">Center for Cool Innovation</p>
<p class="lead mb-4"><%= Faker::Lorem.paragraph(6) %></p>
<a href="#" class="btn btn-primary">Action Item</a>
wvu-action-hero-two-column-1__header: "Action Hero Header"
wvu-action-hero-two-column-1__main: |
<p class="h3 mb-3 helvetica-neue-light"><%= Faker::Lorem.paragraph(6) %>
</p>
<a href="#" class="btn btn-primary mb-1">Call to Action</a>
wvu-agenda-item__main: ""
wvu-agenda-item__time: ""
wvu-big-search-1__header: "Big Search Header"
wvu-big-search-1__main: |
<p class="helvetica-neue-light h3">Type your search term below.</p>
wvu-big-search-1__postscript: |
<p>Not sure what to search for? Browse our <a class="text-wvu-blue" href="#">categories</a>.</p>
wvu-blog-article-1__main: |
<p><%= Faker::Lorem.paragraph(6) %></p>
<p><%= Faker::Lorem.paragraph(6) %></p>
<figure class="mt-4 mx-lg-n5">
<img alt="Pom Poms in a crowd" data-asset-id="127904" data-asset-version="960x640"
src="https://designsystem.sandbox.wvu.edu/files/0bad594b-5c78-485a-b465-7798861067a2/960x640">
</figure>
<figcaption class="mb-4">
<small class="d-block iowan-old-style">
<%= Faker::Lorem.paragraph(2) %>
</small>
</figcaption>
<p>
<%= Faker::Lorem.paragraph(6) %>
</p>
<blockquote class="iowan-old-style-black-italic h2 wvu-bar wvu-bar--center my-4 pb-1 text-center mx-lg-n5"><%= Faker::Lorem.paragraph(1) %>
<span class="d-block iowan-old-style text-uppercase wvu-letter-spacing h5 mt-2">Joe Schmoe</span>
</blockquote>
<p><%= Faker::Lorem.paragraph(6) %></p>
wvu-blog-article-hero-1__subhead: |
<p class="helvetica-neue-bold h2">Subhead goes here.</p>
wvu-blog-index-1__main: ""
wvu-contact-info-1__address: |
<h2 class="h5 iowan-old-style-black">
<span class="fas fa-map-marker-alt position-absolute"></span>
<span class="pl-3 d-block">Find Us at the office</span>
</h2>
<address class="pl-3">
<small class="d-block">
<strong>West Virginia University</strong>
<br> 1345 Market St, Suite 900
<br> Morgantown, WV 26505
<br>
</small>
</address>
wvu-contact-info-1__form: |
<form class="px-3 py-4">
<h2>Or fill out our form.</h2>
<div class="form-group">
<label id="username-label" for="exampleFormControlInput1">Username</label>
<input aria-labelledby="username-label" type="text" class="form-control" id="exampleFormControlInput1"
placeholder="[email protected]" autocomplete="off" style="background-image: url(""); cursor: auto;"
data:image="" background-repeat:="" no-repeat="" background-attachment:="" scroll=""
background-size:="" background-position:="">
</div>
<div class="form-group">
<label id="password-label" for="exampleFormControlInput1">Password</label>
<input aria-labelledby="password-label" type="password" class="form-control" id="exampleFormControlInput2"
placeholder="••••••••" autocomplete="off" style="background-image: url(""); cursor: auto;"
data:image="" background-repeat:="" no-repeat="" background-attachment:="" scroll=""
background-size:="" background-position:="" cursor:="" auto="">
</div>
<button type="submit" class="btn btn-primary">Log In</button>
<p class="mt-2 small">
<a href="#">Forgot password?</a>
</p>
</form>
wvu-contact-info-1__header: |
<p class="helvetica-neue-light h2 mb-3 pr-md-3"><%= Faker::Lorem.paragraph(1) %></p>
wvu-contact-info-1__phone: |
<h2 class="h5 iowan-old-style-black mt-3">
<span class="fas fa-phone position-absolute"></span>
<span class="pl-3 d-block">By Phone or Email</span>
</h2>
<address class="pl-3 mb-4">
<small class="d-block">
<abbr title="Phone">P:</abbr> (123) 456-7890
<br>
<strong>Full Name</strong>
<br>
<a href="mailto:#">[email protected]</a>
</small>
</address>
wvu-directory-1__header: |
<h2>Staff Directory Headline</h2>
wvu-editable-region-1__main: ""
wvu-faculty-profile-1__figcaption: "<%= Faker::Lorem.paragraph(2) %>"
wvu-faculty-profile-1__figure: |
<img alt="Placeholder" src="https://via.placeholder.com/1200x800" />
wvu-faculty-profile-1__main: |
<p><%= Faker::Lorem.paragraph(6) %></p>
<p><%= Faker::Lorem.paragraph(6) %></p>
<p><%= Faker::Lorem.paragraph(6) %></p>
wvu-faculty-profile-1__sidebar-top: |
<p class="helvetica-neue-light h5 mb-3"><%= Faker::Lorem.paragraph(6) %></p>
wvu-featurettes-1__header: |
<h2 class="display-3 wvu-shout">Featurettes Headline</h2>
<p class="h3 helvetica-neue-light mb-4">Subhead goes here.</p>
wvu-featurettes-1-button-text: "Read More"
wvu-featurettes-1-item-header-classes: "mb-4"
wvu-featurettes-1__postscript: |
<p class="mb-0">Put additional info or <a href="#">links</a> here.</p>
wvu-footer-1__main: |
<address class="mb-4">
<p>
<strong>Organization Name</strong><br>
Address Line 1<br>
Address Line 2<br>
</p>
<p>
<a class="fas fa-phone" href="tel:3041234567">(304) 123-4567</a><br>
<a class="fas fa-envelope" href="mailto:[email protected]">[email protected]</a>
</p>
</address>
wvu-full-bleed-photo-1__main: |
<img src="https://designsystem.sandbox.wvu.edu/files/7f5da73f-36df-4693-a2c8-f01398b3adbd/1720x1720" alt="Cheerleaders waving a flag">
wvu-full-bleed-photo-1__caption: "<%= Faker::Lorem.paragraph(5) %>"
wvu-full-bleed-photo-1-caption-classes: "d-block wvu-p-max-width"
wvu-twitter-widget-1__header: |
<h2 id="twitter-widget-1-label" class="lede text-center pt-5">Follow us on Twitter</h2>
wvu-hero-1__header: "It Starts Now"
wvu-hero-1__main: |
<p class="lead py-2"><%= Faker::Hacker.say_something_smart %> <%= Faker::Hacker.say_something_smart %></p>
<a class="btn btn-primary btn-lg" href="#">Call to Action</a>
wvu-lede-text-1__main: "<%= Faker::Lorem.paragraph(5) %>"
wvu-log-in-1__main: |
<form class="px-3 py-4">
<h2>Log In</h2>
<div class="form-group">
<label for="exampleFormControlInput1">Username</label>
<input type="text" class="form-control" id="exampleFormControlInput1" placeholder="[email protected]" autocomplete="off" style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAYdJREFUOBGVVLuKwkAUPTErioVgY5WF2AhpFKz8AC0W0vgTK9injvkMt7HyB6zWSuy1s1WRXUJQ0cJCxSLOnSSzcYmaDGTmPs45M3fuEMmyrA/XdXvse0eMIUnSD4N9drvdb4KnkpCJ4G/0RTYNEoi1swf35jAnFU68snO5HMrl8h0skYCqqmg0GtEC2WxWJDKZDNhlCT+cE0HfeKNV13XUajUMBgPs93t0Oh3Yto1+v3+X+08mP1EJUQKSaZouJeiY5/OZY6iEy+UShRcxVuIvc9riBAGZEK/IhGGtVNjS43dAgWej2WyiUqlAlmWs12sMh0OcTicuIk7wTOBwOGA+n2O5XELTNJRKJQFP+W9bBKKM6XSK4/GIfD4Px3G4UIAjgXYckXq9DkVRsN1ukU6nAz7+XosIeUbQHfKIcL1eUa1W0Wq1MB6PMZlMODDWJRqGgd1uh0KhwEmbzYavND0UoD77rcJoNEKxWOS1LxYLrFYrLkCYhwIMQXdDPxplNptxQngiMmFuABiQmENn7wkAAAAASUVORK5CYII="); background-repeat: no-repeat; background-attachment: scroll; background-size: 16px 18px; background-position: 98% 50%;">
</div>
<div class="form-group">
<label for="exampleFormControlInput1">Password</label>
<input type="password" class="form-control" id="exampleFormControlInput2" placeholder="••••••••" autocomplete="off" style="background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAYdJREFUOBGVVLuKwkAUPTErioVgY5WF2AhpFKz8AC0W0vgTK9injvkMt7HyB6zWSuy1s1WRXUJQ0cJCxSLOnSSzcYmaDGTmPs45M3fuEMmyrA/XdXvse0eMIUnSD4N9drvdb4KnkpCJ4G/0RTYNEoi1swf35jAnFU68snO5HMrl8h0skYCqqmg0GtEC2WxWJDKZDNhlCT+cE0HfeKNV13XUajUMBgPs93t0Oh3Yto1+v3+X+08mP1EJUQKSaZouJeiY5/OZY6iEy+UShRcxVuIvc9riBAGZEK/IhGGtVNjS43dAgWej2WyiUqlAlmWs12sMh0OcTicuIk7wTOBwOGA+n2O5XELTNJRKJQFP+W9bBKKM6XSK4/GIfD4Px3G4UIAjgXYckXq9DkVRsN1ukU6nAz7+XosIeUbQHfKIcL1eUa1W0Wq1MB6PMZlMODDWJRqGgd1uh0KhwEmbzYavND0UoD77rcJoNEKxWOS1LxYLrFYrLkCYhwIMQXdDPxplNptxQngiMmFuABiQmENn7wkAAAAASUVORK5CYII="); background-repeat: no-repeat; background-attachment: scroll; background-size: 16px 18px; background-position: 98% 50%; cursor: auto;">
</div>
<button type="submit" class="btn btn-primary">Log In</button>
<p class="mt-2 small">
<a href="#">Forgot password?</a>
</p>
</form>
wvu-major-1__main: |
<p><%= Faker::Lorem.paragraph(5) %></p>
<p><%= Faker::Lorem.paragraph(5) %></p>
wvu-photo-gallery-1__header: ""
wvu-profile-1__download: |
<a href="#">Download</a>
wvu-profile-1__main: |
<p><%= Faker::Lorem.paragraph(5) %></p>
<p><%= Faker::Lorem.paragraph(5) %></p>
wvu-profile-1__quote: "<%= Faker::Lorem.paragraph(3) %>"
wvu-profile-teaser-1__image: |
<img class="rounded-circle shadow" src="https://via.placeholder.com/960x960" alt="Placeholder" />
wvu-profile-teaser-1__main: |
<p>
<span class="text-uppercase">Label goes here</span>
</p>
<h2 class="wvu-shout h1">Firstname Lastname</h2>
<p class="h3 iowan-old-style-italic mb-2">
Subhead goes here.
</p>
<p class="mb-0">
<p><%= Faker::Lorem.paragraph(3) %></p>
</p>
<p class="mb-0 mt-2">
<a class="btn btn-primary btn-sm" href="#">Call to Action</a>
</p>
wvu-profile-teaser-1__postscript: |
<h2 class="wvu-shout">Also See:</h2>
<ul class="wvu-ul-slashes wvu-ul-slashes--gold">
<li>
<a href="#">Related Link 1</a>
</li>
<li>
<a href="#">Related Link 2</a>
</li>
<li>
<a href="#">Related Link 3</a>
</li>
<li>
<a href="#">Related Link 4</a>
</li>
</ul>
wvu-profiles-1__header: |
<h2 class="display-3 wvu-shout">Profiles Headline</h2>
<p class="h3 helvetica-neue-light">Subhead goes here.</p>
wvu-quicklinks-1__header: "Quicklinks"
wvu-quicklinks-1__main: |
<ul class="list-unstyled wvu-column-count-3">
<li>
<a class="text-wvu-blue" href="https://housing.wvu.edu/apply-for-housing">Apply for Housing</a>
</li>
<li>
<a class="text-wvu-blue" href="https://admissions.wvu.edu/how-to-apply">Apply to WVU</a>
</li>
<li>
<a class="text-wvu-blue" href="https://studentaccounts.wvu.edu/billing">Billing / Pay Tuition</a>
</li>
<li>
<a class="text-wvu-blue" href="http://wvu.bncollege.com/">Bookstore</a>
</li>
<li>
<a class="text-wvu-blue" href="https://provost.wvu.edu/academic-calendar">Calendar (Academic)</a>
</li>
<li>
<a class="text-wvu-blue" href="https://calendar.wvu.edu/">Calendar (Main)</a>
</li>
<li>
<a class="text-wvu-blue" href="https://visit.wvu.edu/tours">Campus Tours</a>
</li>
<li>
<a class="text-wvu-blue" href="https://star.wvu.edu/pls/starprod/bwckschd.p_disp_dyn_sched">Course Schedule</a>
</li>
<li>
<a class="text-wvu-blue" href="http://catalog.wvu.edu/">Courses</a>
</li>
<li>
<a class="text-wvu-blue" href="https://diningservices.wvu.edu/menus">Dining Menus</a>
</li>
<li>
<a class="text-wvu-blue" href="https://directory.wvu.edu/">Directory</a>
</li>
<li>
<a class="text-wvu-blue" href="https://ecampus.wvu.edu/">eCampus</a>
</li>
<li>
<a class="text-wvu-blue" href="https://studentaccounts.wvu.edu/refunds">Get Your Refund</a>
</li>
<li>
<a class="text-wvu-blue" href="https://graduateadmissions.wvu.edu/academics/graduate-programs">Graduate Programs</a>
</li>
<li>
<a class="text-wvu-blue" href="https://it.wvu.edu/">Information Technology Services</a>
</li>
<li>
<a class="text-wvu-blue" href="https://lib.wvu.edu/">Libraries</a>
</li>
<li>
<a class="text-wvu-blue" href="https://www.wvu.edu/academics/programs">Majors</a>
</li>
<li>
<a class="text-wvu-blue" href="https://wvu.teamdynamix.com/TDClient/KB/ArticleDet?ID=39990">Mounty Bounty Deposits</a>
</li>
</ul>
wvu-quicklinks-1__postscript: |
<p class="mb-0">View <a class="text-wvu-blue" href="#">all quicklinks</a>.</p>
wvu-stat-sheet-1__header: "Estimate your scholarships."
wvu-stat-sheet-1__main: |
<p class="lead py-2 w-75 mx-auto">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
<a class="btn btn-primary btn-lg" href="#">Call to Action</a>
wvu-stat-sheet-1__stats: |
<h2 class="wvu-h3">Tuition Rates</h2>
<p class="mb-2">Looking for a quick ballpark figure? We have you covered.</p>
<table class="table mb-2">
<tbody>
<tr>
<th class="helvetica-neue-bold border-0">Tuition Rates</th>
<th class="helvetica-neue-bold border-0">Cost Per Year</th>
</tr>
<tr>
<td class="border-wvu-accent--dark-blue">In-state tuition and fees</td>
<td class="border-wvu-accent--dark-blue">$8,976</td>
</tr>
<tr>
<td class="border-wvu-accent--dark-blue">Out-of-state tuition and fees</td>
<td class="border-wvu-accent--dark-blue">$25,320</td>
</tr>
<tr>
<td class="border-wvu-accent--dark-blue">Room and board expenses</td>
<td class="border-wvu-accent--dark-blue">$10,284</td>
</tr>
</tbody>
</table>
<p class="wvu-text--micro">
<small class="d-block">
<em>(Rates for 2019-20. Rates are subject to change. Listed costs are
based on two semesters with a minimum of 12 credits each. Room and board
costs are based on double occupancy in a residence hall and a 15-meal plan.)</em>
</small>
</p>
wvu-twitter-widget-1__header: |
<h2 class="mb-0 display-4">Twitter Widget Headline</h2>
<p class="h3 helvetica-neue-light">Subhead goes here.</p>
wvu-video-feature-1__header: |
<h2 class="display-4 wvu-shout">Video Feature Headline</h2>
<p class="h3 helvetica-neue-light">Subhead goes here.</p>
wvu-video-feature-1__main: |
<iframe title="We love WVU!" class="embed-responsive-item" src="https://www.youtube.com/embed/vAv2SRTOyvc" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
wvu-video-feature-1__postscript: |
<p class="mb-0">View <a href="#" class="text-wvu-gold">more videos</a>.</p>
site:
id: 26
name: "My Site Title Name"
domain: "designsystem.sandbox.wvu.edu"
data:
apply_link_1: "Apply Now"
apply_link_1_url: "https://admissions.wvu.edu/how-to-apply"
apply_link_2: "Visit WVU"
apply_link_2_url: "https://admissions.wvu.edu/visit"
apply_link_3: "Request Information"
apply_link_3_url: "https://admissions.wvu.edu/request-information"
classes_wvu_backpage_header__h1: ""
classes_wvu-footer-links: ""
co_brand_subtitle: null # Options: null | string (eg: "Master of Science")
default_content_01: ""
default_content_02: ""
default_content_03: ""
disable_component_styler: ""
emergency_alert_json_url: "" # Options: null | string (URL). Test via: https://gist.githubusercontent.com/wvuwebgist/3912fe763055eee51a20cf1f72f332d3/raw/bcae6d40d460fcb9ad1505e3f9ac9ee89439bf45/emergency-alert-test.json
facebook_url: "#"
flickr_url: "#"
github_url: "#"
google_site_verification: ""
has_alternate_logo: null # Options: null | *slug* to a logo image, eg /files/path/to/image.jpg
has_co_brand: null # Options: null | string
has_standard_footer: ""
hide_instructions: ""
instagram_url: "#"
is_demo_site: ""
jquery_defer: ""
linkedin_url: "#"
masthead_college_link_address: null # Options: null | string (eg: https://davis.wvu.edu/)
masthead_college_link_title: null # Options: null | string (eg: "Davis College")
masthead_color: "blue" # Options: blue | gold
masthead_link_2_address: ""
masthead_link_2_title: ""
masthead_logo_url: ""
masthead_title: null # Options: null | string
nav_dropdowns: true # Options: null | true
syndication_url: "#"
show_apply_links: ""
show_instructions: ""
sidebar_sticky_site: ""
slot_11: ""
slot_11_custom: ""
slot_11_where_to_display: "as_full_width_block"
slot_11_is_main: "0"
slot_11_align: "left"
slot_11_featurettes_style: "profiles"
slot_11_featurettes_id: ""
slot_11_number: 1
slot_11_loop_by: "sort_order"
slot_11_loop_labels_match: "all"
slot_11_loop_order: "asc"
slot_11_scope: 0
slot_11_show_hidden: 0
slot_11_limit: 4
slot_12: ""
slot_12_custom: ""
slot_12_where_to_display: "as_full_width_block"
slot_12_is_main: "0"
slot_12_align: "left"
slot_12_featurettes_style: "card-columns"
slot_12_featurettes_id: ""
slot_12_number: 1
slot_12_loop_by: "sort_order"
slot_12_loop_labels_match: "all"
slot_12_loop_order: "asc"
slot_12_scope: 0
slot_12_show_hidden: 0
slot_12_limit: 4
slot_13: ""
slot_13_custom: ""
slot_13_where_to_display: "as_full_width_block"
slot_13_is_main: "0"
slot_13_align: "left"
slot_13_featurettes_style: "blog"
slot_13_featurettes_id: 1
slot_13_number: 1
slot_13_loop_by: "sort_order"
slot_13_loop_labels_match: "all"
slot_13_loop_order: "asc"
slot_13_scope: 0
slot_13_show_hidden: 0
slot_13_limit: 4
twitter_handle: "WestVirginiaU"
twitter_url: "#"
twitter_widget_id: ""
youtube_url: "#"
root: true
page:
id: 1 # This number must match the ID of the current blog you want to display
name: "Home"
slug: "home"
meta_description: "Hello World"
title: "This is the best Test page ever!"
alternate_name: "Some other name"
depth: 1
updated_at: today
created_at: two weeks ago
published_at: now
default_page: false
data:
some_key: some_data_value
another_key: some_other_value
slot_1: "hero"
slot_1_custom: ""
slot_1_where_to_display: "as_full_width_block"
slot_1_is_main: "0"
slot_1_align: "left"
slot_1_featurettes_style: "default"
slot_1_featurettes_id: ""
slot_1_number: 1
slot_1_loop_by: "sort_order"
slot_1_loop_labels_match: "all"
slot_1_loop_order: "asc"
slot_1_scope: 0
slot_1_show_hidden: 0
slot_1_limit: 4
slot_2: "action-hero"
slot_2_custom: ""
slot_2_number: 1
slot_2_where_to_display: "as_full_width_block"
slot_2_is_main: "0"
slot_2_align: "left"
slot_2_featurettes_style: "default"
slot_2_featurettes_id: ""
slot_2_number: 1
slot_2_loop_by: "sort_order"
slot_2_loop_labels_match: "all"
slot_2_loop_order: "asc"
slot_2_scope: 0
slot_2_show_hidden: 0
slot_2_limit: 4
slot_3: "lede-text"
slot_3_custom: ""
slot_3_number: 1
slot_3_where_to_display: "as_full_width_block"
slot_3_is_main: "0"
slot_3_align: "left"
slot_3_featurettes_style: "default"
slot_3_featurettes_id: ""
slot_3_number: 1
slot_3_loop_by: "sort_order"
slot_3_loop_labels_match: "all"
slot_3_loop_order: "asc"
slot_3_scope: 0
slot_3_show_hidden: 0
slot_3_limit: 4
slot_4: "featurettes"
slot_4_custom: ""
slot_4_number: 1
slot_4_where_to_display: "as_full_width_block"
slot_4_is_main: "0"
slot_4_align: "left"
slot_4_featurettes_style: "default"
slot_4_featurettes_id: ""
slot_4_number: 1
slot_4_loop_by: "sort_order"
slot_4_loop_labels_match: "all"
slot_4_loop_order: "asc"
slot_4_scope: 0
slot_4_show_hidden: 0
slot_4_limit: 4
slot_5: ""
slot_5_custom: ""
slot_5_number: 1
slot_5_where_to_display: "as_full_width_block"
slot_5_is_main: "0"
slot_5_align: "left"
slot_5_featurettes_style: "default"
slot_5_featurettes_id: ""
slot_5_number: 1
slot_5_loop_by: "sort_order"
slot_5_loop_labels_match: "all"
slot_5_loop_order: "asc"
slot_5_scope: 0
slot_5_show_hidden: 0
slot_5_limit: 4
slot_6: ""
slot_6_custom: ""
slot_6_number: 1
slot_6_where_to_display: "as_full_width_block"
slot_6_is_main: "0"
slot_6_align: "left"
slot_6_featurettes_style: "default"
slot_6_featurettes_id: ""
slot_6_number: 1
slot_6_loop_by: "sort_order"
slot_6_loop_labels_match: "all"
slot_6_loop_order: "asc"
slot_6_scope: 0
slot_6_show_hidden: 0
slot_6_limit: 4
slot_7: ""
slot_7_custom: ""
slot_7_number: 1
slot_7_where_to_display: "as_full_width_block"
slot_7_is_main: "0"
slot_7_align: "left"
slot_7_featurettes_style: "default"
slot_7_featurettes_id: ""
slot_7_number: 1
slot_7_loop_by: "sort_order"
slot_7_loop_labels_match: "all"
slot_7_loop_order: "asc"
slot_7_scope: 0
slot_7_show_hidden: 0
slot_7_limit: 4
slot_8: ""
slot_8_custom: ""
slot_8_number: 1
slot_8_where_to_display: "as_full_width_block"
slot_8_is_main: "0"
slot_8_align: "left"
slot_8_featurettes_style: "default"
slot_8_featurettes_id: ""
slot_8_number: 1
slot_8_loop_by: "sort_order"
slot_8_loop_labels_match: "all"
slot_8_loop_order: "asc"
slot_8_scope: 0
slot_8_show_hidden: 0
slot_8_limit: 4
slot_9: ""
slot_9_custom: ""
slot_9_number: 1
slot_9_where_to_display: "as_full_width_block"
slot_9_is_main: "0"
slot_9_align: "left"
slot_9_featurettes_style: "default"
slot_9_featurettes_id: ""
slot_9_number: 1
slot_9_loop_by: "sort_order"
slot_9_loop_labels_match: "all"
slot_9_loop_order: "asc"
slot_9_scope: 0
slot_9_show_hidden: 0
slot_9_limit: 4
slot_10: ""
slot_10_custom: ""
slot_10_number: 1
slot_10_where_to_display: "as_full_width_block"
slot_10_is_main: "0"
slot_10_align: "left"
slot_10_featurettes_style: "default"
slot_10_featurettes_id: ""
slot_10_number: 1
slot_10_loop_by: "sort_order"
slot_10_loop_labels_match: "all"
slot_10_loop_order: "asc"
slot_10_scope: 0
slot_10_show_hidden: 0
slot_10_limit: 4
content:
search-content: ""
shared_content: |
<p><%= Faker::Lorem.paragraph(2) %></p>
<p><%= Faker::Lorem.paragraph(2) %></p>
shared_content_2: |
<p><%= Faker::Lorem.paragraph(2) %></p>
<p><%= Faker::Lorem.paragraph(2) %></p>
wvu-action-hero-1-header-classes: " "
wvu-action-hero-1-classes: " "
wvu-action-hero-card-1__header: "Action Hero Card Header"
wvu-action-hero-card-1-classes: "wvu-bg-blend-mode-lighten wvu-bg-pattern-grid bg-wvu-blue"
wvu-action-hero-card-1-header-classes: "display-3 wvu-shout text-wvu-blue mb-2 "
wvu-action-hero-split-1__header: "Action Hero Header"
wvu-action-hero-split-1__main: |
<p class="iowan-old-style-italic text-wvu-blue h1">Center for Cool Innovation</p>
<p class="lead mb-4">For even more hands-on experience and to improve the oral health of children
and adults across the state, School of Dentistry students must accumulate
125 hours or more of community engagement work prior to graduation.</p>
<a href="#" class="btn btn-primary">Action Item</a>
wvu-action-hero-split-1-classes: "wvu-bg-position-spacer-md-top wvu-bg-position-center-left--70 wvu-bg-position-xl-center-right--80"
wvu-action-hero-split-1-header-classes: "wvu-shout display-3 "
wvu-action-hero-two-column-1__header: "Action Hero Header"
wvu-action-hero-two-column-1__main: |
<p class="h3 mb-3 helvetica-neue-light">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua.
</p>
<a href="#" class="btn btn-primary mb-1">Call to Action</a>
wvu-action-hero-two-column-1-classes: "bg-wvu-accent--dark-blue text-white wvu-bg-vignetting"
wvu-action-hero-two-column-1-header-classes: "display-2 wvu-shout wvu-text-first-line-gold "
wvu-agenda-item__main: "Event description."
wvu-agenda-item__time: "8:00 a.m. - 10:00 a.m."
wvu-agenda-item-1-classes: " "
wvu-big-search-1__header: ""
wvu-big-search-1__main: ""
wvu-big-search-1__postscript: ""
wvu-big-search-1-classes: "text-center wvu-bg-pattern-gold text-wvu-blue"
wvu-big-search-1-header-classes: "display-2 wvu-shout mb-3"
wvu-blog-article-hero-1__subhead: "Blog article hero subhead."
wvu-blog-article-hero-1-classes: "bg-dark text-white wvu-bg-position-center wvu-bg-size-cover wvu-bg-vignetting "
wvu-blog-article-hero-1-header-classes: "display-2 iowan-old-style "
wvu-blog-index-1__main: ""
wvu-breadcrumbs-classes: ""
wvu-contact-info-1__address: ""
wvu-contact-info-1__form: ""
wvu-contact-info-1__header: "Contact info lead."
wvu-contact-info-1__phone: ""
wvu-contact-info-1-classes: "py-5"
wvu-directory-1__header: ""
wvu-directory-1-classes: "pt-5 pb-2 mb-3"
wvu-editable-region-1__main: ""
wvu-event-agenda-1-classes: "py-5"
wvu-faculty-profile-1__figcaption: ""
wvu-faculty-profile-1__figure: ""
wvu-faculty-profile-1__main: ""
wvu-faculty-profile-1__sidebar-top: ""
wvu-faculty-profile-1-classes: ""
wvu-featurettes-1__header: " "
wvu-featurettes-1__postscript: " "
wvu-featurettes-1-button-text: "Read More"
wvu-featurettes-1-classes: "py-5"
wvu-featurettes-1-default-component-classes: " "
wvu-featurettes-1-item-body-classes: " "
wvu-featurettes-1-item-button-classes: " "
wvu-featurettes-1-item-classes: " "
wvu-featurettes-1-item-header-classes: " "
wvu-footer-1-classes: "py-4 bg-light"
wvu-full-bleed-photo-1__caption: "<%= Faker::Lorem.paragraph(5) %>"
wvu-full-bleed-photo-1-caption-classes: ""
wvu-full-bleed-photo-1-classes: "my-4"
wvu-hero-1-classes: " "
wvy-hero-1-default-component-classes: " "
wvu-hero-1-header-classes: " "
wvu-lede-text-1-classes: "bg-light helvetica-neue-light text-center h3 mb-0"
wvu-lede-text-1-header-classes: ""
wvu-log-in-1-classes: "bg-wvu-accent--blue-dark py-5 wvu-bg-position-bottom wvu-bg-pattern-grid-zoomed-transparent wvu-bg-blend-mode-luminosity--80 wvu-overflow-hidden"
wvu-major-1-classes: ""
wvu-photo-gallery-1__header: ""
wvu-profile-1__download: |
<a href="#">Download</a>
wvu-profile-1__email: "[email protected]"
wvu-profile-1__main: ""
wvu-profile-1__office: "ESB 111"
wvu-profile-1__office-url: "#"
wvu-profile-1__phone: "(304) 123-4567"
wvu-profile-1__quote: ""
wvu-profile-1__website: "#"
wvu-profile-teaser-1-classes: "py-5"
wvu-profiles-1__header: ""
wvu-quicklinks-1__postscript: ""
wvu-quicklinks-1-classes: "py-5 text-wvu-blue wvu-bg-pattern-gold"
wvu-quicklinks-1-header-classes: "wvu-shout"
wvu-social-media-1-classes: "py-4 bg-wvu-accent--dark-blue text-white"
wvu-social-media-1-header-classes: "wvu-shout display-3"
wvu-social-media-1-link-classes: ""
wvu-stat-sheet-1-classes: "mb-0 wvu-overflow-hidden text-white bg-wvu-accent--dark-blue wvu-bg-blend-mode-luminosity--80"
wvu-stat-sheet-1-header-classes: "display-3 wvu-shout"
wvu-stat-sheet-1-stat-classes: "bg-wvu-gold text-wvu-accent--dark-blue py-5 px-3"
wvu-twitter-widget-1__header: ""
wvu-twitter-widget-1__twitter-classes: "helvetica-neue-light "
wvu-twitter-widget-1-classes: "py-5 bg-wvu-accent--blue-dark text-white wvu-bg-position-center wvu-bg-blend-mode-luminosity--90"
wvu-video-feature-1__header: ""
wvu-video-feature-1__postscript: ""
wvu-video-feature-1-classes: "py-5 bg-wvu-accent--dark-blue wvu-bg-vignetting text-white text-center"
pages:
- id: 2
name: "Study of Birds"
slug: "study-of-birds"
url: "#study-of-birds"
meta_description: <%= Faker::Lorem.paragraph(5) %>
title: "Study of Birds"
alternate_name: "Ornithology"
depth: 1
content:
wvu-agenda-item__main: "Event description."
wvu-agenda-item__time: "8:00 a.m. - 10:00 a.m."
wvu-backpage-header-1__label: |
<span class="wvu-shout text-wvu-gold text-uppercase">Label pre</span> <span class="text-uppercase">Label Post</span>
wvu-backpage-header-1__subhead: "Subhead goes here."
wvu-featurettes-1__header: ""
wvu-featurettes-1-button-text: "Read More"
wvu-featurettes-1-item-button-classes: ""
wvu-featurettes-1-item-classes: ""
wvu-featurettes-1-item-header-classes: "mb-4"
wvu-profile-1__email: "[email protected]"
wvu-profile-1__office: "ESB 2291"
wvu-profile-1__office-url: "#"
wvu-profile-1__phone: "(304) 123-4567"
wvu-profile-1__profile-title: "Very Important Person"
data:
description: <%= Faker::Lorem.paragraph(1) %>
thumbnail_alt: "Placeholder"
thumbnail_url_sq: "https://via.placeholder.com/960x960"
tags:
- "home-featurettes-1"
- id: 3
name: "Study of Fish"
slug: "study-of-fish"
url: "#study-of-fish"
meta_description: <%= Faker::Lorem.paragraph(5) %>
title: "Study of Fish"
alternate_name: "Ichthyology"
depth: 1
default_page: true
content:
wvu-agenda-item__main: "Event description."
wvu-agenda-item__time: "8:00 a.m. - 10:00 a.m."
wvu-backpage-header-1__label: |
<span class="wvu-shout text-wvu-gold text-uppercase">Label pre</span> <span class="text-uppercase">Label Post</span>
wvu-backpage-header-1__subhead: "Subhead goes here."
wvu-featurettes-1__header: ""
wvu-featurettes-1-button-text: "Read More"
wvu-featurettes-1-item-button-classes: ""
wvu-featurettes-1-item-classes: ""
wvu-featurettes-1-item-header-classes: "mb-4"
wvu-profile-1__email: "[email protected]"
wvu-profile-1__office: "ESB 2291"
wvu-profile-1__office-url: "#"
wvu-profile-1__phone: "(304) 123-4567"
wvu-profile-1__profile-title: "Very Important Person"
data:
some_key: some_data_value
another_key: some_other_value
description: <%= Faker::Lorem.paragraph(1) %>
slot_1: backpage
slot_1_custom: ""
slot_1_where_to_display: "as_full_width_block"
slot_1_is_main: "0"
slot_1_align: "left"
slot_1_featurettes_style: "default"
slot_1_featurettes_id: ""
slot_1_number: 1
slot_1_loop_by: "sort_order"
slot_1_loop_labels_match: "all"
slot_1_loop_order: "asc"
slot_1_scope: 0
slot_1_show_hidden: 0
thumbnail_alt: "Placeholder"
thumbnail_url_sq: "https://via.placeholder.com/960x960"
if_page_depth_eq: 1
if_page_depth_gt: 1
files:
# Hero:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-hero-1-background"
alt_text: "Fall Woodburn"
# Action Hero Card:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-action-hero-card-1-background"
alt_text: "Fall Woodburn"
# Action Hero Split:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-action-hero-split-1-background"
alt_text: "Fall Woodburn"
# Action Hero Two Column:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-action-hero-two-column-1-background"
alt_text: "Fall Woodburn"
# Blog Article Hero Two Column:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-blog-article-hero-1-background"
alt_text: "Fall Woodburn"
# Log-In:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-log-in-1-background"
alt_text: "Fall Woodburn"
# Stat Sheet:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-stat-sheet-1-background"
alt_text: "Fall Woodburn"
# Twitter Widget:
- image_url: "/files/225e0ebe-d50b-422c-9a92-2e06864328b6/1780x1780?cb=1553729523" # NOTE: Be sure to link to your own photo!
label: "home-twitter-widget-1-background"
alt_text: "Fall Woodburn"
site_menu: |
<ul class="wvu-nav__items menu-items navbar-nav mr-auto">
<li class="active">
<a class="nav-link px-2 px-lg-1" href="/">Home</a>
</li>
<li class="wvu-dropdown">
<a class="nav-link px-2 px-lg-1" href="#">How to Apply</a>
<ul class="sub-menu small bg-wvu-accent--dark-blue px-1 mx-n1">
<li><a class="nav-link px-2 px-lg-1" href="#">Check Your Status</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">First-Time Freshmen</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">Transfer Students</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">International Undergraduate Students</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">Change of Campus Students</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">Graduate Students</a></li>
</ul>
</li>
<li><a class="nav-link px-2 px-lg-1" href="#">Academics</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">Cost and Aid</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">Information For</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#">Admitted Students</a></li>
<li><a class="nav-link px-2 px-lg-1" href="#"><%= Faker::Coffee.blend_name %></a></li>
<li><a class="nav-link px-2 px-lg-1" href="#"><%= Faker::Superhero.name %></a></li>
</ul>
sub_menu: |
<ul>
<li class="active"><a href="#"><%= Faker::Lorem.word.capitalize %></a></li>
<li><a href="#"><%= Faker::Lorem.word.capitalize %></a></li>
<li><a href="#"><%= Faker::Lorem.word.capitalize %></a></li>
<li><a href="#"><%= Faker::Lorem.word.capitalize %></a></li>
<li><a href="#"><%= Faker::Lorem.word.capitalize %></a></li>
</ul>
ancestor_menu: |
<% pages = %w(Page1 Page2 Page3 Page4 Page5) %>
<ul>
<% pages.each do |page| %>
<li><a href="#"><%= page %></a></li>
<% end %>
</ul>
breadcrumbs: |
<ul class="wvu-breadcrumbs__crumbs">
<li><a href="/">Home</a></li>
<li class="active">Page</li>
</ul>
blog:
- id: 1 # This number must match the ID from the `page` key to display the content below.
name: Blog Name
articles:
- article:
id: 11
name: "This is my most recent blog post and hopefully long enough to span two lines."
title: <%= Faker::Lorem.sentence(1) %>
created_by:
first_name: <%= Faker::Name.first_name %>
last_name: <%= Faker::Name.last_name %>
content:
wvu-blog-article-1__main: |
<%= Faker::Lorem.paragraph(4) %>
some_other_region: |
<%= Faker::Lorem.paragraph %>
tags:
- some-tag
- some-other-tag
- wvu-featurettes-1
published_at: "2 days ago"
- article:
id: 22
name: <%= Faker::Lorem.sentence(1) %>
title: <%= Faker::Lorem.sentence(1) %>
created_by:
first_name: <%= Faker::Name.first_name %>
last_name: <%= Faker::Name.last_name %>
content:
wvu-blog-article-1__main: |
<%= Faker::Lorem.paragraph(4) %>
some_other_region: |
<%= Faker::Lorem.paragraph(4) %>
tags:
- some-other-tag
published_at: "2 weeks ago"
- article:
id: 33
name: "My First Blog Post"
title: <%= Faker::Lorem.sentence(1) %>
created_by:
first_name: <%= Faker::Name.first_name %>
last_name: <%= Faker::Name.last_name %>
content:
wvu-blog-article-1__main: |
<%= Faker::Lorem.paragraph(4) %>
some_other_region: |
<%= Faker::Lorem.paragraph(4) %>
tags:
- some-tag
published_at: "6 months ago"
archive:
monthly:
- item:
date: January 2016
count: 5
url: '#'
- item:
date: December 2015
count: 4
url: '#'
- item:
date: November 2015
count: 3
url: '#'
- item:
date: October 2015
count: 2
url: '#'
- id: 2 # This number must match the ID from the `page` key to display the content below.
name: Blog Name 2
articles:
- article:
id: 44
name: <%= Faker::Lorem.sentence(1) %>
title: <%= Faker::Lorem.sentence(1) %>
created_by:
first_name: <%= Faker::Name.first_name %>
last_name: <%= Faker::Name.last_name %>
content:
some_region: |
<%= Faker::Lorem.paragraph(4) %>
some_other_region: |
<%= Faker::Lorem.paragraph(4) %>
tags:
- some-tag
- some-other-tag
published_at: "4 days ago"
- article:
id: 55
name: <%= Faker::Lorem.sentence(1) %>
title: <%= Faker::Lorem.sentence(1) %>
created_by:
first_name: <%= Faker::Name.first_name %>
last_name: <%= Faker::Name.last_name %>
content:
some_region: |
<%= Faker::Lorem.paragraph(4) %>
some_other_region: |
<%= Faker::Lorem.paragraph(4) %>
tags:
- some-tag
published_at: "3 months ago"
- article:
id: 66
name: <%= Faker::Lorem.sentence(1) %>
title: <%= Faker::Lorem.sentence(1) %>
created_by:
first_name: <%= Faker::Name.first_name %>
last_name: <%= Faker::Name.last_name %>
content:
some_region: |
<%= Faker::Lorem.paragraph(4) %>
some_other_region: |
<%= Faker::Lorem.paragraph(4) %>
tags:
- some-other-tag
published_at: "2 years ago"
archive:
monthly:
- item:
date: "January 2016"
count: 5
url: '#'
- item:
date: "December 2015"
count: 4
url: '#'
- item:
date: "November 2015"
count: 3
url: '#'
- item:
date: "October 2015"
count: 2
url: '#'