-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary-skillmap.html
More file actions
492 lines (454 loc) · 37.2 KB
/
library-skillmap.html
File metadata and controls
492 lines (454 loc) · 37.2 KB
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<!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, shrink-to-fit=no, user-scalable=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Learning C++ by Creating Games with UE4 - Chapter 3. Looping</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<!-- Custom CSS -->
<link href="css/simple-sidebar.css" rel="stylesheet">
<link href="css/custom.css" rel="stylesheet">
<link href="css/general.css" rel="stylesheet">
<link href="css/bootstrap-xl.css" rel="stylesheet">
<!-- Devicons -->
<link rel="stylesheet" href="https://cdn.rawgit.com/konpa/devicon/master/devicon.min.css">
<!-- Prism -->
<link rel="stylesheet" href="css/prism.css">
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="language-markup">
<div id="wrapper">
<!-- Top Nav Bar -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="library.html"><img class="brand-logo" src="images/white-packt.png"/></a>
<a class="navbar-brand toggle-nav" href="#menu-toggle" id="menu-toggle"><span class="glyphicon glyphicon-th-list" aria-hidden="true"></span></a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="library.html">My Library</a></li>
<li><a href="https://www.packtpub.com">Store</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Account<span class="caret ml5"></span>
</a>
<ul class="dropdown-menu">
<li> <a href="#">View Account</a></li>
<li><a href="#">View Subscriptions</a></li>
<li><a href="#">View Licences</a></li>
<li role="separator" class="divider"></li>
<li><a href="library-lo.html">Logout</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-right search-nav-collapse">
<div class="form-group pull-right" style="display:inline;">
<div class="input-group">
<input class="form-control" type="text" placeholder="Search the library...">
<span class="input-group-btn"><a href="search.html" class="btn btn-default" type="button"><span class="glyphicon glyphicon-search"></span></a></span>
</div>
</div>
</form>
</div><!--/.nav-collapse -->
</div>
</nav>
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<h4 class="ml15 mt20"> Browse Topics:</h4>
<hr>
<li> <a href="tech-page.html"> Android </a> </li>
<li> <a href="tech-page.html"> AngularJS </a> </li>
<li> <a href="tech-page.html"> Arduino </a> </li>
<li> <a href="tech-page.html"> Blender </a> </li>
<li> <a href="tech-page.html"> Bootstrap </a> </li>
<li> <a href="tech-page.html"> Django </a> </li>
<li> <a href="tech-page.html"> Docker </a> </li>
<li> <a href="tech-page.html"> Drupal </a> </li>
<li> <a href="tech-page.html"> Hadoop </a> </li>
<li> <a href="tech-page.html"> iOS </a> </li>
<li> <a href="tech-page.html"> Java </a> </li>
<li> <a href="tech-page.html"> JavaScript </a> </li>
<li> <a href="tech-page.html"> jQuery </a> </li>
<li> <a href="tech-page.html"> Laravel </a> </li>
<li> <a href="tech-page.html"> Linux </a> </li>
<li> <a href="tech-page.html"> Machine Learning </a> </li>
<li> <a href="tech-page.html"> Node.js </a> </li>
<li> <a href="tech-page.html"> OpenCV </a> </li>
<li> <a href="tech-page.html"> OpenStack </a> </li>
<li> <a href="tech-page.html"> Oracle </a> </li>
<li> <a href="tech-page.html"> PHP </a> </li>
<li> <a href="tech-page.html"> Python </a> </li>
<li> <a href="tech-page.html"> QlikView </a> </li>
<li> <a href="tech-page.html"> R </a> </li>
<li> <a href="tech-page.html"> Spark </a> </li>
<li> <a href="tech-page.html"> Spring </a> </li>
<li> <a href="tech-page.html"> Swift </a> </li>
<li> <a href="tech-page.html"> Unity </a> </li>
<li> <a href="tech-page.html"> WordPress </a> </li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<div id="page-content-wrapper" class="book-page ng-scope">
<!-- ngInclude: --><div id="book-wrapper" onload="finishLoad()" ng-include="" src="views.book" class="ng-scope container-fluid">
<div class="row">
<div class="hidden-xs">
<h2>Welcome Oli</h2>
<hr>
<ul id="myTabs" class="nav nav-tabs" role="tablist">
<li class="active">
<a href="#dashboard" id="dashboard-tab" role="tab" data-toggle="tab" aria-controls="about" aria-expanded="true">Dashboard</a>
</li>
<li>
<a href="#learn" role="tab" id="learn-tab" data-toggle="tab" aria-controls="learn">My Learning Plan (6)</a>
</li>
<li>
<a href="#detail" role="tab" id="detail-tab" data-toggle="tab" aria-controls="detail">Purchases (4)</a>
</li>
<li>
<a href="#author" role="tab" id="author-tab" data-toggle="tab" aria-controls="detail">My Bookmarks (5)</a>
</li>
</ul>
</div>
<div id="myTabContent" class="tab-content">
<div role="tabpanel" class="tab-pane fade in active pt30 mb50" id="dashboard" aria-labelledby="dashboard-tab">
<div class="visible-xs">
<h3 class="mobile-title">Welcome Oli</h3>
<hr>
</div>
<div class="col-sm-6">
<div class="col-sm-4">
</div>
<div class="col-sm-4">
</div>
<div class="col-sm-4">
</div>
</div>
<div class="col-sm-6">
<div class="well">
Test
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade pt30 mb50" id="learn" aria-labelledby="learn-tab">
<div class="visible-xs">
<h3 class="mobile-title">My List</h3>
<hr>
</div>
<div class="col-sm-offset-6 col-md-offset-8 col-lg-offset-9 col-sm-6 col-md-4 col-lg-3 mb20">
<select class="form-control">
<option>Sort by Most Recent</option>
<option>Sort by Most Popular</option>
<option>Sort by Oldest</option>
<option>Sort A-Z</option>
<option>Sort Z-A</option>
</select>
</div>
<div class="col-sm-12">
<div class="panel panel-default">
<ul class="list-group">
<!-- <a href="front-page.html" class="list-group-item list-name">
<strong>Mastering JavaScript [Video]</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Luke Skywalker</small></td> <td><span class="badge-master badge">Master</span><small class="r-date">10/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning JavaScript Data Structures and Algorithms [Video]</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Sarah Connors</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">11/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning Underscore.js</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Jon Snow</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">07/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Ionic Cookbook</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Han Solo + Leia Organa</small></td> <td><span class="badge-build badge">Build</span><small class="r-date">11/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning Node.js for Mobile Application Development</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Obi Wan Kenobi</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">06/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning JavaScript Promises: Practical Applications in ES6 and AngularJS [Video]</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Luke Skywalker</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">10/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning JavaScript Data Structures and Algorithms [Video]</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Sarah Connors</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">11/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Mastering Underscore.js</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Jon Snow</small></td> <td><span class="badge-master badge">Master</span><small class="r-date">07/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Ionic Cookbook</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Han Solo + Leia Organa</small></td> <td><span class="badge-build badge">Build</span><small class="r-date">11/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning Node.js for Mobile Application Development</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Obi Wan Kenobi</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">06/2015</small></td> </tr></tbody> </table>
</a> -->
<a href="front-page.html" class="list-group-item list-name">
<strong>Building a Lightsaber with Raspberry Pi and a Stick</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Luke Skywalker</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 5hrs 30min</small><small class="pull-right mr10">Jan 2015</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Death Star Development with Civil 3D</strong><span class="badge-master badge">Master</span><br/>
<small class="pull-left">By Sarah Connors</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 4hrs 10min</small><small class="pull-right mr10">Feb 2011</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Beginning Pod Racing</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Jon Snow</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 2hrs 6min</small><small class="pull-right mr10">Mar 2013</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Mastering the Dark Side</strong><span class="badge-build badge pull-right">Build</span><br/>
<small class="pull-left">By Han Solo + Leia Organa</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 10hrs 46min</small><small class="pull-right mr10">Aug 2015</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Freezing people in Carbonite for Beginners [Video]</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Obi Wan Kenobi</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 3hrs 5min</small><small class="pull-right mr10">Dec 2010</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Building a Lightsaber with Raspberry Pi and a Stick</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Luke Skywalker</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 5hrs 30min</small><small class="pull-right mr10">Jan 2015</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Death Star Development with Civil 3D</strong><span class="badge-master badge">Master</span><br/>
<small class="pull-left">By Sarah Connors</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 4hrs 10min</small><small class="pull-right mr10">Feb 2011</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Beginning Pod Racing</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Jon Snow</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 2hrs 6min</small><small class="pull-right mr10">Mar 2013</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Mastering the Dark Side</strong><span class="badge-build badge pull-right">Build</span><br/>
<small class="pull-left">By Han Solo + Leia Organa</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 10hrs 46min</small><small class="pull-right mr10">Aug 2015</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Freezing people in Carbonite for Beginners [Video]</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Obi Wan Kenobi</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 3hrs 5min</small><small class="pull-right mr10">Dec 2010</small>
<div class="clearfix">
</div>
</a>
</ul>
<div class="panel-footer text-right">
<nav>
<ul class="pagination">
<li>
<a href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li class="active"><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li>
<a href="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade pt30 mb50" id="detail" aria-labelledby="detail-tab">
<div class="visible-xs">
<h3 class="mobile-title">Owned</h3>
<hr>
</div>
<div class="col-sm-offset-6 col-sm-6 col-md-offset-8 col-md-4 col-lg-offset-9 col-lg-3 mb20">
<select class="form-control">
<option>Sort by Most Recent</option>
<option>Sort by Most Popular</option>
<option>Sort by Oldest</option>
<option>Sort A-Z</option>
<option>Sort Z-A</option>
</select>
</div>
<div class="col-sm-12">
<div class="panel panel-default">
<ul class="list-group">
<!-- <a href="front-page.html" class="list-group-item list-name">
<strong>Learning JavaScript Promises: Practical Applications in ES6 and AngularJS [Video]</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Luke Skywalker</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">10/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning JavaScript Data Structures and Algorithms [Video]</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Sarah Connors</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">11/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Learning Underscore.js</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Jon Snow</small></td> <td><span class="badge-learn badge">Learn</span><small class="r-date">07/2015</small></td> </tr></tbody> </table>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Ionic Cookbook</strong>
<table class="table course-listing table-condensed"><tbody> <tr><td class="pl0"><small>By Han Solo + Leia Organa</small></td> <td><span class="badge-build badge">Build</span><small class="r-date">11/2015</small></td> </tr></tbody> </table>
</a> -->
<a href="front-page.html" class="list-group-item list-name">
<strong>Building a Lightsaber with Raspberry Pi and a Stick</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Luke Skywalker</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 5hrs 30min</small><small class="pull-right mr10">Jan 2015</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Death Star Development with Civil 3D</strong><span class="badge-master badge">Master</span><br/>
<small class="pull-left">By Sarah Connors</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 4hrs 10min</small><small class="pull-right mr10">Feb 2011</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Beginning Pod Racing</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Jon Snow</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 2hrs 6min</small><small class="pull-right mr10">Mar 2013</small>
<div class="clearfix">
</div>
</a>
<a href="front-page.html" class="list-group-item list-name">
<strong>Mastering the Dark Side</strong><span class="badge-build badge pull-right">Build</span><br/>
<small class="pull-left">By Han Solo + Leia Organa</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 10hrs 46min</small><small class="pull-right mr10">Aug 2015</small>
<div class="clearfix">
</div>
</a>
</ul>
</div>
</div>
</div>
<div role="tabpanel" class="tab-pane fade pt30 mb50" id="author" aria-labelledby="author-tab">
<div class="visible-xs">
<h3 class="mobile-title">Bookmarks</h3>
<hr>
</div>
<div class="panel panel-default">
<ul class="list-group">
<a href="front-page.html" class="list-group-item list-name disabled">
<strong>Mastering Swift 2</strong><span class="badge-master badge pull-right">Master</span><br/>
<small class="pull-left">By Luke Skywalker</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 5hrs 30min</small><small class="pull-right mr10">Jan 2015</small>
<div class="clearfix">
</div>
</a>
<a href="#" class="list-group-item list-name"><strong>Overriding methods and properties</strong>
</a>
<a href="#" class="list-group-item list-name"><strong>Chapter 6: Using Protocols and Protocol Extensions</strong>
</a>
<a href="front-page.html" class="list-group-item list-name disabled">
<strong>R High Performance Programming</strong><span class="badge-master badge pull-right">Master</span><br/>
<small class="pull-left">By Some Guy</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 3hrs 2min</small><small class="pull-right mr10">Feb 2015</small>
<div class="clearfix">
</div>
</a>
<a href="#" class="list-group-item list-name"><strong>Vectorization</strong>
</a>
<a href="#" class="list-group-item list-name"><strong>Using compiled languages in R</strong>
</a>
<a href="front-page.html" class="list-group-item list-name disabled">
<strong>Getting Started with Julia</strong><span class="badge-learn badge pull-right">Learn</span><br/>
<small class="pull-left">By Another Person</small>
<br/>
<small class="pull-left title-duration"><i class="fa fa-clock-o mr5"></i> 1hrs 10min</small><small class="pull-right mr10">Mar 2012</small>
<div class="clearfix">
</div>
</a>
<a href="#" class="list-group-item list-name"><strong>Optional and keyword arguments</strong>
</a>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="footer" class="visible-xs">
<div class="col-xs-12 navbar-inverse navbar-fixed-bottom">
<div class="row" id="bottomNav" role="tablist">
<div class="col-xs-3 text-center"><a href="#dashboard" id="dashboard-tab" role="tab" data-toggle="tab" aria-controls="about" aria-expanded="true"><i class="fa fa-home mobile-nav-icon fa-2x"></i></a></div>
<div class="col-xs-3 text-center"><a href="#learn" role="tab" id="learn-tab" data-toggle="tab" aria-controls="learn"><i class="fa fa-list mobile-nav-icon fa-2x"></i></a></div>
<div class="col-xs-3 text-center"><a href="#detail" role="tab" id="detail-tab" data-toggle="tab" aria-controls="detail"><i class="fa fa-suitcase mobile-nav-icon fa-2x"></i></a></div>
<div class="col-xs-3 text-center"><a href="#author" role="tab" id="author-tab" data-toggle="tab" aria-controls="detail"><i class="fa fa-bookmark mobile-nav-icon fa-2x"></i></a></div>
</div>
</div>
</div>
<!-- /#wrapper -->
<!-- JAVASCRIPT BLOCKS -->
<!-- jQuery Script-->
<script src="js/jquery.js"></script>
<!-- Syntax Highlighting Script -->
<script src="js/prism.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Sidebar Toggle Script -->
<script src="js/simple-sidebar.js"></script>
</body>
</html>