-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·1142 lines (1124 loc) · 161 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
1000
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Edited Logbooks of the USS Jeannette</title>
<meta name="description" content="Website for the USS Jeannette logbook dataset. Allows browsing of scanned logbook pages, weather observations, daily narratives, associated materials, and other information relating to the voyage of the Jeannette.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.8.3-respond-1.4.2.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand brand" href="#">Edited Logbooks of the <i>USS Jeannette</i></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Home</a></li>
<li><a href="#about">About the <i>Jeannette</i></a></li>
<li><a href="#data">Data</a></li>
<li><a href="#credits">Credits & Sources</a></li>
</div><!--/.navbar-collapse -->
</div>
</nav>
<div class="jumbotron">
<div class="container">
<h1 class="brand">USS Jeannette</h1>
<h2>“Beset and drifting in the pack,” 1879–1881</h2>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-7">
<a id="about"></a><h2>About the <i>Jeannette</i></h2>
<h3>Ship Biography</h3>
<p>Steam barque or bark, ex-British <i>Philomel</i>-class wooden gunvessel <i>Pandora</i>, built by Pembroke Dockyard, laid down 30 March 1860, launched 7 February 1861, commissioned September 1861. 570 long tons, 145 feet long by 24 feet, 4 inch beam by 13 feet draft, 8 to 11 knots, originally 60 crew. Sold in 1875 to Sir Allan Young for Arctic exploration, then in 1878 to James G. Bennett of the <cite>New York Herald</cite> and renamed <i>Jeannette</i>. Bennett obtained U.S. government help to fit her out for a polar expedition. <i>Jeannette</i> sailed with 30 officers and men (28 in some sources) and 3 civilians as a privately-owned ship under U.S. Navy orders.</p>
<h3>Summary of Service</h3>
<ul>
<li><a href="entries/0.html">25 June 1879</a>: First entry in <i>Jeannette</i> ship's log.</li>
<li><a href="entries/13.html">8 July 1879</a>: Departed San Francisco, California. In addition to his tasks of reaching the North Pole via the Bering Strait and carrying out scientific observations during passage, Lieutenant Commander George W. DeLong was also ordered to search for the long overdue <i>Vega</i> polar expedition.</li>
<li><a href="entries/63.html">27 August 1879</a>: Headed north from St. Lawrence Bay, Siberia.</li>
<li><a href="entries/71.html">4 September 1879</a>: Sighted Herald Island. Soon after, caught in the pack ice and drifted northwest for the next 21 months.</li>
<li>1879–1881: Drifting with the ice in the general direction of the North Pole.</li>
<li>May 1881: Two islands discovered, named Jeannette and Henrietta.</li>
<li>12 June 1881: Ice started to crush the ship. The crew unloaded equipment and supplies, and next morning she sank. DeLong and his men then started hauling their three supply-filled boats over the ice towards the Lena River Delta.</li>
</ul>
<h3>Linked Material</h3>
<h4><i>Jeannette</i> Ship’s Journal</h4>
<p>Scanned manuscript copy of the Jeannette ship's journal. Provided by the Pacific Marine Environmental Laboratory, National Oceanic and Atmospheric Administration. Scanned images available via <a href="http://www.pmel.noaa.gov/arctic/rediscover/images/jeanette-ship-journal/">NOAA PMEL</a>.</p>
<h4>Published Journals of George W. DeLong</h4>
<p>The published journal of Lieutenant Commander George W. DeLong, as edited and published in 1884 by Emma Wotton DeLong. Provided by the Biodiversity Heritage Library. Digitized copy available at <a href="http://dx.doi.org/10.5962/bhl.title.6873">BHL</a>.</p>
<hr />
<a id="data"></a><h2>Data</h2>
<p><a href="https://github.com/zooniverse/old-weather-data/tree/master/USS%20Jeannette">Data for the voyage of the <i>USS Jeannette</i></a> is made available courtesy of Old Weather, a Zooniverse project, on GitHub.</p>
<p>Metadata for the four volumes of the <i>Jeannette</i> logs is made available here in an XML package: <a href="jeannette_metadata.xml">jeannette_metadata.xml</a>.</p>
<hr />
<a id="credits"></a><h2>Credits & Sources</h2>
<p>Full documentation of sources, along with technical notes and suggested citations, is available for each logbook volume:</p>
<ul>
<li><a href="metadata/1.html">Volume 1</a></li>
<li><a href="metadata/2.html">Volume 2</a></li>
<li><a href="metadata/3.html">Volume 3</a></li>
<li><a href="metadata/4.html">Volume 4</a></li>
</ul>
<p><i>USS Jeannette</i> logbook transcriptions and data courtesy of <a href="http://www.oldweather.org">Old Weather</a> and <a href="http://www.brohan.org/philip">Philip Brohan</a>. Ship biography, summary of service, and other information courtesy of <a href="http://www.naval-history.net">Naval-history.net</a>.</p>
<p>Banner image: Tyler, James Gale, <cite>Abandoning the Arctic Exploration Ship Jeannette</cite> (1883).</p>
</div>
<div class="col-md-5">
<h3>Explore the Logbooks</h3>
<p>Click on a heading to explore logbook entries for that month. Each entry by date includes scanned pages, a text transcription, weather observations, and links to any associated material from other sources.</p>
<div id="accordion" class="panel-group" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1879-06">
<h4 class="panel-title" id="collapsible-list-group-1879-06">
<a data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1879-06" aria-expanded="true" aria-controls="collapse-list-group-1879-06">
June 1879 </a>
</h4>
</div>
<div id="collapse-list-group-1879-06" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="collapse-list-group-heading-1879-06" aria-expanded="true">
<ul class="list-group">
<li class="list-group-item"><a href="entries/0.html">25 June 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/1.html">26 June 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/2.html">27 June 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/3.html">28 June 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/4.html">29 June 1879</a></li>
<li class="list-group-item"><a href="entries/5.html">30 June 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1879-07">
<h4 class="panel-title" id="collapsible-list-group-1879-07">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1879-07" aria-expanded="false" aria-controls="collapse-list-group-1879-07">
July 1879 </a>
</h4>
</div>
<div id="collapse-list-group-1879-07" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1879-07" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/6.html">1 July 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/7.html">2 July 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/8.html">3 July 1879</a></li>
<li class="list-group-item"><a href="entries/9.html">4 July 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/10.html">5 July 1879</a></li>
<li class="list-group-item"><a href="entries/11.html">6 July 1879</a></li>
<li class="list-group-item"><a href="entries/12.html">7 July 1879</a></li>
<li class="list-group-item"><a href="entries/13.html">8 July 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/14.html">9 July 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/15.html">10 July 1879</a></li>
<li class="list-group-item"><a href="entries/16.html">11 July 1879</a></li>
<li class="list-group-item"><a href="entries/17.html">12 July 1879</a></li>
<li class="list-group-item"><a href="entries/18.html">13 July 1879</a></li>
<li class="list-group-item"><a href="entries/19.html">14 July 1879</a></li>
<li class="list-group-item"><a href="entries/20.html">15 July 1879</a> <span class="badge badge-entity refueling">Refueling</span></li>
<li class="list-group-item"><a href="entries/21.html">16 July 1879</a></li>
<li class="list-group-item"><a href="entries/22.html">17 July 1879</a></li>
<li class="list-group-item"><a href="entries/23.html">18 July 1879</a></li>
<li class="list-group-item"><a href="entries/24.html">19 July 1879</a></li>
<li class="list-group-item"><a href="entries/25.html">20 July 1879</a></li>
<li class="list-group-item"><a href="entries/26.html">21 July 1879</a></li>
<li class="list-group-item"><a href="entries/27.html">22 July 1879</a></li>
<li class="list-group-item"><a href="entries/28.html">23 July 1879</a></li>
<li class="list-group-item"><a href="entries/29.html">24 July 1879</a></li>
<li class="list-group-item"><a href="entries/30.html">25 July 1879</a></li>
<li class="list-group-item"><a href="entries/31.html">26 July 1879</a></li>
<li class="list-group-item"><a href="entries/32.html">27 July 1879</a></li>
<li class="list-group-item"><a href="entries/33.html">28 July 1879</a></li>
<li class="list-group-item"><a href="entries/34.html">29 July 1879</a></li>
<li class="list-group-item"><a href="entries/35.html">30 July 1879</a></li>
<li class="list-group-item"><a href="entries/36.html">31 July 1879</a></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1879-08">
<h4 class="panel-title" id="collapsible-list-group-1879-08">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1879-08" aria-expanded="false" aria-controls="collapse-list-group-1879-08">
August 1879 </a>
</h4>
</div>
<div id="collapse-list-group-1879-08" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1879-08" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/37.html">1 August 1879</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/38.html">2 August 1879</a> <span class="badge badge-entity refueling">Refueling</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/39.html">3 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/40.html">4 August 1879</a> <span class="badge badge-entity refueling">Refueling</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/41.html">5 August 1879</a> <span class="badge badge-entity refueling">Refueling</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/42.html">6 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/43.html">7 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/44.html">8 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/45.html">9 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/46.html">10 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/47.html">11 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/48.html">12 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/49.html">13 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/50.html">14 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/51.html">15 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/52.html">16 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/53.html">17 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/54.html">18 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/55.html">19 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/56.html">20 August 1879</a> <span class="badge badge-entity refueling">Refueling</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/57.html">21 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/58.html">22 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/59.html">23 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/60.html">24 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/61.html">25 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/62.html">26 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/63.html">27 August 1879</a> <span class="badge badge-entity refueling">Refueling</span></li>
<li class="list-group-item"><a href="entries/64.html">28 August 1879</a></li>
<li class="list-group-item"><a href="entries/65.html">29 August 1879</a></li>
<li class="list-group-item"><a href="entries/66.html">30 August 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/67.html">31 August 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1879-09">
<h4 class="panel-title" id="collapsible-list-group-1879-09">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1879-09" aria-expanded="false" aria-controls="collapse-list-group-1879-09">
September 1879 </a>
</h4>
</div>
<div id="collapse-list-group-1879-09" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1879-09" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/68.html">1 September 1879</a></li>
<li class="list-group-item"><a href="entries/69.html">2 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/70.html">3 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/71.html">4 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/72.html">5 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/73.html">6 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/74.html">7 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/75.html">8 September 1879</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/76.html">9 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/77.html">10 September 1879</a> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/78.html">11 September 1879</a></li>
<li class="list-group-item"><a href="entries/79.html">12 September 1879</a></li>
<li class="list-group-item"><a href="entries/80.html">13 September 1879</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/81.html">14 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/82.html">15 September 1879</a></li>
<li class="list-group-item"><a href="entries/83.html">16 September 1879</a></li>
<li class="list-group-item"><a href="entries/84.html">17 September 1879</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/85.html">18 September 1879</a></li>
<li class="list-group-item"><a href="entries/86.html">19 September 1879</a></li>
<li class="list-group-item"><a href="entries/87.html">20 September 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/88.html">21 September 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/89.html">22 September 1879</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/90.html">23 September 1879</a></li>
<li class="list-group-item"><a href="entries/91.html">24 September 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/92.html">25 September 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/93.html">26 September 1879</a></li>
<li class="list-group-item"><a href="entries/94.html">27 September 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/95.html">28 September 1879</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/96.html">29 September 1879</a></li>
<li class="list-group-item"><a href="entries/97.html">30 September 1879</a></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1879-10">
<h4 class="panel-title" id="collapsible-list-group-1879-10">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1879-10" aria-expanded="false" aria-controls="collapse-list-group-1879-10">
October 1879 </a>
</h4>
</div>
<div id="collapse-list-group-1879-10" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1879-10" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/98.html">1 October 1879</a></li>
<li class="list-group-item"><a href="entries/99.html">2 October 1879</a></li>
<li class="list-group-item"><a href="entries/100.html">3 October 1879</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/101.html">4 October 1879</a></li>
<li class="list-group-item"><a href="entries/102.html">5 October 1879</a></li>
<li class="list-group-item"><a href="entries/103.html">6 October 1879</a></li>
<li class="list-group-item"><a href="entries/104.html">7 October 1879</a></li>
<li class="list-group-item"><a href="entries/105.html">8 October 1879</a></li>
<li class="list-group-item"><a href="entries/106.html">9 October 1879</a></li>
<li class="list-group-item"><a href="entries/107.html">10 October 1879</a></li>
<li class="list-group-item"><a href="entries/108.html">11 October 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/109.html">12 October 1879</a></li>
<li class="list-group-item"><a href="entries/110.html">13 October 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/111.html">14 October 1879</a></li>
<li class="list-group-item"><a href="entries/112.html">15 October 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/113.html">16 October 1879</a></li>
<li class="list-group-item"><a href="entries/114.html">17 October 1879</a></li>
<li class="list-group-item"><a href="entries/115.html">18 October 1879</a></li>
<li class="list-group-item"><a href="entries/116.html">19 October 1879</a></li>
<li class="list-group-item"><a href="entries/117.html">20 October 1879</a></li>
<li class="list-group-item"><a href="entries/118.html">21 October 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/119.html">22 October 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/120.html">23 October 1879</a></li>
<li class="list-group-item"><a href="entries/121.html">24 October 1879</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/122.html">25 October 1879</a></li>
<li class="list-group-item"><a href="entries/123.html">26 October 1879</a></li>
<li class="list-group-item"><a href="entries/124.html">27 October 1879</a></li>
<li class="list-group-item"><a href="entries/125.html">28 October 1879</a></li>
<li class="list-group-item"><a href="entries/126.html">29 October 1879</a></li>
<li class="list-group-item"><a href="entries/127.html">30 October 1879</a></li>
<li class="list-group-item"><a href="entries/128.html">31 October 1879</a></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1879-11">
<h4 class="panel-title" id="collapsible-list-group-1879-11">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1879-11" aria-expanded="false" aria-controls="collapse-list-group-1879-11">
November 1879 </a>
</h4>
</div>
<div id="collapse-list-group-1879-11" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1879-11" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/129.html">1 November 1879</a></li>
<li class="list-group-item"><a href="entries/130.html">2 November 1879</a></li>
<li class="list-group-item"><a href="entries/131.html">3 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/132.html">4 November 1879</a></li>
<li class="list-group-item"><a href="entries/133.html">5 November 1879</a></li>
<li class="list-group-item"><a href="entries/134.html">6 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/135.html">7 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/136.html">8 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/137.html">9 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/138.html">10 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/139.html">11 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/140.html">12 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/141.html">13 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/142.html">14 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/143.html">15 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/144.html">16 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/145.html">17 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/146.html">18 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/147.html">19 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/148.html">20 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/149.html">21 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/150.html">22 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/151.html">23 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/152.html">24 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/153.html">25 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/154.html">26 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/155.html">27 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/156.html">28 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/157.html">29 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/158.html">30 November 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity animals">Animals</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1879-12">
<h4 class="panel-title" id="collapsible-list-group-1879-12">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1879-12" aria-expanded="false" aria-controls="collapse-list-group-1879-12">
December 1879 </a>
</h4>
</div>
<div id="collapse-list-group-1879-12" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1879-12" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/159.html">1 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/160.html">2 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/161.html">3 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/162.html">4 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/163.html">5 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/164.html">6 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/165.html">7 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/166.html">8 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/167.html">9 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/168.html">10 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/169.html">11 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/170.html">12 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/171.html">13 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/172.html">14 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/173.html">15 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/174.html">16 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/175.html">17 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/176.html">18 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/177.html">19 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/178.html">20 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/179.html">21 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/180.html">22 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/181.html">23 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/182.html">24 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/183.html">25 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/184.html">26 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/185.html">27 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/186.html">28 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/187.html">29 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/188.html">30 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/189.html">31 December 1879</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-01">
<h4 class="panel-title" id="collapsible-list-group-1880-01">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-01" aria-expanded="false" aria-controls="collapse-list-group-1880-01">
January 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-01" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-01" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/190.html">1 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/191.html">2 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/192.html">3 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/193.html">4 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/194.html">5 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/195.html">6 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/196.html">7 January 1880</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/197.html">8 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/198.html">9 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/199.html">10 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/200.html">11 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/201.html">12 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/202.html">13 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/203.html">14 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/204.html">15 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/205.html">16 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/206.html">17 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/207.html">18 January 1880</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/208.html">19 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/209.html">20 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/210.html">21 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/211.html">22 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/212.html">23 January 1880</a></li>
<li class="list-group-item"><a href="entries/213.html">24 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/214.html">25 January 1880</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/215.html">26 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/216.html">27 January 1880</a></li>
<li class="list-group-item"><a href="entries/217.html">28 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/218.html">29 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/219.html">30 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/220.html">31 January 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-02">
<h4 class="panel-title" id="collapsible-list-group-1880-02">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-02" aria-expanded="false" aria-controls="collapse-list-group-1880-02">
February 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-02" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-02" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/221.html">1 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/222.html">2 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/223.html">3 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/224.html">4 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/225.html">5 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/226.html">6 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/227.html">7 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/228.html">8 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/229.html">9 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/230.html">10 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/231.html">11 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/232.html">12 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/233.html">13 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/234.html">14 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/235.html">15 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/236.html">16 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/237.html">17 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/238.html">18 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/239.html">19 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/240.html">20 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/241.html">21 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/242.html">22 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/243.html">23 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/244.html">24 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/245.html">25 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/246.html">26 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/247.html">27 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/248.html">28 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/249.html">29 February 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-03">
<h4 class="panel-title" id="collapsible-list-group-1880-03">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-03" aria-expanded="false" aria-controls="collapse-list-group-1880-03">
March 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-03" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-03" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/250.html">1 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/251.html">2 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/252.html">3 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/253.html">4 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/254.html">5 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/255.html">6 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/256.html">7 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/257.html">8 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/258.html">9 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/259.html">10 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/260.html">11 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/261.html">12 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/262.html">13 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/263.html">14 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/264.html">15 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/265.html">16 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/266.html">17 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/267.html">18 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/268.html">19 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/269.html">20 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/270.html">21 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/271.html">22 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/272.html">23 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/273.html">24 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/274.html">25 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/275.html">26 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/276.html">27 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/277.html">28 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/278.html">29 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/279.html">30 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/280.html">31 March 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-04">
<h4 class="panel-title" id="collapsible-list-group-1880-04">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-04" aria-expanded="false" aria-controls="collapse-list-group-1880-04">
April 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-04" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-04" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/281.html">1 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/282.html">2 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/283.html">3 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/284.html">4 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/285.html">5 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/286.html">6 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/287.html">7 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/288.html">8 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/289.html">9 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/290.html">10 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/291.html">11 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/292.html">12 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/293.html">13 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/294.html">14 April 1880</a></li>
<li class="list-group-item"><a href="entries/295.html">15 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/296.html">16 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/297.html">17 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/298.html">18 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/299.html">19 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/300.html">20 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/301.html">21 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/302.html">22 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/303.html">23 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/304.html">24 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/305.html">25 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/306.html">26 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/307.html">27 April 1880</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/308.html">28 April 1880</a></li>
<li class="list-group-item"><a href="entries/309.html">29 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/310.html">30 April 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-05">
<h4 class="panel-title" id="collapsible-list-group-1880-05">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-05" aria-expanded="false" aria-controls="collapse-list-group-1880-05">
May 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-05" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-05" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/311.html">1 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/312.html">2 May 1880</a> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/313.html">3 May 1880</a></li>
<li class="list-group-item"><a href="entries/314.html">4 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/315.html">5 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/316.html">6 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/317.html">7 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/318.html">8 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/319.html">9 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/320.html">10 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/321.html">11 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/322.html">12 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/323.html">13 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/324.html">14 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/325.html">15 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/326.html">16 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/327.html">17 May 1880</a></li>
<li class="list-group-item"><a href="entries/328.html">18 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/329.html">19 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/330.html">20 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/331.html">21 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/332.html">22 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/333.html">23 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/334.html">24 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/335.html">25 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/336.html">26 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/337.html">27 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/338.html">28 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/339.html">29 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/340.html">30 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/341.html">31 May 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-06">
<h4 class="panel-title" id="collapsible-list-group-1880-06">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-06" aria-expanded="false" aria-controls="collapse-list-group-1880-06">
June 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-06" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-06" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/342.html">1 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/343.html">2 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/344.html">3 June 1880</a></li>
<li class="list-group-item"><a href="entries/345.html">4 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/346.html">5 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/347.html">6 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/348.html">7 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/349.html">8 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/350.html">9 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/351.html">10 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/352.html">11 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/353.html">12 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/354.html">13 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/355.html">14 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/356.html">15 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/357.html">16 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/358.html">17 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/359.html">18 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/360.html">19 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/361.html">20 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/362.html">21 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/363.html">22 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/364.html">23 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/365.html">24 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/366.html">25 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/367.html">26 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/368.html">27 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/369.html">28 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/370.html">29 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/371.html">30 June 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-07">
<h4 class="panel-title" id="collapsible-list-group-1880-07">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-07" aria-expanded="false" aria-controls="collapse-list-group-1880-07">
July 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-07" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-07" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/372.html">1 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/373.html">2 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/374.html">3 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/375.html">4 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/376.html">5 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/377.html">6 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/378.html">7 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/379.html">8 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/380.html">9 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/381.html">10 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/382.html">11 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/383.html">12 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/384.html">13 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/385.html">14 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/386.html">15 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/387.html">16 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/388.html">17 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/389.html">18 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/390.html">19 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/391.html">20 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/392.html">21 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/393.html">22 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/394.html">23 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/395.html">24 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/396.html">25 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/397.html">26 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/398.html">27 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/399.html">28 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/400.html">28 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/401.html">30 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/402.html">31 July 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-08">
<h4 class="panel-title" id="collapsible-list-group-1880-08">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-08" aria-expanded="false" aria-controls="collapse-list-group-1880-08">
August 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-08" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-08" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/403.html">1 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/404.html">2 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/405.html">3 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/406.html">4 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/407.html">5 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/408.html">6 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/409.html">7 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/410.html">8 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/411.html">9 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/412.html">10 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/413.html">11 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/414.html">12 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/415.html">13 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/416.html">14 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/417.html">15 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/418.html">16 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/419.html">17 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/420.html">18 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/421.html">19 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/422.html">20 August 1880</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/423.html">21 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/424.html">22 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/425.html">23 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/426.html">24 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/427.html">25 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/428.html">26 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/429.html">27 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/430.html">28 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/431.html">29 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/432.html">30 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/433.html">31 August 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-09">
<h4 class="panel-title" id="collapsible-list-group-1880-09">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-09" aria-expanded="false" aria-controls="collapse-list-group-1880-09">
September 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-09" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-09" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/434.html">1 September 1880</a> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/435.html">2 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/436.html">3 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/437.html">4 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/438.html">5 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/439.html">6 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/440.html">7 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/441.html">8 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/442.html">9 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/443.html">10 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/444.html">11 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/445.html">12 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/446.html">13 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/447.html">14 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/448.html">15 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/449.html">16 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/450.html">17 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/451.html">18 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/452.html">19 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/453.html">20 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/454.html">21 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/455.html">22 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/456.html">23 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/457.html">24 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/458.html">25 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/459.html">26 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/460.html">27 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/461.html">28 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/462.html">29 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/463.html">30 September 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-10">
<h4 class="panel-title" id="collapsible-list-group-1880-10">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-10" aria-expanded="false" aria-controls="collapse-list-group-1880-10">
October 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-10" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-10" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/464.html">1 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/465.html">2 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/466.html">3 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/467.html">4 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/468.html">5 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/469.html">6 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/470.html">7 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/471.html">8 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/472.html">9 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/473.html">10 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/474.html">11 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/475.html">12 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/476.html">13 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/477.html">14 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/478.html">15 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/479.html">16 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/480.html">17 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/481.html">18 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/482.html">19 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/483.html">20 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/484.html">21 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/485.html">22 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/486.html">23 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/487.html">24 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/488.html">25 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/489.html">26 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/490.html">27 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/491.html">28 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/492.html">29 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/493.html">30 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/494.html">31 October 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-11">
<h4 class="panel-title" id="collapsible-list-group-1880-11">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-11" aria-expanded="false" aria-controls="collapse-list-group-1880-11">
November 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-11" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-11" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/495.html">1 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/496.html">2 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/497.html">3 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/498.html">4 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/499.html">5 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/500.html">6 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/501.html">7 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/502.html">8 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/503.html">8 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/504.html">10 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/505.html">11 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/506.html">12 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/507.html">13 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/508.html">14 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/509.html">15 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/510.html">16 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/511.html">17 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/512.html">18 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/513.html">19 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/514.html">20 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/515.html">21 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/516.html">22 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/517.html">23 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/518.html">24 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/519.html">25 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/520.html">26 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/521.html">27 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/522.html">28 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/523.html">29 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/524.html">30 November 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1880-12">
<h4 class="panel-title" id="collapsible-list-group-1880-12">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1880-12" aria-expanded="false" aria-controls="collapse-list-group-1880-12">
December 1880 </a>
</h4>
</div>
<div id="collapse-list-group-1880-12" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1880-12" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/525.html">1 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/526.html">2 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/527.html">3 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/528.html">4 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/529.html">5 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/530.html">6 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/531.html">7 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/532.html">8 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/533.html">9 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/534.html">10 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/535.html">10 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/536.html">12 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/537.html">13 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/538.html">14 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/539.html">15 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/540.html">16 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/541.html">17 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/542.html">18 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/543.html">19 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/544.html">20 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/545.html">21 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/546.html">22 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/547.html">23 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/548.html">24 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/549.html">25 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/550.html">26 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/551.html">27 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/552.html">28 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/553.html">29 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/554.html">30 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/555.html">31 December 1880</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1881-01">
<h4 class="panel-title" id="collapsible-list-group-1881-01">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1881-01" aria-expanded="false" aria-controls="collapse-list-group-1881-01">
January 1881 </a>
</h4>
</div>
<div id="collapse-list-group-1881-01" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1881-01" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/556.html">1 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/557.html">2 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/558.html">3 January 1881</a></li>
<li class="list-group-item"><a href="entries/559.html">4 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/560.html">5 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/561.html">6 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/562.html">7 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/563.html">8 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/564.html">9 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/565.html">10 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/566.html">11 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/567.html">12 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/568.html">13 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/569.html">14 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/570.html">15 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/571.html">16 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/572.html">17 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/573.html">18 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/574.html">19 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/575.html">20 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/576.html">21 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/577.html">22 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/578.html">23 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/579.html">24 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/580.html">25 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/581.html">26 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/582.html">27 January 1881</a> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/583.html">28 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/584.html">29 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/585.html">30 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/586.html">31 January 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1881-02">
<h4 class="panel-title" id="collapsible-list-group-1881-02">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1881-02" aria-expanded="false" aria-controls="collapse-list-group-1881-02">
February 1881 </a>
</h4>
</div>
<div id="collapse-list-group-1881-02" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1881-02" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/587.html">1 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/588.html">2 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/589.html">3 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/590.html">4 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/591.html">5 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/592.html">6 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/593.html">7 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/594.html">8 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/595.html">9 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/596.html">10 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/597.html">11 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/598.html">12 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/599.html">13 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/600.html">14 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/601.html">15 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/602.html">16 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/603.html">17 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/604.html">18 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/605.html">19 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/606.html">20 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/607.html">21 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/608.html">22 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/609.html">23 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/610.html">24 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/611.html">25 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/612.html">26 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/613.html">27 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/614.html">28 February 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
</ul>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="collapse-list-group-heading-1881-03">
<h4 class="panel-title" id="collapsible-list-group-1881-03">
<a class="collapsed" data-parent="#accordion" data-toggle="collapse" href="#collapse-list-group-1881-03" aria-expanded="false" aria-controls="collapse-list-group-1881-03">
March 1881 </a>
</h4>
</div>
<div id="collapse-list-group-1881-03" class="panel-collapse collapse" role="tabpanel" aria-labelledby="collapse-list-group-heading-1881-03" aria-expanded="false">
<ul class="list-group">
<li class="list-group-item"><a href="entries/615.html">1 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/616.html">2 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/617.html">3 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/618.html">4 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/619.html">5 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/620.html">6 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span> <span class="badge badge-entity animals">Animals</span></li>
<li class="list-group-item"><a href="entries/621.html">7 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/622.html">8 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/623.html">9 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/624.html">10 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/625.html">11 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/626.html">12 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/627.html">13 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/628.html">14 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/629.html">15 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/630.html">16 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>
<li class="list-group-item"><a href="entries/631.html">17 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/632.html">18 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/633.html">19 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/634.html">20 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/635.html">21 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/636.html">22 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/637.html">23 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity mentions">People/Ships</span></li>
<li class="list-group-item"><a href="entries/638.html">24 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/639.html">25 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span> <span class="badge badge-entity aurora">Aurora</span></li>
<li class="list-group-item"><a href="entries/640.html">26 March 1881</a> <span class="badge badge-entity sea-ice">Sea Ice</span></li>