forked from NorthImpact/discover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
159 lines (119 loc) · 4.41 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
<!DOCTYPE html>
<html lang="en">
<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>Discover | North Impact</title>
<!-- Bootstrap core CSS -->
<link href="./assets/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="./assets/bootstrap/dist/css/discover.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- header -->
<div class="header">
<div class="container">
<div class="row">
<div class="col-md-5" id="header-left">
<h3>OPEN SOURCE PROJECTS FOR SOCIAL IMPACT</h3>
<h1>DISCOVER</h1>
<!--<img src="./assets/imgs/magnifying.jpg"/>-->
</div>
<div class="col-md-4" id="header-right">
<p>
<b>Text introducing Discover project</b>
At North Impact, we believe that software can help solving the toughest social challenges. We work close to people, organizations and projects to bring their ideas to life. We believe in freedom, in open source and we believe in community. Our mission is to help solving the most challenging social problems and inequalities with beautifuly crafted software.
</p>
</div>
</div>
</div>
</div>
<!-- /header -->
<div class="container">
<nav class="navbar"><a href="#">about</a> <a href="#">add a project</a> <a href="#">contribute</a></nav>
<div class="row">
<div class ="col-md-6 col-md-offset-3">
<form class="form-inline">
<div class="form-group">
<label class="sr-only" for="search">Search</label>
<div class="input-group">
<input type="text" class="form-control" id="search" placeholder="Search">
</div>
</div>
<button type="submit" class="btn btn-default">Go</button>
</form>
</div>
</div>
<div class="companies">
<div class="row">
<div class ="col-md-9 col-md-offset-2">
<div class = "company">
<div class="row">
<div class="col-md-5">
<h3>North Impact</h3>
<p>North Impact aims at using open source and technology to solve the toughest social challenges</p>
<a href="#">website</a>
<a href="#">github</a>
<a href="#">contribute</a>
<br>
<a href="#">more</a>
</div>
<div class="col-md-6">
<img class="img-responsive" src="./assets/imgs/graph-example.png"/>
</div>
</div>
</div>
<div class = "company">
<div class="row">
<div class="col-md-5">
<h3>Medic Doctor</h3>
<p>Medic Doctor maintains and develops a health care platform for communities in developing countries</p>
<a href="#">website</a>
<a href="#">github</a>
<a href="#">contribute</a>
<br>
<a href="#">more</a>
</div>
<div class="col-md-6">
<img class="img-responsive" src="./assets/imgs/graph-example.png"/>
</div>
</div>
</div>
<div class = "company">
<div class="row">
<div class="col-md-5">
<h3>Microsoft</h3>
<p>Miscrosoft has overly prices products that help to widen the gap between poor and rich.</p>
<a href="#">website</a>
<a href="#">github</a>
<a href="#">contribute</a>
<br>
<a href="#">more</a>
</div>
<div class="col-md-6">
<img class="img-responsive" src="./assets/imgs/graph-example.png"/>
</div>
</div>
</div>
</div>
</div>
<footer>
<hr>
<p>Discover, a North Impact project</p>
</footer>
</div>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js'>
<script src="./assets/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="./assets/bootstrap/dist/js/discover.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</body>
</html>