-
Notifications
You must be signed in to change notification settings - Fork 3
/
4-cards-data-current
71 lines (66 loc) · 2.12 KB
/
4-cards-data-current
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
<!--The sample code uses four center-aligned cards to highlight downloadable data. The cards will contain a hyperlinked title text, short description and one button linking to data on Open Data DC.-->
<!--all cards begin here. edit CAPS text with your content.-->
<ul class="cards-list">
<!--first card begins here.-->
<li class="col-xs-12 col-sm-6 col-lg-3">
<div class="calcite-web">
<div class="card-base card-bar-blue-darl">
<div class="card-content">
<h4>DATASET TITLE</h4>
<!--use the same character/word counts for each card summary for best alignment.-->
<p>BRIEF SUMMARY</p>
<!--button for data download-->
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Show Me Data</a>
</div>
</div>
</div>
</div>
</li>
<!--second card begins here.-->
<li class="col-xs-12 col-sm-6 col-lg-3">
<div class="calcite-web">
<div class="card-base card-bar-blue-darl">
<div class="card-content">
<h4>DATASET TITLE</h4>
<!--use the same character/word counts for each card summary for best alignment.-->
<p>BRIEF SUMMARY</p>
<!--button for data download-->
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Show Me Data</a>
</div>
</div>
</div>
</div>
</li>
<!--third card begins here.-->
<li class="col-xs-12 col-sm-6 col-lg-3">
<div class="calcite-web">
<div class="card-base card-bar-blue-darl">
<div class="card-content">
<h4>DATASET TITLE</h4>
<p>BRIEF SUMMARY</p>
<!--button for data download-->
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Show Me Data</a>
</div>
</div>
</div>
</div>
</li>
<!--fourth card begins here.-->
<li class="col-xs-12 col-sm-6 col-lg-3">
<div class="calcite-web">
<div class="card-base card-bar-blue-darl">
<div class="card-content">
<h4>DATASET TITLE</h4>
<p>BRIEF SUMMARY</p>
<!--button for data download-->
<div aria-label="actions" class="btn-group btn-group-justified" role="group">
<a class="btn btn-default" href="DATA DOWNLOAD LINK">Show Me Data</a>
</div>
</div>
</div>
</div>
</li>
</ul>