This repository has been archived by the owner on Nov 14, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
171 lines (157 loc) · 6.46 KB
/
list.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>List Example for BC Dev</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="css/bc-devx.min.css" rel="stylesheet">
<style type="text/css">
.list-page {
padding: 10px;
}
.list-page ul {
list-style:none;
padding-left: 0;
}
.list-page ul li {
padding: 20px;
margin: 10px;
border: 1px solid #AAAAAA;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand page-scroll" href="/">
<img height="30" src="assets/logo/logo-blue.png" alt="BC Dev Exchange">
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Get Started <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="/theme.html">Theme</a></li>
<li><a href="/static.html">Static</a></li>
<li><a href="/list.html">List</a></li>
<li><a href="/detail.html">Detail</a></li>
</ul>
</li>
<li>
<a href="#">Developers</a>
</li>
<li>
<a href="#">Government</a>
</li>
<li>
<a href="#">About</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<section class="list-page">
<div class="container" role="main">
<h1>Government Partners</h1>
<h3>Meet government innovators open to new ways to develop technology.</h3>
<ul>
<li>
<h2><a href="#">BC Assessment</a></h2>
<p>
BC Assessment believes better access to property information can create economic opportunities for companies across British Columbia.
</p>
<div class="row">
<div class="col-xs-6">
<span class="label label-info">code</span>
</div>
<div class="col-xs-6">
<button type="button" class="btn btn-link pull-right">View →</button>
</div>
</div>
</li>
<li>
<h2><a href="#">BC Data Catalogue</a></h2>
<p>
The BC Data Catalogue provides information and access to more than 3500 government datasets web services (APIs) and online applications.
</p>
<div class="row">
<div class="col-xs-6">
<span class="label label-warning">API</span>
<span class="label label-info">code</span>
<span class="label label-success">data</span>
</div>
<div class="col-xs-6">
<button type="button" class="btn btn-link pull-right">View →</button>
</div>
</div>
</li>
<li>
<h2><a href="#">BC Laws</a></h2>
<p>
BC Laws is a portal application that has been developed by the Queen's Printer of British Columbia to access BC provincial legislation.
</p>
<div class="row">
<div class="col-xs-6">
<span class="label label-warning">API</span>
<span class="label label-info">code</span>
<span class="label label-danger">Help Wanted</span>
</div>
<div class="col-xs-6">
<button type="button" class="btn btn-link pull-right">View →</button>
</div>
</div>
</li>
</ul>
</div>
</section>
<footer class="footer-distributed">
<div class="container">
<div class="footer-right">
<object class="footer-logo" data="assets/logo/BCID-supported-pos.svg" type="image/svg+xml">
Supported by the Government of British Columbia
</object>
<!-- <a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-github"></i></a> -->
</div>
<div class="footer-left">
<p class="footer-links">
<a href="#">Home</a>
·
<a href="#">Open Opportunities</a>
·
<a href="#">Open APIs</a>
·
<a href="#">About</a>
·
<a href="#">Blog</a>
·
<a href="#">Contact</a>
</p>
<p>© 2016 BC Developer's Exchange. All Rights Reserved</p>
</div>
</div>
</footer>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>