forked from sujaykundu777/devlopr-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9abf02b
commit f736fe3
Showing
18 changed files
with
1,099 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,6 +96,7 @@ | |
<script src="/assets/bower_components/lightgallery/dist/js/lightgallery-all.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/picturefill/3.0.2/picturefill.min.js"></script> | ||
<script src="/assets/bower_components/imagesloaded/imagesloaded.pkgd.min.js"></script> | ||
<script src="/assets/bower_components/nanobar/nanobar.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/instantsearch.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.20.1/moment.min.js"></script> | ||
|
||
|
@@ -104,7 +105,7 @@ | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" | ||
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" | ||
crossorigin="anonymous"></script> | ||
<script src="/assets/js/mode-switcher.js"></script> | ||
|
||
<script> | ||
(function (d, h, m) { | ||
var js, fjs = d.getElementsByTagName(h)[0]; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,77 +1,38 @@ | ||
<header> | ||
|
||
<div class="col-lg-12"> | ||
|
||
<div class="row"> | ||
<div id="author-img"> | ||
<a href="/"> | ||
<img src="/assets/img/{{ site.author_logo }}" class="profile-img"> | ||
</a> | ||
</div> | ||
|
||
<div class="col-md-3" id="author_details"> | ||
<h1 class="profile-name"> {{ site.title }}</h1> | ||
<p class="profile-bio"> {{ site.subtitle }}</p> | ||
<p class="profile-links"> | ||
{% if site.twitter_username %} | ||
<a class="social-link" href="http://twitter.com/{{ site.twitter_username }}"> | ||
<i class="fab fa-twitter"></i> | ||
</a> | ||
{% endif %} | ||
{% if site.facebook_username %} | ||
<a class="social-link" href="http://facebook.com/{{ site.facebook_username }}"> | ||
<i class="fab fa-facebook-f"></i> | ||
</a> | ||
{% endif %} | ||
{% if site.instagram_username %} | ||
<a class="social-link" href="http://instagram.com/{{ site.instagram_username }}"> | ||
<i class="fab fa-instagram"></i> | ||
</a> | ||
{% endif %} | ||
{% if site.medium_username %} | ||
<a class="social-link" href="http://medium.com/@{{ site.medium_username }}"> | ||
<i class="fab fa-medium-m"></i> | ||
</a> | ||
{% endif %} | ||
{% if site.github_username %} | ||
<a class="social-link" href="http://github.com/{{ site.github_username }}"> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
{% endif %} | ||
{% if site.behance_username %} | ||
<a class="social-link" href="http://behance.net/{{ site.behance_username }}"> | ||
<i class="fab fa-behance"></i> | ||
</a> | ||
{% endif %} | ||
{% if site.linkedin_username %} | ||
<a class="social-link" href="http://linkedin.com/in/{{ site.linkedin_username }}"> | ||
<i class="fab fa-linkedin-in"></i> | ||
</a> | ||
{% endif %} | ||
{% if site.telegram_username %} | ||
<a class="social-link" href="http://t.me/{{ site.telegram_username }}"> | ||
<i class="fab fa-telegram-plane"></i> | ||
</a> | ||
{% endif %} | ||
</p> | ||
<nav class="navbar navbar-expand-lg fixed-top navbar-dark "> | ||
<!-- <a class="navbar-brand" href="#">{{site.title}}</a> --> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<a class="navbar-brand" href="/">{{site.title}}</a> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav"> | ||
{% for i in site.urls %} | ||
<li class="nav-item"> | ||
<a class="nav-link" href="{{ site.url}}{{site.baseurl}}{{ i.url }}">{{ i.text }}</a> | ||
</li> | ||
{% endfor %} | ||
|
||
</ul> | ||
|
||
</div> | ||
<div class="col-md-7" id="header-nav"> | ||
|
||
<ul class="nav justify-content-end" id="navigation"> | ||
{% for i in site.urls %} | ||
<li class="nav-item"> | ||
<a class="nav-link" href="{{ site.url}}{{site.baseurl}}{{ i.url }}">{{ i.text }}</a> | ||
</li> | ||
{% endfor %} | ||
<li class="nav-item"> | ||
<a class="nav-link" href="{{ site.url}}{{site.baseurl}}/search/"><i class="fa fa-search" aria-hidden="true"></i></a> | ||
</li> | ||
<li class="nav-item"> | ||
<input class="nav-link switch" id="theme-toggle" onclick="modeSwitcher() "type="checkbox" name="checkbox" > | ||
</li> | ||
</div> | ||
</div> | ||
<ul class="nav justify-content-end"> | ||
<li class="nav-item"> | ||
<a class="nav-link" id="search-icon" href="{{ site.url}}{{site.baseurl}}/search/"><i class="fa fa-search" aria-hidden="true"></i></a> | ||
</li> | ||
<li class="nav-item"> | ||
<input class="nav-link switch" id="theme-toggle" onclick="modeSwitcher() "type="checkbox" name="checkbox" > | ||
</li> | ||
</ul> | ||
</nav> | ||
|
||
</div> | ||
</div> | ||
|
||
</div> | ||
</header> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name": "nanobar", | ||
"description": "Very lightweight js progress bars", | ||
"version": "0.4.2", | ||
"main": "nanobar.js", | ||
"keywords": [ | ||
"loader", | ||
"progress", | ||
"progress bar", | ||
"CSS3", | ||
"html" | ||
], | ||
"author": [ | ||
"Jacobo Tabernero [email protected]" | ||
], | ||
"license": "MIT", | ||
"homepage": "http://nanobar.jacoborus.codes", | ||
"bugs": { | ||
"url": "https://github.com/jacoborus/nanobar/issues" | ||
}, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"_release": "0.4.2", | ||
"_resolution": { | ||
"type": "version", | ||
"tag": "v0.4.2", | ||
"commit": "8fc845016c95912b5e6d4787e6dc919ee3dc3d96" | ||
}, | ||
"_source": "https://github.com/jacoborus/nanobar.git", | ||
"_target": "^0.4.2", | ||
"_originalSource": "nanobar", | ||
"_direct": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2014 Jacobo Tabernero - github.com/jacoborus | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
the Software, and to permit persons to whom the Software is furnished to do so, | ||
subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Oops, something went wrong.