-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1423 lines (1343 loc) · 53.2 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>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Collections Workshop — University of Michigan Library</title>
<meta name="description" content="{{ description }}" />
<!-- Social sharing meta -->
<meta
property="og:url"
name="twitter:url"
content="https://design-system.lib.umich.edu{{ page.url }}"
/>
<meta
property="og:title"
name="twitter:title"
content="{{ title }} | Design System | University of Michigan Library"
/>
<meta
property="og:description"
name="twitter:description"
content="{{ description }}"
/>
<meta
property="og:image"
name="twitter:image"
content="{{ site.cloudinary_url }}/image/upload/c_fill,g_faces,h_630,w_1200/l_text:Crimson%20Text_160_center:{{ title }},co_rgb:334354,c_fit/ds_share_bg.png"
/>
<meta
property="og:image:alt"
name="twitter:image:alt"
content="{{ title }}"
/>
<meta
property="og:site_name"
content="Design System | University of Michigan Library"
/>
<meta name="twitter:card" content="summary_large_image" />
<link rel="icon" href="/static/images/favicon-32x32.png" type="image/png" />
<link href="/styles/styles.css" rel="stylesheet" />
<link
href="https://unpkg.com/@umich-lib/css@v1/dist/umich-lib.css"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<script
type="module"
src="https://unpkg.com/@umich-lib/components@v1/dist/umich-lib/umich-lib.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/@umich-lib/components@v1/dist/umich-lib/umich-lib.js"
></script>
</head>
<body>
<div aria-label="Skip links" class="[ skip-links ]">
<div class="[ viewport-container ]">
<ul>
<li><a href="#maincontent">Skip to main content</a></li>
</ul>
</div>
</div>
<div class="border-bottom">
<m-universal-header></m-universal-header>
<m-website-header name="Digital Collections"> </m-website-header>
</div>
<main class="viewport-container" id="maincontent">
<m-roger-eyes>[the content for why you're here, probably]</m-roger-eyes>
<!-- Collection Home Page -->
<div class="hero">
<img
class="hero__image"
src="/static/img/saline-home-full.png"
alt="Saline Collection home page black and white photograph"
/>
</div>
<div class="[ flex flex-flow-rw ]">
<div class="side-panel">
<fieldset class="[ input-group right ] [ no-border ]">
<!--
<legend class="visually-hidden">Search within collection</legend>
<div class="[ flex flex-end ]">
<label for="search-in-collection" class="visually-hidden"
>Search within collection</label
>
<input
id="search-in-collection"
type="search"
name="query"
placeholder="Seach within collection"
/>
<button
class="[ button button--secondary ] [ flex ]"
type="submit"
aria-label="Search"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24px"
height="24px"
viewBox="0 0 24 24"
aria-hidden="true"
focusable="false"
role="img"
>
<path
d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
></path>
</svg>
<span class="visually-hidden">Submit</span>
</button>
</div>
</fieldset>
-->
<h3>Browse this collection</h3>
<div class="[ link-box ][ flex flex-center ]">
<a href="#" class="[ flex flex-start ]">
<svg xmlns="http://www.w3.org/2000/svg"
class="flex-shrink-0"
height="24px"
viewBox="0 0 24 24"
width="24px"
fill="#106684"
aria-hidden="true"
focusable="false"
role="presentation">
<g><path d="M0,0h24v24H0V0z" fill="none"/></g><g><path d="M7,9H2V7h5V9z M7,12H2v2h5V12z M20.59,19l-3.83-3.83C15.96,15.69,15.02,16,14,16c-2.76,0-5-2.24-5-5s2.24-5,5-5s5,2.24,5,5 c0,1.02-0.31,1.96-0.83,2.75L22,17.59L20.59,19z M17,11c0-1.65-1.35-3-3-3s-3,1.35-3,3s1.35,3,3,3S17,12.65,17,11z M2,19h10v-2H2 V19z"/> </g></svg>
<span>Browse 312 collection items</span></a>
</div>
<section class="[ list__links ]">
<h3>In this collection</h3>
<ul>
<li><a href="#">Link placeholder</a></li>
<li><a href="#">Link placeholder</a></li>
<li><a href="#">Link placeholder</a></li>
<li><a href="#">Link placeholder</a></li>
</ul>
<h3>Related Collections</h3>
<ul>
<li><a href="#">Link placeholder</a></li>
<li><a href="#">Link placeholder</a></li>
<li><a href="#">Link placeholder</a></li>
<li><a href="#">Link placeholder</a></li>
</ul>
<h3>Contact</h3>
<ul>
<li><p>Saline Digital Collections Help</p></li>
<li><a href="#">Link placeholder</a></li>
</ul>
</section>
</div>
<div class="main-panel">
<h1 class="[ collection-heading ]">Saline Historic Homes</h1>
<p class="[ light-text-color ]">
<em
>This is a very brief introduction to the collection that is no
more than one to two sentences.</em
>
</p>
<div class="[ gallery-view ]">
<div class="[ card ]">
<img class="[ card__image ]" src="/static/img/sdl_1.png" alt="" />
</div>
<div class="[ card ]">
<img class="[ card__image ]" src="/static/img/sdl_2.png" alt="" />
</div>
<div class="[ card ]">
<img class="[ card__image ]" src="/static/img/sdl_3.png" alt="" />
</div>
<div class="[ card ]">
<img class="[ card__image ]" src="/static/img/sdl_4.png" alt="" />
</div>
</div>
<div class="text-block">
<p>
This Historical and Architectural Survey includes all structures
built up to 1944 within the city limits of Saline Michigan.
Conducted in 1994 by Kosky and Glynn Associates, this survey is
the result of the City’s intent to comply with the Certified Local
Government requirements. The objective of the survey was to
research, photograph and map all structures built within the City
of Saline between 1829 and 1944. The completed project includes a
survey card and black and white photograph for each structure, a
map of all surveyed structures, and historical and architectural
text encompassing the study period.
</p>
<p>
All original survey material is housed by the Historic District
Commission at Saline City Hall. The 24-page report is also
available at Saline District Library and
<a href="google.com">online.</a>
</p>
</div>
<details class="[ mb-1 ]">
<summary class="[ collection-heading--small ]">
Copyright information
</summary>
<div class="text-block">
<p>
The City of Saline is the copyright holder for the materials in
this Saline Historic Homes online collection. The materials were
compiled by Sue Kosky and Kathie Glynn, who composed the 1994
Historical and Architectural Survey under a contract with the
City of Saline. The project was comprised of the 350 photos and
informational cards documenting historic homes in Saline.
</p>
<p>
The City of Saline is pleased to make these materials available
for research and education for which no permission is required
(though attribution is appreciated). For other uses or
questions, please contact:
</p>
</div>
<address>
Mary Ellen Mulcrone, Director <br />
Saline District Library <br />
555 N. Maple Road Saline, MI 48176 <br />
Telephone: (734) 429-5450 <br />
Fax: (734) 944-0600 <br />
<a href="http://www.salinelibrary.org/"
>http://www.salinelibrary.org/</a
>
</address>
</details>
</div>
</div>
<!-- End Collection Home Page -->
<!-- Start Collection Item Page -->
<section aria-labelledby="results-nav-heading">
<h2 id="results-nav-heading" class="visually-hidden">
Results navigation
</h2>
<a href="">Back to search results</a>
</section>
<div class="[ breadcrumb ]">
<nav aria-label="breadcrumb">
<ol>
<li>
<a href="#"> Saline Historic Homes </a>
</li>
<li>
<a href="#"> Search Results </a>
</li>
<li>
<a href="./index.html" aria-current="page" class="active-link">
409. N. Ann Arbor Street
</a>
</li>
</ol>
</nav>
<div class="pagination">
<p class="[ light-text-color ]">
1 of 32 <a href="/">Next</a>
<svg
xmlns="http://www.w3.org/2000/svg"
height="18px"
viewBox="0 0 20 20"
width="12px"
fill="#06080a"
aria-hidden="true"
focusable="false"
role="presentation"
>
<g>
<g>
<rect fill="none" height="20" width="20" />
</g>
</g>
<g>
<polygon
points="4.59,16.59 6,18 14,10 6,2 4.59,3.41 11.17,10"
/>
</g>
</svg>
</p>
</div>
</div>
<div class="hero">
<img
class="hero__image"
src="/static/img/409.png"
alt="409 N. Ann Arbor Street House photograph"
/>
</div>
<div class="[ flex flex-flow-rw ]">
<div class="[ main-panel ]">
<h1 class="collection-heading">409 N. Ann Arbor St.</h1>
<section class="[ actions ] [ mb-3 ]">
<h3>Actions</h3>
<button class="button button--primary button--large">
<span>Download</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="#ffffff"
focusable="false"
aria-hidden="true"
role="img"
>
<path d="M24 24H0V0h24v24z" fill="none" opacity=".87" />
<path
d="M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z"
/>
</svg>
</button>
<button class="button button--secondary button--large">
<span>Save to favorites</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="currentColor"
aria-hidden="true"
focusable="false"
role="img"
>
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</svg>
</button>
<button class="button button--secondary button--large">
<span> Copy link</span>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="currentColor"
aria-hidden="true"
focusable="false"
role="img"
>
<path
d="M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z"
/>
</svg>
</button>
</section>
<section>
<h3>About this home</h3>
<dl class="record">
<div>
<dt>Street and No.</dt>
<dd>409 N. Ann Arbor St.</dd>
</div>
<div>
<dt>Municipal Unit</dt>
<dd>Saline</dd>
</div>
<div>
<dt>County</dt>
<dd>Washtenaw</dd>
</div>
<div>
<dt>Original Usage</dt>
<dd>Residence</dd>
</div>
<div>
<dt>Present Usage</dt>
<dd>Residence</dd>
</div>
<div>
<dt>Ownership</dt>
<dd>Wiegand, James H. II</dd>
</div>
</dl>
<h3>About this photograph</h3>
<dl class="record">
<div>
<dt>Photo Negative No.</dt>
<dd>17:17</dd>
</div>
<div>
<dt>Photo Date</dt>
<dd>January, 1994</dd>
</div>
<div>
<dt>Photo View</dt>
<dd>South and east facades taken facing northwest</dd>
</div>
<div>
<dt>Description</dt>
<dd>
One and a half story, side gabled, Craftsman style house.
Gabled dormer on center front facade. Full width porch with
massive shingled support piers resting on a solid balustrade.
Rectangular shed roof bay on south facade. Variety of window
configurations: paired dormers are five vertical panes over
one; bay windows are four over one; soe on over one; and
center front has one large pane with two small rectangular
lights above. Barn red wood shingles on exterior facade. Brick
chimney on north facade. One and a half car, gable front
garage at rear.
</dd>
</div>
</dl>
<h3>About the construction</h3>
<dl class="record">
<div>
<dt>Date of Construction</dt>
<dd>1914</dd>
</div>
<div>
<dt>Context</dt>
<dd>
The house was probably build by Orrin Briggs around 1914. The
1912 Sanborn map shows that Orrin Briggs had a planning mill
on the property to the south (Orrin Parsons owned the planning
before that, as early as 1988). Mr. Briggs lived in the house
until his death in 1935, then his wife, Francis, lived in it
until 1947. Mr. Briggs also owned the property to the north.
Other owners: Charles Burkhardt in 1960; DAvid Harwood and
Susan McDonald; and James H. Wiegand II 1994.
</dd>
</div>
<div>
<dt>Bibliographic Reference</dt>
<dd>
City Directories: 1878, 1894, 1899, 1912, 1916, 1920, 1926,
1941, 1945. Assessor's files: 1947 and current; U.S. Census:
1910, 1920. Sanborn Maps: 1888, 1893, 1899, 1912, 1921, 1929;
Tax Rolls: 1931 and 1935.
</dd>
</div>
<div>
<dt>From Source</dt>
<dd>MICHIGAN DEPARTMENT OF STATE KG 105</dd>
</div>
<div>
<dt>Survey Date</dt>
<dd>May, 1994</dd>
</div>
<div>
<dt>Surveyor</dt>
<dd>K. Glynn & S. Kosky</dd>
</div>
<div>
<dt>Recorder Date</dt>
<dd>April, 1994</dd>
</div>
<div>
<dt>Card No.</dt>
<dd>105</dd>
</div>
</dl>
<article>
<h3>Rights and Permissions</h3>
<p>
The University of Michigan Library provides access to these
materials for educational and research purposes. These materials
may be under copyright. If you decide to use any of these
materials, you are responsible for making your own legal
assessment and securing any necessary permission. If you have
questions about the collection, please contact Saline Digital
Collections help. If you have concerns about the inclusion of an
item in this collection, please contact Library Information
Technology.
</p>
</article>
</section>
</div>
<!-- End Item Page View -->
<!-- Start Search Results View -->
<div class="[ flex flex-flow-rw ]">
<div class="side-panel">
<section class="[ filters__selected ]">
<h3 class="[ mt-2 ]">Current Filters</h3>
<div>
<input
type="checkbox"
id="file-type-image-selected"
name="image"
checked
/>
<label for="file-type-image-selected">File type > Image</label>
</div>
<a href="#">Start Over</a>
</section>
<h3 class="[ mt-2 ]">Filters</h3>
<div class="[ side-panel__box ]">
<details class="panel">
<summary>File Type</summary>
<div>
<input type="checkbox" id="file-type-audio" name="audio" />
<label for="file-type-audio"
>Audio <span class="filters__count">(2)</span></label
>
</div>
<div>
<input
type="checkbox"
id="file-type-image"
name="image"
checked
/>
<label for="file-type-image"
>Image <span class="filters__count">(24)</span></label
>
</div>
<div>
<input type="checkbox" id="file-type-text" name="text" />
<label for="file-type-text"
>Text <span class="filters__count">(5)</span></label
>
</div>
<div>
<input
type="checkbox"
id="file-type-video"
name="video"
checked
/>
<label for="file-type-video"
>Video <span class="filters__count">(1)</span></label
>
</div>
</details>
<details class="panel">
<summary>Subject</summary>
</details>
<details class="panel">
<summary>Genre</summary>
</details>
<details class="panel">
<summary>Date</summary>
</details>
</div>
</div>
<div class="main-panel">
<div class="[ breadcrumb ]">
<nav aria-label="Breadcrumb">
<ol>
<li>
<a href="#">Bentley Image Bank</a>
</li>
<li>
<a href="#" class="active-link" aria-current="page"
>Search Results</a
>
</li>
</ol>
</nav>
</div>
<!-- Search -->
<div class="search">
<fieldset
class="[ search-container ][ input-group right ] [ no-border ]"
>
<legend class="visually-hidden">Search</legend>
<div class="[ flex ]">
<label for="search-select" class="visually-hidden"
>Select a search filter:</label
>
<select id="search-select" class="[ dropdown--neutral ]">
<option value="keyword">Keyword</option>
<option value="title">Title</option>
<option value="author">Author</option>
</select>
<label for="search-collection" class="visually-hidden">
<span>Search</span>
</label>
<input
id="search-collection"
type="search"
name="query"
placeholder="Ann Arbor"
/>
<div class="flex">
<button
class="[ button button--cta ]"
type="submit"
aria-label="Search"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24px"
height="24px"
viewBox="0 0 24 24"
aria-hidden="true"
focusable="false"
role="img"
>
<path
d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"
></path>
</svg>
<span class="visually-hidden">Submit</span>
</button>
</div>
</div>
</fieldset>
<div class="advanced-link"><a href="#">Advanced Search</a></div>
</div>
<!-- End -->
<!-- Also Search-->
<div class="search">
<div class="[ search-container search-results__edit ]">
<a href="#">Edit Search</a>
</div>
<div class="advanced-link"><a href="#">Advanced Search</a></div>
</div>
<!-- End -->
<div>
<p>1 to 20 of 187 results</p>
<p>
Showing results for <span class="[ bold ]">“Ann Arbor”</span> in
<span class="[ bold ]"
>Coded Cartographic Mathematical Data</span
>
and <span class="[ bold ]">“Drowsy Parrot”</span> in
<span class="[ bold ]">Subject Added Entry - Topical Term</span>
</p>
</div>
<div class="[ search-results__tools ] [ mb-1 ]">
<div class="[ flex flex-align-center ]">
<input type="checkbox" id="add-portfolio" name="portfolio" />
<label for="add-portfolio" class="visually-hidden"
>Add to portfolio</label
>
<button
class="[ button button--secondary ] [ flex ]"
type="submit"
aria-label="Search"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="currentColor"
aria-hidden="true"
focusable="false"
role="img"
>
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</svg>
<span>Add to portfolio</span>
</button>
</div>
<div class="select-group">
<label for="result-sort">Sort by:</label>
<select name="results" id="result-sort">
<option value="relevance">Relevance</option>
</select>
</div>
</div>
<section class="[ results-list--small ]">
<a href="#" class="[ flex ]">
<img
class="[ results-list__image ]"
src="static/img/test.png"
alt="alt text"
/>
<div class="[ results-list__content ]">
<h4>101 N. Ann Arbor Street</h4>
<dl class="[ results ]">
<div>
<dt>Record ID:</dt>
<dd>SL0101</dd>
<dt>Historic Name:</dt>
<dd>Saline Post Office</dd>
<dt>Common Name:</dt>
<dd>I'll Fix Dinner</dd>
</div>
</dl>
</div>
</a>
</section>
<section class="[ results-list--small ]">
<a href="#" class="[ flex ]">
<img
class="[ results-list__image ]"
src="static/img/test.png"
alt="alt text"
/>
<div class="[ results-list__content ]">
<h4>101 N. Ann Arbor Street</h4>
<dl class="[ results ]">
<div>
<dt>Record ID:</dt>
<dd>SL0101</dd>
<dt>Historic Name:</dt>
<dd>Saline Post Office</dd>
<dt>Common Name:</dt>
<dd>I'll Fix Dinner</dd>
</div>
</dl>
</div>
</a>
</section>
<section class="[ results-list--small ]">
<a href="#" class="[ flex ]">
<img
class="[ results-list__image ]"
src="static/img/test.png"
alt="alt text"
/>
<div class="[ results-list__content ]">
<h4>101 N. Ann Arbor Street</h4>
<dl class="[ results ]">
<div>
<dt>Record ID:</dt>
<dd>SL0101</dd>
<dt>Historic Name:</dt>
<dd>Saline Post Office</dd>
<dt>Common Name:</dt>
<dd>I'll Fix Dinner</dd>
</div>
</dl>
</div>
</a>
</section>
</div>
</div>
</div>
<!-- Start Browse -->
<h1 class="[ collection-heading ]">Browse Collections</h1>
<div class="[ flex flex-space-between flex-end mb-3 ]">
<div class="input-group">
<label for="browse-collection-input" class="visually-hidden"
>Browse collections</label
>
<input
id="browse-collection-input"
type="search"
name="query"
placeholder="Seach for digital collection"
/>
</div>
<div class="select-group">
<label for="browse-sort">Sort by:</label>
<select name="browse" id="browse-sort">
<option value="a-z">A-Z</option>
<option value="Z-A">Z-A</option>
<option value="newest">Newest</option>
</select>
</div>
</div>
<section aria-labelledby="browse-collection">
<h3 id="browse-collection" class="visually-hidden">
Browse entire collection
</h3>
<div class="[ gallery-view ]">
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img
class="[ card__image ]"
src="static/img/american-poetry.png"
alt=""
/>
<h4 class="[ card__heading ]">20th Century American Poetry</h4>
</div>
</a>
</div>
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img class="[ card__image ]" src="static/img/alas.png" alt="" />
<h4 class="[ card__heading ]">
Abraham Lincoln Association Series
</h4>
</div>
</a>
</div>
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img class="[ card__image ]" src="static/img/apis.png" alt="" />
<h4 class="[ card__heading ]">
Advanced Papyrological Information System (APIS UM)
</h4>
</div>
</a>
</div>
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img class="[ card__image ]" src="static/img/aahs.png" alt="" />
<h4 class="[ card__heading ]">
African American History Collection
</h4>
</div>
</a>
</div>
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img
class="[ card__image ]"
src="static/img/hussey.png"
alt=""
/>
<h4 class="[ card__heading ]">Alfred Hussey Collection</h4>
</div>
</a>
</div>
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img
class="[ card__image ]"
src="static/img/american-jewess.png"
alt=""
/>
<h4 class="[ card__heading ]">American Jewess</h4>
</div>
</a>
</div>
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img class="[ card__image ]" src="static/img/apd.png" alt="" />
<h4 class="[ card__heading ]">American Poetry Database</h4>
</div>
</a>
</div>
<div class="[ card ]">
<a href="#" class="[ card__link ] [ flex ]">
<div class="[ card__content ]">
<img
class="[ card__image ]"
src="static/img/american-verse.png"
alt=""
/>
<h4 class="[ card__heading ]">American Verse Project</h4>
</div>
</a>
</div>
</div>
</section>
<!-- End Browse -->
<!-- Testing pagination-->
<nav
aria-label="Result navigation"
class="[ pagination__row ][ flex flex-space-between flex-align-center ]"
>
<div class="pagination__group">
<ul class="pagination">
<li class="pagination__item">
<a
class="[ page-link ] [ previous ]"
href="#"
aria-label="Previous"
>
Previous
</a>
</li>
<li class="pagination__item">
<a class="[ page-link ] [ next ]" href="#" aria-label="Next">
Next
</a>
</li>
</ul>
</div>
<div class="pagination__group">
<label for="results-pagination">Go to page:</label>
<input
type="number"
id="results-pagination"
name="page"
min="1"
max="100"
/>
<span>of 105</span>
<button type="submit" class="[ button button--secondary ] [ flex ]">
Go
</button>
</div>
</nav>
<!-- More Pagination-->
<nav
aria-label="Result navigation"
class="[ pagination__row ][ flex flex-space-between flex-align-center ]"
>
<div class="pagination__group">
<ul class="pagination">
<li class="pagination__item">
<a class="page-link" href="#" aria-label="Previous"> Previous </a>
</li>
<li class="pagination__item">
<a class="page-link" href="#" aria-label="Next"> Next </a>
</li>
</ul>
</div>
<div class="pagination__group">
<ul class="pagination">
<li class="pagination__item">
<a class="page-link" href="#">1</a>
</li>
<li class="pagination__item">
<a class="page-link" href="#">2</a>
</li>
<li class="pagination__item">
<a class="page-link" href="#">3</a>
</li>
</ul>
</div>
</nav>
<br />
<!-- Advanced Search -->
<h1>Advanced Search</h1>
<div class="advanced-search--form">
<h2>Search</h2>
<div class="message-callout">
<p>
To search, enter a word or phrase in a box below and select a field
from the menu. It is not necessary to use more than one box.
</p>
</div>
<form>
<div class="advanced-search--containers">
<div class="field-groups">
<fieldset class="[ no-border ][ fieldset--grid ]">
<legend class="visually-hidden">Search</legend>
<div class="[ fieldset--clause--region ]">
<label for="rgn1-1" class="visually-hidden">Select a field:</label>
<select class="[ dropdown--neutral ]" name="rgn1" id="rgn1-1" autocomplete="off" data-reset-value="ic_all" data-reset-checked="undefined">
<option value="ic_all" selected="true">Anywhere in record</option>
<option value="marc245">Title</option>
<option value="marc246">Varying Form of Title</option>
<option value="istruct_caption_item_description">Item Description</option>