-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
272 lines (260 loc) · 14.8 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<title>
Django Africa
</title>
<!-- Fonts and icons -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<!-- Nucleo Icons -->
<link href="assets/css/nucleo-icons.css" rel="stylesheet" />
<link href="assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- Font Awesome Icons -->
<link href="assets/css/font-awesome.css" rel="stylesheet" />
<link href="assets/css/nucleo-svg.css" rel="stylesheet" />
<!-- CSS Files -->
<link href="assets/css/argon-design-system.css" rel="stylesheet" />
<link href="assets/demo/demo.css" rel="stylesheet" />
<link href="assets/css/examples.css" rel="stylesheet" />
</head>
<body class="landing-page">
<!-- Navbar -->
<nav id="navbar-main" class="navbar navbar-main navbar-expand-lg navbar-transparent navbar-light headroom">
<div class="container">
<a class="navbar-brand mr-lg-5" href="../index.html">
<img src="../assets/img/brand/white.png">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar_global"
aria-controls="navbar_global" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbar_global">
<div class="navbar-collapse-header">
<div class="row">
<div class="col-6 collapse-brand">
<a href="../../../index.html">
<img src="../assets/img/brand/blue.png">
</a>
</div>
<div class="col-6 collapse-close">
<button type="button" class="navbar-toggler" data-toggle="collapse"
data-target="#navbar_global" aria-controls="navbar_global" aria-expanded="false"
aria-label="Toggle navigation">
<span></span>
<span></span>
</button>
</div>
</div>
</div>
<ul class="navbar-nav navbar-nav-hover align-items-lg-center">
<li class="nav-item dropdown">
<a href="#" class="nav-link" data-toggle="dropdown" href="#" role="button">
<i class="ni ni-ui-04 d-lg-none"></i>
<span class="nav-link-inner--text">Get Started</span>
</a>
<div class="dropdown-menu dropdown-menu-xl">
<div class="dropdown-menu-inner">
<a href="forum.html" class="media d-flex align-items-center">
<div class="icon icon-shape bg-gradient-primary rounded-circle text-white">
<i class="ni ni-spaceship"></i>
</div>
<div class="media-body ml-3">
<h6 class="heading text-primary mb-md-1">Forum</h6>
<p class="description d-none d-md-inline-block mb-0">Learn how to use compiling
Scss, change brand
colors and more.</p>
</div>
</a>
<a href="profile.html" class="media d-flex align-items-center">
<div class="icon icon-shape bg-gradient-success rounded-circle text-white">
<i class="ni ni-palette"></i>
</div>
<div class="media-body ml-3">
<h6 class="heading text-primary mb-md-1">Profile</h6>
<p class="description d-none d-md-inline-block mb-0">Learn more about colors,
typography, icons and
the grid system we used for .</p>
</div>
</a>
<a href="single.html" class="media d-flex align-items-center">
<div class="icon icon-shape bg-gradient-warning rounded-circle text-white">
<i class="ni ni-ui-04"></i>
</div>
<div class="media-body ml-3">
<h5 class="heading text-warning mb-md-1">Topics</h5>
<p class="description d-none d-md-inline-block mb-0">Browse our 50 beautiful
handcrafted components
offered in the Free version.</p>
</div>
</a>
</div>
</div>
</li>
</ul>
<ul class="navbar-nav align-items-lg-center ml-lg-auto">
<li class="nav-item d-none d-lg-block ml-lg-4">
<a href="login.html" class="btn btn-primary btn-md btn-icon">
<span class="btn-inner--icon">
<i class="fa fa-user"></i>
</span>
<span class="nav-link-inner--text">Login</span>
</a>
<a href="signup.html" class="btn btn-neutral btn-md btn-icon">
<span class="btn-inner--icon">
<i class="fas fa-user-circle"></i>
</span>
<span class="nav-link-inner--text">Signup</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="section-profile-cover section-shaped my-0">
<!-- Circles background -->
<img class="bg-image" src="../assets/img/pages/mohamed.jpg" style="width: 100%;">
<!-- SVG separator -->
<div class="separator separator-bottom separator-skew">
<svg x="0" y="0" viewBox="0 0 2560 100" preserveAspectRatio="none" version="1.1"
xmlns="http://www.w3.org/2000/svg">
<polygon class="fill-secondary" points="2560 0 2560 100 0 100"></polygon>
</svg>
</div>
</section>
<section class="section bg-secondary">
<div class="container">
<div class="card card-profile shadow mt--300">
<div class="px-4">
<div class="row justify-content-center">
<div class="col-lg-3 order-lg-2">
<div class="card-profile-image">
<a href="javascript:;">
<img src="../assets/img/faces/team-4.jpg" class="img-fluid rounded-circle shadow-lg"
style="width: 150px;">
</a>
</div>
</div>
<div class="col-lg-4 order-lg-3 text-lg-right align-self-lg-center">
<div class="card-profile-actions py-4 mt-lg-0">
<a href="#" class="btn btn-sm btn-info mr-2">Work-with-a-mentor</a>
<a href="#" class="btn btn-sm btn-default float-right">Be a mentor</a>
</div>
</div>
<div class="col-lg-4 order-lg-3 text-lg-right align-self-lg-center">
<div class="card-profile-stats d-flex justify-content-center">
<a href="#" class="btn btn-sm btn-info" data-toggle="tooltip" data-placement="top"
title="Tagboard" data-container="body" data-animation="true">Tagboard</a>
<a href="#" class="btn btn-sm btn-default btn-tooltip" data-toggle="tooltip"
data-placement="top" title="Topic Created" data-container="body"
data-animation="true">Topic Created</a>
</div>
</div>
</div>
<div class="text-center mt-5">
<h3>Jessica Jones<span class="font-weight-light">, 27</span></h3>
<div class="h6 font-weight-300"><i class="ni location_pin mr-2"></i>Bucharest, Romania</div>
<div class="h6 mt-4"><i class="ni business_briefcase-24 mr-2"></i>Solution Manager - Creative
Tim
Officer</div>
<div><i class="ni education_hat mr-2"></i>University of Computer Science</div>
</div>
<div class="mt-5 py-5 border-top text-center">
<div class="row justify-content-center">
<div class="col-lg-9">
<p>An artist of considerable range, Ryan — the name taken by Melbourne-raised,
Brooklyn-based Nick Murphy — writes, performs and records all of his own music,
giving
it a warm, intimate feel with a solid groove structure. An artist of considerable
range.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row row-grid align-items-center mb-5">
<div class="col-lg-6">
<h3 class="text-primary font-weight-light mb-2">Thank you for supporting us!</h3>
<h4 class="mb-0 font-weight-light">Let's get in touch on any of these platforms.</h4>
</div>
<div class="col-lg-6 text-lg-center btn-wrapper">
<button target="_blank" href="#" rel="nofollow" class="btn btn-icon-only btn-twitter rounded-circle"
data-toggle="tooltip" data-original-title="Follow us">
<span class="btn-inner--icon"><i class="fa fa-twitter"></i></span>
</button>
<button target="_blank" href="#" rel="nofollow"
class="btn-icon-only rounded-circle btn btn-facebook" data-toggle="tooltip"
data-original-title="Like us">
<span class="btn-inner--icon"><i class="fab fa-facebook"></i></span>
</button>
<button target="_blank" href="#" rel="nofollow"
class="btn btn-icon-only btn-dribbble rounded-circle" data-toggle="tooltip"
data-original-title="Follow us">
<span class="btn-inner--icon"><i class="fa fa-dribbble"></i></span>
</button>
<button target="_blank" href="#" rel="nofollow" class="btn btn-icon-only btn-github rounded-circle"
data-toggle="tooltip" data-original-title="Star on Github">
<span class="btn-inner--icon"><i class="fa fa-github"></i></span>
</button>
</div>
</div>
<hr>
<div class="row align-items-center justify-content-md-between">
<div class="col-md-6">
<div class="copyright">
© 2020 <a href="" target="_blank">Django Africa</a>.
</div>
</div>
<div class="col-md-6">
<ul class="nav nav-footer justify-content-end">
<li class="nav-item">
<a href="" class="nav-link">About Us</a>
</li>
<li class="nav-item">
<a href="" class="nav-link">Help Desk</a>
</li>
<li class="nav-item">
<a href="" class="nav-link">Contact Us</a>
</li>
<li class="nav-item">
<a href="" class="nav-link">Terms & Conditions</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Core JS Files -->
<script src="../assets/js/core/jquery.min.js" type="text/javascript"></script>
<script src="../assets/js/core/popper.min.js" type="text/javascript"></script>
<script src="../assets/js/core/bootstrap.min.js" type="text/javascript"></script>
<script src="../assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>
<!-- Plugin for Switches, full documentation here: http://www.jque.re/plugins/version3/bootstrap.switch/ -->
<script src="../assets/js/plugins/bootstrap-switch.js"></script>
<!-- Plugin for the Sliders, full documentation here: http://refreshless.com/nouislider/ -->
<script src="../assets/js/plugins/nouislider.min.js" type="text/javascript"></script>
<script src="../assets/js/plugins/moment.min.js"></script>
<script src="../assets/js/plugins/datetimepicker.js" type="text/javascript"></script>
<script src="../assets/js/plugins/bootstrap-datepicker.min.js"></script>
<!-- Control Center for Argon UI Kit: parallax effects, scripts for the example pages etc -->
<!-- Google Maps Plugin -->
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE"></script>
<script src="../assets/js/argon-design-system.min.js?v=1.2.0" type="text/javascript"></script>
<script src="https://cdn.trackjs.com/agent/v3/latest/t.js"></script>
<script>
window.TrackJS &&
TrackJS.install({
token: "ee6fab19c5a04ac1a32a645abde4613a",
application: "argon-design-system-pro"
});
</script>
</body>
</html>