forked from bchiang7/bchiang7.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
maps.html
31 lines (28 loc) · 903 Bytes
/
maps.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
---
layout: default
---
<div id="maps_page">
<div>
<div class="maps_title_container">
<div class="maps_title">
Interactive Maps
</div>
<a href="https://www.carston.org/" target="_blank" class="arrow-link map-more-info">More info</a>
</div>
</div>
<div class="maps_content">
<div class="maps">
{% for map in site.data.maps %}
<a href={{map.url}}>
<div class="map_detail_container">
<img class="caption__media" src={{site.baseurl}}/{{map.image_location}} >
<div class="map_details">
<div class="map_name"> {{map.name}} </div>
<div class="map_desc"> {{map.desc}} </div>
</div>
</div>
</a>
{% endfor %}
</div>
</div>
</div>