-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
999 lines (806 loc) · 59.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">
<title>The Hotchkiss Record</title>
<link rel='dns-prefetch' href='//s.w.org' />
<link href='https://fonts.gstatic.com/' crossorigin rel='preconnect' />
<link rel="alternate" type="application/rss+xml" title="The Hotchkiss Record » Feed" href="./feed/index.html" />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/12.0.0-1\/svg\/","svgExt":".svg","source":{"concatemoji":".\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.4.1"}};
/*! This file is auto-generated */
!function(e,a,t){var r,n,o,i,p=a.createElement("canvas"),s=p.getContext&&p.getContext("2d");function c(e,t){var a=String.fromCharCode;s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,e),0,0);var r=p.toDataURL();return s.clearRect(0,0,p.width,p.height),s.fillText(a.apply(this,t),0,0),r===p.toDataURL()}function l(e){if(!s||!s.fillText)return!1;switch(s.textBaseline="top",s.font="600 32px Arial",e){case"flag":return!c([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])&&(!c([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!c([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]));case"emoji":return!c([55357,56424,55356,57342,8205,55358,56605,8205,55357,56424,55356,57340],[55357,56424,55356,57342,8203,55358,56605,8203,55357,56424,55356,57340])}return!1}function d(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(i=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},o=0;o<i.length;o++)t.supports[i[o]]=l(i[o]),t.supports.everything=t.supports.everything&&t.supports[i[o]],"flag"!==i[o]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[i[o]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(r=t.source||{}).concatemoji?d(r.concatemoji):r.wpemoji&&r.twemoji&&(d(r.twemoji),d(r.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='./wp-includes/css/dist/block-library/style.min.css?ver=5.4.1' type='text/css' media='all' />
<style id='wp-block-library-inline-css' type='text/css'>
.has-text-align-justify{text-align:justify;}
</style>
<link rel='stylesheet' id='ditty-news-ticker-font-css' href='./wp-content/plugins/ditty-news-ticker/inc/static/libs/fontastic/styles.css?ver=2.2.15' type='text/css' media='all' />
<link rel='stylesheet' id='ditty-news-ticker-css' href='./wp-content/plugins/ditty-news-ticker/inc/static/css/style.css?ver=1585278276' type='text/css' media='all' />
<link rel='stylesheet' id='csco-styles-css' href='./wp-content/themes/expertly/style.css?ver=1.6.8' type='text/css' media='all' />
<link rel='stylesheet' id='jetpack_css-css' href='./wp-content/plugins/jetpack/css/jetpack.css?ver=8.3' type='text/css' media='all' />
<script type='text/javascript'>
/* <![CDATA[ */
var csco_mega_menu = {"rest_url":".\/wp-json\/csco\/v1\/menu-posts"};
/* ]]> */
</script>
<script type='text/javascript' src='./wp-includes/js/jquery/jquery.js?ver=1.12.4-wp'></script>
<script type='text/javascript' src='./wp-includes/js/jquery/jquery-migrate.min.js?ver=1.4.1'></script>
<link rel='https://api.w.org/' href='./wp-json/index.html' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="./xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="./wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 5.4.1" />
<style type='text/css'>img#wpstats{display:none}</style><link rel="icon" href="./wp-content/uploads/2020/03/cropped-IMG_4516-2-32x32.jpg" sizes="32x32" />
<link rel="icon" href="./wp-content/uploads/2020/03/cropped-IMG_4516-2-192x192.jpg" sizes="192x192" />
<link rel="apple-touch-icon" href="./wp-content/uploads/2020/03/cropped-IMG_4516-2-180x180.jpg" />
<meta name="msapplication-TileImage" content="./wp-content/uploads/2020/03/cropped-IMG_4516-2-270x270.jpg" />
<style id="kirki-inline-styles">a:hover, .entry-content a, .must-log-in a, .meta-category a, blockquote:before, .navbar-nav li.current-menu-ancestor > a, li.current-menu-item > a, li.cs-mega-menu-child.active-item > a, .cs-bg-dark.navbar-primary .navbar-nav ul li.current-menu-ancestor > a, .cs-bg-dark.navbar-primary .navbar-nav ul li.current-menu-item > a, .cs-bg-dark.navbar-primary .navbar-nav li.cs-mega-menu-child.active-item > a{color:#7d1efa;}button, .button, input[type="button"], input[type="reset"], input[type="submit"], .wp-block-button .wp-block-button__link:not(.has-background), .toggle-search.toggle-close, .offcanvas-header .toggle-offcanvas, .cs-overlay .post-categories a:hover, .post-format-icon > a:hover, .entry-more-button .entry-more:hover, .cs-list-articles > li > a:hover:before, .pk-badge-primary, .pk-bg-primary, .pk-button-primary, .pk-button-primary:hover, h2.pk-heading-numbered:before{background-color:#7d1efa;}.cs-overlay .cs-overlay-background:after, .pk-bg-overlay, .pk-zoom-icon-popup:after{background-color:rgba(10,10,10,0.66);}.navbar-primary, .offcanvas-header{background-color:#fa1e1e;}.site-footer{background-color:#d510f8;}body{font-family:Exo;font-size:1rem;font-weight:400;letter-spacing:0px;}.cs-font-primary, button, .button, input[type="button"], input[type="reset"], input[type="submit"], .no-comments, .text-action, .cs-link-more, .cs-nav-link, .share-total, .post-categories a, .post-meta a, .nav-links, .comment-reply-link, .post-tags a, .read-more, .navigation.pagination .nav-links > span, .navigation.pagination .nav-links > a, .pk-font-primary{font-family:Unkempt;font-size:0.875rem;font-weight:400;letter-spacing:0px;text-transform:none;}label, .cs-font-secondary, .post-meta, .archive-count, .page-subtitle, .site-description, figcaption, .wp-block-image figcaption, .wp-block-audio figcaption, .wp-block-embed figcaption, .wp-block-pullquote cite, .wp-block-pullquote footer, .wp-block-pullquote .wp-block-pullquote__citation, .post-format-icon, .comment-metadata, .says, .logged-in-as, .must-log-in, .wp-caption-text, blockquote cite, .wp-block-quote cite, div[class*="meta-"], span[class*="meta-"], small, .cs-breadcrumbs, .cs-homepage-category-count, .pk-font-secondary{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-size:0.813rem;font-weight:400;text-transform:none;}.entry .entry-content{font-family:inherit;font-size:inherit;letter-spacing:inherit;}h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .site-title, .comment-author .fn, blockquote, .wp-block-quote, .wp-block-cover .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, .wp-block-cover h2, .wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover-image .wp-block-cover-text, .wp-block-cover-image h2, .wp-block-pullquote p, p.has-drop-cap:not(:focus):first-letter, .pk-font-heading{font-family:EB Garamond;font-weight:700;letter-spacing:0.015em;text-transform:none;}.title-block, .pk-font-block{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-size:0.75rem;font-weight:500;letter-spacing:0.125em;text-transform:uppercase;color:#a2b0bf;}.navbar-nav > li > a, .cs-mega-menu-child > a, .widget_archive li, .widget_categories li, .widget_meta li a, .widget_nav_menu .menu > li > a, .widget_pages .page_item a{font-family:Anton;font-size:0.938rem;font-weight:400;letter-spacing:0px;text-transform:none;}.navbar-nav .sub-menu > li > a, .widget_categories .children li a, .widget_nav_menu .sub-menu > li > a{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-size:0.813rem;font-weight:400;text-transform:none;}.section-hero .cs-overlay-background img{opacity:0.7;}.section-hero{background-color:#ffffff;}@media (min-width: 1020px){.section-hero{min-height:600px;}}/* vietnamese */
@font-face {
font-family: 'Exo';
font-style: italic;
font-weight: 400;
src: local('Exo Italic'), local('Exo-Italic'), url(./wp-content/fonts/exo/4UaMrEtFpBISdk6u0DHM5aXJ2po.woff) format('woff');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Exo';
font-style: italic;
font-weight: 400;
src: local('Exo Italic'), local('Exo-Italic'), url(./wp-content/fonts/exo/4UaMrEtFpBISdk6v0DHM5aXJ2po.woff) format('woff');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Exo';
font-style: italic;
font-weight: 400;
src: local('Exo Italic'), local('Exo-Italic'), url(./wp-content/fonts/exo/4UaMrEtFpBISdk6h0DHM5aXJ.woff) format('woff');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
font-family: 'Exo';
font-style: italic;
font-weight: 700;
src: local('Exo Bold Italic'), local('Exo-BoldItalic'), url(./wp-content/fonts/exo/4UaBrEtFpBISdkYa9SLux67j4JN0EwI.woff) format('woff');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Exo';
font-style: italic;
font-weight: 700;
src: local('Exo Bold Italic'), local('Exo-BoldItalic'), url(./wp-content/fonts/exo/4UaBrEtFpBISdkYa9SLvx67j4JN0EwI.woff) format('woff');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Exo';
font-style: italic;
font-weight: 700;
src: local('Exo Bold Italic'), local('Exo-BoldItalic'), url(./wp-content/fonts/exo/4UaBrEtFpBISdkYa9SLhx67j4JN0.woff) format('woff');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 400;
src: local('Exo Regular'), local('Exo-Regular'), url(./wp-content/fonts/exo/4UaOrEtFpBISfH6l2jDu55XI.woff) format('woff');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 400;
src: local('Exo Regular'), local('Exo-Regular'), url(./wp-content/fonts/exo/4UaOrEtFpBISfX6l2jDu55XI.woff) format('woff');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 400;
src: local('Exo Regular'), local('Exo-Regular'), url(./wp-content/fonts/exo/4UaOrEtFpBISc36l2jDu5w.woff) format('woff');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 700;
src: local('Exo Bold'), local('Exo-Bold'), url(./wp-content/fonts/exo/4UaDrEtFpBIayFu2-BLlza_B4qN1.woff) format('woff');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 700;
src: local('Exo Bold'), local('Exo-Bold'), url(./wp-content/fonts/exo/4UaDrEtFpBIayFu2-RLlza_B4qN1.woff) format('woff');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 700;
src: local('Exo Bold'), local('Exo-Bold'), url(./wp-content/fonts/exo/4UaDrEtFpBIayFu29xLlza_B4g.woff) format('woff');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}/* latin */
@font-face {
font-family: 'Unkempt';
font-style: normal;
font-weight: 400;
src: local('Unkempt Regular'), local('Unkempt-Regular'), url(./wp-content/fonts/unkempt/2EbnL-Z2DFZue0DSeYEV9B-bp_Y.woff) format('woff');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}/* cyrillic-ext */
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 700;
src: url(./wp-content/fonts/eb-garamond/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNkCY95WamXgHlIbvw.woff) format('woff');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 700;
src: url(./wp-content/fonts/eb-garamond/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNkAI95WamXgHlIbvw.woff) format('woff');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 700;
src: url(./wp-content/fonts/eb-garamond/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNkCI95WamXgHlIbvw.woff) format('woff');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 700;
src: url(./wp-content/fonts/eb-garamond/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNkB495WamXgHlIbvw.woff) format('woff');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 700;
src: url(./wp-content/fonts/eb-garamond/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNkC495WamXgHlIbvw.woff) format('woff');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 700;
src: url(./wp-content/fonts/eb-garamond/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNkCo95WamXgHlIbvw.woff) format('woff');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 700;
src: url(./wp-content/fonts/eb-garamond/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNkBI95WamXgHlI.woff) format('woff');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}/* vietnamese */
@font-face {
font-family: 'Anton';
font-style: normal;
font-weight: 400;
src: local('Anton Regular'), local('Anton-Regular'), url(./wp-content/fonts/anton/1Ptgg87LROyAm3K8-CkCSKlvPfE.woff) format('woff');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Anton';
font-style: normal;
font-weight: 400;
src: local('Anton Regular'), local('Anton-Regular'), url(./wp-content/fonts/anton/1Ptgg87LROyAm3K9-CkCSKlvPfE.woff) format('woff');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Anton';
font-style: normal;
font-weight: 400;
src: local('Anton Regular'), local('Anton-Regular'), url(./wp-content/fonts/anton/1Ptgg87LROyAm3Kz-CkCSKlv.woff) format('woff');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}</style></head>
<body data-rsssl=1 class="home blog wp-embed-responsive cs-page-layout-right sidebar-enabled sidebar-right headings-large navbar-sticky-enabled navbar-smart-enabled sticky-sidebar-enabled stick-to-bottom post-sidebar-disabled block-align-enabled">
<div class="site-overlay"></div>
<div class="offcanvas">
<div class="offcanvas-header cs-bg-dark">
<nav class="navbar navbar-offcanvas">
<a class="offcanvas-brand site-title" href="./index.html" rel="home">The Hotchkiss Record</a>
<button type="button" class="toggle-offcanvas button-round">
<i class="cs-icon cs-icon-x"></i>
</button>
</nav>
</div>
<aside class="offcanvas-sidebar">
<div class="offcanvas-inner">
<div class="widget widget_nav_menu cs-d-lg-none"><div class="menu-main-container"><ul id="menu-main" class="menu"><li id="menu-item-39" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-39"><a href="./category/news/index.html">Newz</a></li>
<li id="menu-item-40" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-40"><a href="./category/features/index.html">Features</a></li>
<li id="menu-item-41" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-41"><a href="./category/opinions/index.html">Facts</a></li>
<li id="menu-item-42" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-42"><a href="./category/arts/index.html">Arts</a></li>
<li id="menu-item-43" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-43"><a href="./category/sports/index.html">Sports</a></li>
<li id="menu-item-44" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-44"><a href="./category/quizzes/index.html">Hotchfeed Quizzes</a></li>
<li id="menu-item-227" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-227"><a href="./category/editorial/index.html">Editorial</a></li>
</ul></div></div>
</div>
</aside>
</div>
<div id="page" class="site">
<div class="site-inner">
<header id="masthead" class="site-header">
<nav class="navbar navbar-primary cs-bg-dark">
<div class="navbar-wrap">
<div class="navbar-container">
<div class="navbar-content">
<button type="button" class="toggle-offcanvas">
<i class="cs-icon cs-icon-menu"></i>
</button>
<a class="navbar-brand site-title" href="./index.html" rel="home">The Hotchkiss Record</a>
<ul id="menu-main-1" class="navbar-nav"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-39"><a href="./category/news/index.html">Newz</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-40"><a href="./category/features/index.html">Features</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-41"><a href="./category/opinions/index.html">Facts</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-42"><a href="./category/arts/index.html">Arts</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-43"><a href="./category/sports/index.html">Sports</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-44"><a href="./category/quizzes/index.html">Hotchfeed Quizzes</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-227"><a href="./category/editorial/index.html">Editorial</a></li>
</ul>
<button type="button" class="toggle-search">
<i class="cs-icon cs-icon-search"></i>
</button>
</div><!-- .navbar-content -->
</div><!-- .navbar-container -->
</div><!-- .navbar-wrap -->
<div class="site-search" id="search">
<div class="cs-container">
<form role="search" method="get" class="search-form" action="./index.html">
<label class="sr-only">Search for:</label>
<div class="cs-input-group">
<input type="search" value="" name="s" class="search-field" placeholder="Enter your search topic" required>
<button type="submit" class="search-submit">Search</button>
</div>
</form>
</div>
</div>
</nav><!-- .navbar -->
</header><!-- #masthead -->
<section class="section-hero cs-overlay hero-left hero-image-outside">
<div class="cs-overlay-background">
<img width="463" height="462" src="./wp-content/uploads/2020/03/IMG_4516-2.jpg" class="pk-lazyload-disabled" alt="" sizes="(max-width: 1019px) 100vw, 50vw" srcset="./wp-content/uploads/2020/03/IMG_4516-2.jpg 463w, ./wp-content/uploads/2020/03/IMG_4516-2-300x300.jpg 300w, ./wp-content/uploads/2020/03/IMG_4516-2-150x150.jpg 150w" /> </div>
<div class="cs-overlay-content">
<div class="cs-container">
<div class="hero-container">
<div class="hero-content">
<h1 class="hero-title">The Hotchkiss Record</h1>
<div class="hero-description">The oldest currently-running bi-weekly print and digital independent high school student-run newspaper in America.</div>
</div>
</div>
</div>
</div>
</section>
<div class="site-content">
<div class="cs-container">
<div id="content" class="main-content">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="post-archive">
<div class="archive-wrap">
<div class="archive-main archive-grid">
<article id="post-118" class="post-118 post type-post status-publish format-standard has-post-thumbnail category-news">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/Danaasitshouldbe-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/news/index.html" rel="category tag">News</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./dana-boat-sinks-boys-move-onto-climbing-wall/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./dana-boat-sinks-boys-move-onto-climbing-wall/index.html" rel="bookmark">Dana Boat Sinks, Boys Move onto Climbing Wall</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Isabel Su ’22 | News Editor One of the great institutions of our school, the Dana Boat, is now gone, leaving a hole in our hearts and on campus. Days…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./dana-boat-sinks-boys-move-onto-climbing-wall/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-118 -->
<article id="post-116" class="post-116 post type-post status-publish format-standard has-post-thumbnail category-news">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/almeidafrenchdraft1-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/news/index.html" rel="category tag">News</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./all-classes-taught-in-french-starting-fall-2021/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./all-classes-taught-in-french-starting-fall-2021/index.html" rel="bookmark">All Classes Taught in French Starting Fall 2021</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Kiki Henry ’22 | News Editor Last Friday, Mr. Craig Bradley’s puppy disclosed the headmaster’s plan to gradually move all classes to be taught exclusively in French. This initiative, along…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./all-classes-taught-in-french-starting-fall-2021/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-116 -->
<article id="post-214" class="post-214 post type-post status-publish format-standard category-sports">
<div class="post-outer">
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./various-hotchkiss-funds-redirected-to-boys-varsity-basketball/index.html" rel="bookmark">Various Hotchkiss Funds Redirected to Boys Varsity Basketball</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Margo Donohue ’21 | Sports Editor After careful consideration and much anticipation, the school has come to the final decision that the Boys Varsity Basketball team will receive new funding…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./various-hotchkiss-funds-redirected-to-boys-varsity-basketball/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-214 -->
<article id="post-140" class="post-140 post type-post status-publish format-standard has-post-thumbnail category-sports">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/Screenshot_20200329-221911_Instagram-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/sports/index.html" rel="category tag">Sports</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./aoi-cooper-roh/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./aoi-cooper-roh/index.html" rel="bookmark">AOI: Cooper Roh</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Margo Donohue ’22 | Sports Editor Cooper Roh ’22 is a two year Lower Mid, captain of the Quizbowl team, and a strong supporter for Varsity non-athletes at Hotchkiss. Whether…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./aoi-cooper-roh/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-140 -->
<article id="post-138" class="post-138 post type-post status-publish format-standard has-post-thumbnail category-sports">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/gallaherjupiterdraft1-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/sports/index.html" rel="category tag">Sports</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./gallaher-to-compete-against-teens-from-mars-uranus/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./gallaher-to-compete-against-teens-from-mars-uranus/index.html" rel="bookmark">Gallaher to Compete Against Teens From Uranus</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Rachel Mokriski ’21 | Sports Editor This Saturday, Christian Gallaher ’22 will travel to Jupiter to compete in the first annual Interplanetary Crossfit Games, along with the first-, third-, and…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./gallaher-to-compete-against-teens-from-mars-uranus/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-138 -->
<article id="post-136" class="post-136 post type-post status-publish format-standard has-post-thumbnail category-sports">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/nightgolf-draft-1-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/sports/index.html" rel="category tag">Sports</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./night-golfing-is-now-an-official-co-curricular/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./night-golfing-is-now-an-official-co-curricular/index.html" rel="bookmark">Night Golfing Is Now an Official Co-Curricular</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Hannah Goldberg ’22 | Sports Editor To the demand of students across thousands of classes, Night-Golfing has been officially named as a co-curricular for the fall and spring seasons. Night-golfing…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./night-golfing-is-now-an-official-co-curricular/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-136 -->
<article id="post-32" class="post-32 post type-post status-publish format-standard has-post-thumbnail category-quizzes">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="320" height="240" src="./wp-content/uploads/2020/03/Healthy-Food-for-Men.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" srcset="./wp-content/uploads/2020/03/Healthy-Food-for-Men.jpg 320w, ./wp-content/uploads/2020/03/Healthy-Food-for-Men-300x225.jpg 300w, ./wp-content/uploads/2020/03/Healthy-Food-for-Men-240x180.jpg 240w" sizes="(max-width: 320px) 100vw, 320px" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/quizzes/index.html" rel="category tag">Quizzes</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./what-dining-hall-food-are-you/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./what-dining-hall-food-are-you/index.html" rel="bookmark">What Dining Hall Food Are You?</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Reece Yang ’21 | Editor-in-Chief
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./what-dining-hall-food-are-you/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-32 -->
<article id="post-64" class="post-64 post type-post status-publish format-standard has-post-thumbnail category-news">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/awpikjetvgpiwjestjgo-2020-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/news/index.html" rel="category tag">News</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./sanders-and-biden-drop-out-endorse-ex-royals/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./sanders-and-biden-drop-out-endorse-ex-royals/index.html" rel="bookmark">Sanders and Biden Drop Out & Endorse Ex-Royals</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Isabel Su ’22 | News Editor The United States’ founding fathers may have fought for freedom from the British monarchy, but only a few years under the current president has…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./sanders-and-biden-drop-out-endorse-ex-royals/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-64 -->
<article id="post-134" class="post-134 post type-post status-publish format-standard has-post-thumbnail category-arts">
<div class="post-outer">
<div class="post-inner">
<div class="entry-thumbnail">
<div class="cs-overlay cs-overlay-hover cs-bg-dark cs-overlay-ratio cs-ratio-landscape">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/04/FullSizeRender-390x290.jpeg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/arts/index.html" rel="category tag">Arts</a></li></ul></div> <ul class="post-meta"></ul> </div>
<a href="./mumble-rap-classes-coming-to-hotchkiss/index.html" class="cs-overlay-link"></a>
</div>
</div>
</div>
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./mumble-rap-classes-coming-to-hotchkiss/index.html" rel="bookmark">Mumble Rap Classes Coming to Hotchkiss</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Stephanie Ge ’22 | Arts Editor Are you stymied by lack of passion for your current classes? Desperate to try something new next year? Look no further, for Hotchkiss will…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./mumble-rap-classes-coming-to-hotchkiss/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-134 -->
<article id="post-217" class="post-217 post type-post status-publish format-standard category-opinions">
<div class="post-outer">
<div class="post-inner">
<header class="entry-header">
<h2 class="entry-title"><a href="./why-distance-learning-is-superior-to-regular-school-2/index.html" rel="bookmark">Why Distance Learning is Superior to Regular School</a></h2> </header><!-- .entry-header -->
<div class="entry-excerpt">
Lily Yang ’21 & Michael Zhang ’21 | Opinions Editors The novel coronavirus has brought distance learning to schools across the world with much controversy. Many question the efficiency of…
</div><!-- .entry-excerpt -->
<div class="entry-details">
<div class="entry-more">
<a class="cs-link-more" href="./why-distance-learning-is-superior-to-regular-school-2/index.html">
View Post </a>
</div><!-- .entry-more-button -->
</div>
</div><!-- .post-inner -->
</div><!-- .post-outer -->
</article><!-- #post-217 -->
</div>
</div>
</div>
</main>
</div><!-- .content-area -->
<aside id="secondary" class="widget-area sidebar-area">
<div class="sidebar sidebar-1">
<div class="widget media_gallery-3 widget_media_gallery"><h5 class="title-block title-widget">Photos from rejected articles</h5><div id='gallery-1' class='gallery galleryid-217 gallery-columns-3 gallery-size-thumbnail'><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./hostage_rescue_team_members/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/Hostage_Rescue_Team_members-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/Hostage_Rescue_Team_members-150x150.jpg 150w, ./wp-content/uploads/2020/03/Hostage_Rescue_Team_members-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='./20200123_130247/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/20200123_130247-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/20200123_130247-150x150.jpg 150w, ./wp-content/uploads/2020/03/20200123_130247-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./harambe-meme-why-did-i-do-this/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/HARAMBE-MEME-WHY-DID-I-DO-THIS-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/HARAMBE-MEME-WHY-DID-I-DO-THIS-150x150.png 150w, ./wp-content/uploads/2020/03/HARAMBE-MEME-WHY-DID-I-DO-THIS-80x80.png 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./danaya/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/danaya-150x150.png" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/danaya-150x150.png 150w, ./wp-content/uploads/2020/03/danaya-80x80.png 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./exam-meme-51/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/Exam-Meme-51-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/Exam-Meme-51-150x150.jpg 150w, ./wp-content/uploads/2020/03/Exam-Meme-51-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./dsc_0174/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/DSC_0174-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/DSC_0174-150x150.jpg 150w, ./wp-content/uploads/2020/03/DSC_0174-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./dli_6379/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/DLI_6379-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/DLI_6379-150x150.jpg 150w, ./wp-content/uploads/2020/03/DLI_6379-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./screenshot_20200322-224205_reddit/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/Screenshot_20200322-224205_Reddit-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/Screenshot_20200322-224205_Reddit-150x150.jpg 150w, ./wp-content/uploads/2020/03/Screenshot_20200322-224205_Reddit-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon portrait'>
<a href='./20200325_190006/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/20200325_190006-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/20200325_190006-150x150.jpg 150w, ./wp-content/uploads/2020/03/20200325_190006-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./yes/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/yes-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/yes-150x150.jpg 150w, ./wp-content/uploads/2020/03/yes-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./lilyopinion/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/lilyopinion-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/lilyopinion-150x150.jpg 150w, ./wp-content/uploads/2020/03/lilyopinion-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure><figure class='gallery-item'>
<div class='gallery-icon landscape'>
<a href='./hotchkisssubmarinedraft1/index.html'><img width="150" height="150" src="./wp-content/uploads/2020/03/hotchkisssubmarinedraft1-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="" srcset="./wp-content/uploads/2020/03/hotchkisssubmarinedraft1-150x150.jpg 150w, ./wp-content/uploads/2020/03/hotchkisssubmarinedraft1-80x80.jpg 80w" sizes="(max-width: 150px) 100vw, 150px" /></a>
</div></figure>
</div>
</div><div class="widget mtphr-dnt-widget-3 mtphr-dnt-widget"><div id="mtphr-dnt-60-widget" class="mtphr-dnt mtphr-dnt-60 mtphr-dnt-default mtphr-dnt-scroll mtphr-dnt-scroll-left"><div class="mtphr-dnt-wrapper mtphr-dnt-clearfix"><h3 class="mtphr-dnt-title">Community Shoutouts</h3><div class="mtphr-dnt-tick-container"><div class="mtphr-dnt-tick-contents"><div class="mtphr-dnt-tick mtphr-dnt-default-tick mtphr-dnt-clearfix"><a href="./index.html?p=124" target="_self"><u>Shoutout to Mr. Andrew D’Ambrosio</u> for spotting and picking up a piece of coffee-brined chicken from the dining hall floor, making sure it made its way into where it belongs, the trash can!
<u>Shoutout to Mr. Adam Lang</u> for getting out of his car to press the MAC crosswalk button 10 times after sighting students disregard their own safety by ignoring the button simply because, according to this hero, “What a euphonious sound it is!”
<u>Shoutout to Shane Kim ’20</u> for persistently pressing the applaud and thumbs up button on Zoom after Mr. Frankenbach’s every sentence! Mr. Frankenbach feels “extraordinarily encouraged and loved.”
<u>Shoutout to Toby Atwill ’22</u> for using a nice picture of Lake Wononscopomuc as his Zoom background to make everyone in his English class feel like they were back on the beautiful campus!
<u>Shoutout to Carter Nachman ’23</u> for dressing up in plus one for his Zoom classes on Monday!
<u>Shoutout to Nicholas Lorentzen ’20</u> for returning a “Hi” in the hallway to Ms. Amanda McClure for the first time on the last day before break!
<u>Shoutout to Jerry Sheng ’20</u> for teaching his English class about Multivariable Calculus during an In-class essay!
<u>Shoutout to David Llyod George ’20</u> for not talking about physics on the dinner table with his family last night!
<u>Shoutout to George von Weise ’20</u> for wearing shoes to school!
<u>Shoutout to Maura Thompson ’20</u> for consistently including people in her tiktoks. Follow her @mauraevalyn!
<u>Shoutout to Ms. Carita Gardiner</u> for sharing her love of sparkly shoes and buying everyone their own pair!
<u>Shoutout to Lucy Bulley ’21</u> for giving her floor a GoGo squeeZ applesauce feed! </a></div></div></div></div></div></div><div class="widget nav_menu-6 widget_nav_menu"><div class="menu-troll-container"><ul id="menu-troll" class="menu"><li id="menu-item-150" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-150"><a href="./submit-your-community-shoutouts/index.html">Submit Your Community Shoutouts!</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-74"><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">How to Get Editorship</a></li>
<li id="menu-item-75" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-75"><a href="http://corndog.io/">Disable Lost Airpods Emails With This Simple Trick</a></li>
<li id="menu-item-76" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-76"><a href="http://www.koalastothemax.com/">All Secret Passageways on Campus, Revealed</a></li>
<li id="menu-item-78" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-78"><a href="https://cat-bounce.com/">Free Olympians and Pythians Points</a></li>
<li id="menu-item-80" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-80"><a href="http://endless.horse/">How to Call Mr. Bradley on Zoom</a></li>
<li id="menu-item-77" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-77"><a href="https://chrismckenzie.com/">Today’s Front Page</a></li>
<li id="menu-item-79" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-79"><a href="http://ihasabucket.com/">Return to Main Website</a></li>
</ul></div></div> </div>
<div class="sidebar sidebar-2"></div>
</aside><!-- .widget-area -->
</div><!-- .main-content -->
</div><!-- .cs-container -->
</div><!-- .site-content -->
<div class="section-footer-posts">
<div class="cs-container">
<div class="cs-footer-posts">
<div class="cs-footer-post">
<article class="post-120 post type-post status-publish format-standard has-post-thumbnail category-news">
<div class="cs-overlay cs-overlay-hover cs-overlay-ratio cs-ratio-landscape cs-bg-dark">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/prepwifi-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/news/index.html" rel="category tag">News</a></li></ul></div><ul class="post-meta"></ul> </div>
<a href="./a-moment-of-shame-for-a-senior-with-no-name/index.html" class="cs-overlay-link"></a>
</div>
<div class="cs-card">
<h2 class="h5 entry-title">
<a href="./a-moment-of-shame-for-a-senior-with-no-name/index.html" title="A Moment of Shame for a Senior With No Name">A Moment of Shame for a Senior With No Name</a>
</h2>
<ul class="post-meta"><li class="meta-date">March 31, 2020</li></ul> </div>
</article>
</div>
<div class="cs-footer-post">
<article class="post-34 post type-post status-publish format-standard has-post-thumbnail category-quizzes category-sports">
<div class="cs-overlay cs-overlay-hover cs-overlay-ratio cs-ratio-landscape cs-bg-dark">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/04/office-390x290.png" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/quizzes/index.html" rel="category tag">Quizzes</a></li>
<li><a href="./category/sports/index.html" rel="category tag">Sports</a></li></ul></div><ul class="post-meta"></ul> </div>
<a href="./your-taste-in-office-characters-will-determine-which-hotchkiss-team-you-should-join/index.html" class="cs-overlay-link"></a>
</div>
<div class="cs-card">
<h2 class="h5 entry-title">
<a href="./your-taste-in-office-characters-will-determine-which-hotchkiss-team-you-should-join/index.html" title="Your Taste in Office Characters Will Determine Which Hotchkiss Team You Should Join">Your Taste in Office Characters Will Determine Which Hotchkiss Team You Should Join</a>
</h2>
<ul class="post-meta"><li class="meta-date">March 27, 2020</li></ul> </div>
</article>
</div>
<div class="cs-footer-post">
<article class="post-130 post type-post status-publish format-standard has-post-thumbnail category-arts">
<div class="cs-overlay cs-overlay-hover cs-overlay-ratio cs-ratio-landscape cs-bg-dark">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/aprilfoolsarts-390x290.png" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/arts/index.html" rel="category tag">Arts</a></li></ul></div><ul class="post-meta"></ul> </div>
<a href="./an-in-depth-look-at-talents-at-hotchkiss/index.html" class="cs-overlay-link"></a>
</div>
<div class="cs-card">
<h2 class="h5 entry-title">
<a href="./an-in-depth-look-at-talents-at-hotchkiss/index.html" title="An In-Depth Look at Talents at Hotchkiss">An In-Depth Look at Talents at Hotchkiss</a>
</h2>
<ul class="post-meta"><li class="meta-date">March 31, 2020</li></ul> </div>
</article>
</div>
<div class="cs-footer-post">
<article class="post-122 post type-post status-publish format-standard has-post-thumbnail category-editorial">
<div class="cs-overlay cs-overlay-hover cs-overlay-ratio cs-ratio-landscape cs-bg-dark">
<div class="cs-overlay-background">
<img width="390" height="290" src="./wp-content/uploads/2020/03/3ul0kl-390x290.jpg" class="attachment-cs-thumbnail size-cs-thumbnail wp-post-image" alt="" /> </div>
<div class="cs-overlay-content">
<div class="meta-category"><ul class="post-categories">
<li><a href="./category/editorial/index.html" rel="category tag">Editorial</a></li></ul></div><ul class="post-meta"></ul> </div>
<a href="./introducing-our-new-ai-writer/index.html" class="cs-overlay-link"></a>
</div>
<div class="cs-card">
<h2 class="h5 entry-title">
<a href="./introducing-our-new-ai-writer/index.html" title="Introducing &*%, Our New AI Writer">Introducing &*%, Our New AI Writer</a>
</h2>
<ul class="post-meta"><li class="meta-date">March 31, 2020</li></ul> </div>
</article>
</div>
</div>
</div>
</div>
<footer id="colophon" class="site-footer cs-bg-dark">
<div class="site-info">
<div class="footer-aside">
<nav class="navbar-footer"><ul id="menu-main-2" class="navbar-nav"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-39"><a href="./category/news/index.html">Newz</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-40"><a href="./category/features/index.html">Features</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-41"><a href="./category/opinions/index.html">Facts</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-42"><a href="./category/arts/index.html">Arts</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-43"><a href="./category/sports/index.html">Sports</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-44"><a href="./category/quizzes/index.html">Hotchfeed Quizzes</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-227"><a href="./category/editorial/index.html">Editorial</a></li>
</ul></nav> </div>
<div class="footer-content">
<h5 class="site-title footer-title">The Hotchkiss Record</h5>
<div class="footer-copyright">
Remember to edit this so it is different from last year.
The Record is a biweekly student run newspaper. It is well known for its inability to catch mistakes and common occurences of “Fake News.” At this point it is just the Fox News of the Hotchkiss bubble; unreliable yet entertaining, but still read by the respective president.
In 2018, The Record launched the digital platform to create the potential to reach members of the extended Hotchkiss community. Unfortunately, statistics have revealed that the greatest use of the website is each editor clicking the login button at the bottom of the page, thus defeating the purpose of the website. It now mostly houses a collection of the dankest memes available on the internet hand curated by the staff.
In the future, The Record plans to hire a full staff of meme content creators in order to establish its place as the premiere meme content creation company. </div>
</div>
</div><!-- .site-info -->
</footer>
</div><!-- .site-inner -->
</div><!-- .site -->
<script type='text/javascript' src='./wp-content/plugins/ditty-news-ticker/inc/static/js/jquery.touchSwipe.min.js?ver=2.2.15'></script>
<script type='text/javascript' src='./wp-content/plugins/ditty-news-ticker/inc/static/js/jquery.easing.js?ver=1.4.1'></script>
<script type='text/javascript' src='./wp-content/plugins/ditty-news-ticker/inc/static/js/imagesloaded.pkgd.min.js?ver=4.1.4'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var mtphr_dnt_vars = {"is_rtl":""};
/* ]]> */
</script>
<script type='text/javascript' src='./wp-content/plugins/ditty-news-ticker/inc/static/js/ditty-news-ticker.min.js?ver=1585278276'></script>
<script type='text/javascript' src='./wp-includes/js/imagesloaded.min.js?ver=3.2.0'></script>
<script type='text/javascript' src='./wp-content/themes/expertly/js/colcade.js?ver=0.2.0'></script>
<script type='text/javascript' src='./wp-content/themes/expertly/js/ofi.min.js?ver=3.2.3'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var csco_ajax_pagination = {"type":"ajax_restapi","nonce":"ef10f015d0","url":".\/wp-admin\/admin-ajax.php","rest_url":".\/wp-json\/csco\/v1\/more-posts","posts_per_page":"10","query_data":"{\"location\":\"home\",\"infinite_load\":false,\"query_vars\":{\"error\":\"\",\"m\":\"\",\"p\":0,\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"name\":\"\",\"pagename\":\"\",\"page_id\":0,\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":10,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"},\"in_the_loop\":false,\"is_single\":false,\"is_page\":false,\"is_archive\":false,\"is_author\":false,\"is_category\":false,\"is_tag\":false,\"is_tax\":false,\"is_home\":true,\"is_singular\":false}","translation":{"load_more":"Show More"}};
/* ]]> */
</script>
<script type='text/javascript' src='./wp-content/themes/expertly/js/scripts.js?ver=1.6.8'></script>
<script type='text/javascript' src='./wp-includes/js/wp-embed.min.js?ver=5.4.1'></script>
<script>
jQuery( document ).ready( function($) {
$( '#mtphr-dnt-60-widget' ).ditty_news_ticker({
id : '60-widget',
type : 'scroll',
scroll_direction : 'left',
scroll_speed : 10,
scroll_pause : 1,
scroll_spacing : 40,
scroll_init : 0,
rotate_type : 'fade',
auto_rotate : 1,
rotate_delay : 7,
rotate_pause : 0,
rotate_speed : 10,
rotate_ease : 'easeInOutQuint',
nav_reverse : 0,
disable_touchswipe : 0,
offset : 20,
after_load : function( $ticker ) {
},
before_change : function( $ticker ) {
},
after_change : function( $ticker ) {
}
});
});
</script>
<script type='text/javascript' src='https://stats.wp.com/e-202018.js' async='async' defer='defer'></script>
<script type='text/javascript'>
_stq = window._stq || [];
_stq.push([ 'view', {v:'ext',j:'1:8.3',blog:'175162166',post:'0',tz:'0',srv:'again.paperless.thehr.org'} ]);
_stq.push([ 'clickTrackerInit', '175162166', '0' ]);
</script>
</body>
</html>