changes
This commit is contained in:
parent
86bb159d44
commit
1a2fed19b0
59 changed files with 6691 additions and 11 deletions
24
_includes/about.html
Normal file
24
_includes/about.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<!-- About Section -->
|
||||
<section class="success" id="about">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2>About</h2>
|
||||
<hr class="star-light">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-4 col-lg-offset-2">
|
||||
<p>Freelancer is a free bootstrap theme created by Start Bootstrap. The download includes the complete source files including HTML, CSS, and JavaScript as well as optional LESS stylesheets for easy customization.</p>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<p>Whether you're a student looking to showcase your work, a professional looking to attract clients, or a graphic artist looking to share your projects, this template is the perfect starting point! </p>
|
||||
</div>
|
||||
<div class="col-lg-8 col-lg-offset-2 text-center">
|
||||
<a href="https://github.com/jeromelachaud/freelancer-theme" class="btn btn-lg btn-outline">
|
||||
<i class="fa fa-download"></i> Download Theme
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
54
_includes/contact.html
Normal file
54
_includes/contact.html
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
<!-- Contact Section -->
|
||||
<section id="contact">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2>Contact Me</h2>
|
||||
<hr class="star-primary">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<!-- To configure the contact form email address, go to mail/contact_me.php and update the email address in the PHP file on line 19. -->
|
||||
<!-- The form should work on most web servers, but if the form is not working you may need to configure your web server differently. -->
|
||||
<form name="sentMessage" id="contactForm" novalidate>
|
||||
<div class="row control-group">
|
||||
<div class="form-group col-xs-12 floating-label-form-group controls">
|
||||
<label for="name">Name</label>
|
||||
<input type="text" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group">
|
||||
<div class="form-group col-xs-12 floating-label-form-group controls">
|
||||
<label for="email">Email Address</label>
|
||||
<input type="email" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group">
|
||||
<div class="form-group col-xs-12 floating-label-form-group controls">
|
||||
<label for="phone">Phone Number</label>
|
||||
<input type="tel" class="form-control" placeholder="Phone Number" id="phone" required data-validation-required-message="Please enter your phone number.">
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group">
|
||||
<div class="form-group col-xs-12 floating-label-form-group controls">
|
||||
<label for="message">Message</label>
|
||||
<textarea rows="5" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div id="success"></div>
|
||||
<div class="row">
|
||||
<div class="form-group col-xs-12">
|
||||
<button type="submit" class="btn btn-success btn-lg">Send</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
16
_includes/contact_disqus.html
Normal file
16
_includes/contact_disqus.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<!-- Contact Section -->
|
||||
<section id="contact">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2>Contact me</h2>
|
||||
<hr class="star-primary">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div id="disqus_thread"></div><!-- /#disqus_thread -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
49
_includes/contact_static.html
Normal file
49
_includes/contact_static.html
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<!-- Contact Section -->
|
||||
<section id="contact">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2>Contact Me</h2>
|
||||
<hr class="star-primary">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<form action="//formspree.io/{{ site.email }}" method="POST" name="sentMessage" id="contactForm" novalidate>
|
||||
<div class="row control-group">
|
||||
<div class="form-group col-xs-12 floating-label-form-group controls">
|
||||
<label for="name">Name</label>
|
||||
<input type="text" name="name" class="form-control" placeholder="Name" id="name" required data-validation-required-message="Please enter your name.">
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row control-group">
|
||||
<div class="form-group col-xs-12 floating-label-form-group controls">
|
||||
<label for="email">Email Address</label>
|
||||
<input type="email" name="_replyto" class="form-control" placeholder="Email Address" id="email" required data-validation-required-message="Please enter your email address.">
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<input type="hidden" name="_subject" value="New submission!">
|
||||
<input type="text" name="_gotcha" style="display:none" />
|
||||
</div>
|
||||
<div class="row control-group">
|
||||
<div class="form-group col-xs-12 floating-label-form-group controls">
|
||||
<label for="message">Message</label>
|
||||
<textarea rows="5" name="message" class="form-control" placeholder="Message" id="message" required data-validation-required-message="Please enter a message."></textarea>
|
||||
<p class="help-block text-danger"></p>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
<div id="success"></div>
|
||||
<div class="row">
|
||||
<div class="form-group col-xs-12">
|
||||
<button type="submit" class="btn btn-success btn-lg">Send</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
7
_includes/css/bootstrap.min.css
vendored
Executable file
7
_includes/css/bootstrap.min.css
vendored
Executable file
File diff suppressed because one or more lines are too long
484
_includes/css/main.css
Normal file
484
_includes/css/main.css
Normal file
|
|
@ -0,0 +1,484 @@
|
|||
/*!
|
||||
* Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com)
|
||||
* Code licensed under the Apache License v2.0.
|
||||
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
||||
*/
|
||||
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
p.small {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
a,
|
||||
a:hover,
|
||||
a:focus,
|
||||
a:active,
|
||||
a.active {
|
||||
outline: 0;
|
||||
color: #{{ site.color.primary }};
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
text-transform: uppercase;
|
||||
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
hr.star-light,
|
||||
hr.star-primary {
|
||||
margin: 25px auto 30px;
|
||||
padding: 0;
|
||||
max-width: 250px;
|
||||
border: 0;
|
||||
border-top: solid 5px;
|
||||
text-align: center;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
hr.star-light:after,
|
||||
hr.star-primary:after {
|
||||
content: "\f005";
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top: -.8em;
|
||||
padding: 0 .25em;
|
||||
font-family: FontAwesome;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
hr.star-light {
|
||||
border-color: #fff;
|
||||
}
|
||||
|
||||
hr.star-light:after {
|
||||
color: #fff;
|
||||
background-color: #{{ site.color.primary }};
|
||||
}
|
||||
|
||||
hr.star-primary {
|
||||
border-color: #{{ site.color.secondary }};
|
||||
}
|
||||
|
||||
hr.star-primary:after {
|
||||
color: #{{ site.color.secondary }};
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.img-centered {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
header {
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background: #{{ site.color.primary }};
|
||||
}
|
||||
|
||||
header .container {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
header img {
|
||||
display: block;
|
||||
margin: 0 auto 20px;
|
||||
}
|
||||
|
||||
header .intro-text .name {
|
||||
display: block;
|
||||
text-transform: uppercase;
|
||||
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font-size: 2em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
header .intro-text .skills {
|
||||
font-size: 1.25em;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
@media(min-width:768px) {
|
||||
header .container {
|
||||
padding-top: 200px;
|
||||
padding-bottom: 100px;
|
||||
}
|
||||
|
||||
header .intro-text .name {
|
||||
font-size: 4.75em;
|
||||
}
|
||||
|
||||
header .intro-text .skills {
|
||||
font-size: 1.75em;
|
||||
}
|
||||
}
|
||||
|
||||
@media(min-width:768px) {
|
||||
.navbar-fixed-top {
|
||||
padding: 25px 0;
|
||||
-webkit-transition: padding .3s;
|
||||
-moz-transition: padding .3s;
|
||||
transition: padding .3s;
|
||||
}
|
||||
|
||||
.navbar-fixed-top .navbar-brand {
|
||||
font-size: 2em;
|
||||
-webkit-transition: all .3s;
|
||||
-moz-transition: all .3s;
|
||||
transition: all .3s;
|
||||
}
|
||||
|
||||
.navbar-fixed-top.navbar-shrink {
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.navbar-fixed-top.navbar-shrink .navbar-brand {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar {
|
||||
text-transform: uppercase;
|
||||
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.navbar a:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.navbar .navbar-nav {
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.navbar .navbar-nav li a:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.navbar-default,
|
||||
.navbar-inverse {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
section {
|
||||
padding: 100px 0;
|
||||
}
|
||||
|
||||
section h2 {
|
||||
margin: 0;
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
section.success {
|
||||
color: #fff;
|
||||
background: #{{ site.color.primary }};
|
||||
}
|
||||
|
||||
@media(max-width:767px) {
|
||||
section {
|
||||
padding: 75px 0;
|
||||
}
|
||||
|
||||
section.first {
|
||||
padding-top: 75px;
|
||||
}
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item {
|
||||
right: 0;
|
||||
margin: 0 0 15px;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .portfolio-link {
|
||||
display: block;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .portfolio-link .caption {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
opacity: 0;
|
||||
background: rgba({{ site.color.primary-rgb }},.9);
|
||||
-webkit-transition: all ease .5s;
|
||||
-moz-transition: all ease .5s;
|
||||
transition: all ease .5s;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .portfolio-link .caption:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
margin-top: -12px;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
|
||||
margin-top: -12px;
|
||||
}
|
||||
|
||||
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
|
||||
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#portfolio * {
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
@media(min-width:767px) {
|
||||
#portfolio .portfolio-item {
|
||||
margin: 0 0 30px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Flexbox Portfolio Grid */
|
||||
@media (min-width: 640px) {
|
||||
.portfolio-flex-grid .portfolio-flex-row {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
align-items: stretch;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.portfolio-flex-grid .portfolio-flex-row .portfolio-flex-item {
|
||||
flex: 1 0 49%;
|
||||
max-width: 49%;
|
||||
}
|
||||
}
|
||||
@media (min-width: 960px) {
|
||||
.portfolio-flex-grid .portfolio-flex-row .portfolio-flex-item {
|
||||
flex: 1 0 32%;
|
||||
max-width: 32%;
|
||||
}
|
||||
}
|
||||
/* A large grid might need four columns on widescreen layouts */
|
||||
/* @media (min-width: 1380px) {
|
||||
.portfolio-flex-grid .portfolio-flex-row .portfolio-flex-item {
|
||||
flex: 1 0 23.5%;
|
||||
max-width: 23.5%;
|
||||
}
|
||||
} */
|
||||
|
||||
.btn-outline {
|
||||
margin-top: 15px;
|
||||
border: solid 2px #fff;
|
||||
font-size: 20px;
|
||||
color: #fff;
|
||||
background: 0 0;
|
||||
transition: all .3s ease-in-out;
|
||||
}
|
||||
|
||||
.btn-outline:hover,
|
||||
.btn-outline:focus,
|
||||
.btn-outline:active,
|
||||
.btn-outline.active {
|
||||
border: solid 2px #fff;
|
||||
color: #{{ site.color.primary }};
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.floating-label-form-group {
|
||||
position: relative;
|
||||
margin-bottom: 0;
|
||||
padding-bottom: .5em;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
.floating-label-form-group input,
|
||||
.floating-label-form-group textarea {
|
||||
z-index: 1;
|
||||
position: relative;
|
||||
padding-right: 0;
|
||||
padding-left: 0;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
font-size: 1.5em;
|
||||
background: 0 0;
|
||||
box-shadow: none!important;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
.floating-label-form-group label {
|
||||
display: block;
|
||||
z-index: 0;
|
||||
position: relative;
|
||||
top: 2em;
|
||||
margin: 0;
|
||||
font-size: .85em;
|
||||
line-height: 1.764705882em;
|
||||
vertical-align: middle;
|
||||
vertical-align: baseline;
|
||||
opacity: 0;
|
||||
-webkit-transition: top .3s ease,opacity .3s ease;
|
||||
-moz-transition: top .3s ease,opacity .3s ease;
|
||||
-ms-transition: top .3s ease,opacity .3s ease;
|
||||
transition: top .3s ease,opacity .3s ease;
|
||||
}
|
||||
|
||||
.floating-label-form-group::not(:first-child) {
|
||||
padding-left: 14px;
|
||||
border-left: 1px solid #eee;
|
||||
}
|
||||
|
||||
.floating-label-form-group-with-value label {
|
||||
top: 0;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.floating-label-form-group-with-focus label {
|
||||
color: #{{ site.color.primary }};
|
||||
}
|
||||
|
||||
form .row:first-child .floating-label-form-group {
|
||||
border-top: 1px solid #eee;
|
||||
}
|
||||
|
||||
footer {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
footer h3 {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
footer .footer-above {
|
||||
padding-top: 50px;
|
||||
background-color: #{{ site.color.secondary }};
|
||||
}
|
||||
|
||||
footer .footer-col {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
footer .footer-below {
|
||||
padding: 25px 0;
|
||||
background-color: #{{ site.color.secondary-dark }};
|
||||
}
|
||||
|
||||
.btn-social {
|
||||
display: inline-block;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border: 2px solid #fff;
|
||||
border-radius: 100%;
|
||||
text-align: center;
|
||||
font-size: 20px;
|
||||
line-height: 45px;
|
||||
}
|
||||
|
||||
.btn:focus,
|
||||
.btn:active,
|
||||
.btn.active {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.scroll-top {
|
||||
z-index: 1049;
|
||||
position: fixed;
|
||||
right: 2%;
|
||||
bottom: 2%;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
.scroll-top .btn {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 100%;
|
||||
font-size: 20px;
|
||||
line-height: 28px;
|
||||
}
|
||||
|
||||
.scroll-top .btn:focus {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
.portfolio-modal .modal-content {
|
||||
padding: 100px 0;
|
||||
min-height: 100%;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
text-align: center;
|
||||
background-clip: border-box;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.portfolio-modal .modal-content h2 {
|
||||
margin: 0;
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
.portfolio-modal .modal-content img {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.portfolio-modal .modal-content .item-details {
|
||||
margin: 30px 0;
|
||||
}
|
||||
|
||||
.portfolio-modal .close-modal {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
right: 25px;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
background-color: transparent;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.portfolio-modal .close-modal:hover {
|
||||
opacity: .3;
|
||||
}
|
||||
|
||||
.portfolio-modal .close-modal .lr {
|
||||
z-index: 1051;
|
||||
width: 1px;
|
||||
height: 75px;
|
||||
margin-left: 35px;
|
||||
background-color: #{{ site.color.secondary }};
|
||||
-webkit-transform: rotate(45deg);
|
||||
-ms-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.portfolio-modal .close-modal .lr .rl {
|
||||
z-index: 1052;
|
||||
width: 1px;
|
||||
height: 75px;
|
||||
background-color: #{{ site.color.secondary }};
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
|
||||
.navbar-nav>.active>a {
|
||||
background-color: #{{ site.color.secondary-dark }} !important;
|
||||
}
|
||||
|
||||
/* Fix modal mouse wheel issues */
|
||||
/* https://github.com/twbs/bootstrap/issues/16297 */
|
||||
.modal.fade.in {
|
||||
transform: translateZ(0);
|
||||
-webkit-transform: translateZ(0);
|
||||
}
|
||||
47
_includes/footer.html
Normal file
47
_includes/footer.html
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<!-- Footer -->
|
||||
<footer class="text-center">
|
||||
<div class="footer-above">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="footer-col col-md-4">
|
||||
<h3>{{ site.footer.location }}</h3>
|
||||
<p>
|
||||
{% for adress in site.address %}
|
||||
{{ adress.line }} <br>
|
||||
{% endfor %}
|
||||
</p>
|
||||
</div>
|
||||
<div class="footer-col col-md-4">
|
||||
<h3>{{ site.footer.social }}</h3>
|
||||
<ul class="list-inline">
|
||||
{% for network in site.social %}
|
||||
<li>
|
||||
<a href="{{ network.url }}" class="btn-social btn-outline"><i class="fa fa-fw fa-{{ network.title }}"></i></a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="footer-col col-md-4">
|
||||
<h3>{{ site.footer.credits }}</h3>
|
||||
<p>{{ site.credits }}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-below">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
Copyright © {{ site.footer.copyright }} 20{{ site.time | date: '%y' }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
|
||||
<div class="scroll-top page-scroll visible-xs visible-sm">
|
||||
<a class="btn btn-primary" href="#page-top">
|
||||
<i class="fa fa-chevron-up"></i>
|
||||
</a>
|
||||
</div>
|
||||
32
_includes/head.html
Normal file
32
_includes/head.html
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<meta name="description" content="{{ site.description }}">
|
||||
<meta name="keywords" content="{{ site.keywords }}" />
|
||||
{% if site.meta_author %}<meta name="author" content="{{ site.meta_author }}">{% endif %}
|
||||
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.url }}">
|
||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed.xml">
|
||||
|
||||
<!-- Custom CSS & Bootstrap Core CSS - Uses Bootswatch Flatly Theme: http://bootswatch.com/flatly/ -->
|
||||
<link rel="stylesheet" href="{{ "/style.css" }}">
|
||||
|
||||
<!-- Google verification -->
|
||||
{% if site.google_verify %}<meta name="google-site-verification" content="{{ site.google_verify }}">{% endif %}
|
||||
|
||||
<!-- Bing Verification -->
|
||||
{% if site.bing_verify %}<meta name="msvalidate.01" content="{{ site.bing_verify }}">{% endif %}
|
||||
|
||||
<!-- Custom Fonts -->
|
||||
<link rel="stylesheet" href="{{ "/css/font-awesome/css/font-awesome.min.css" }}">
|
||||
<link href="//fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
|
||||
<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" 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>
|
||||
15
_includes/header.html
Normal file
15
_includes/header.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!-- Header -->
|
||||
<header>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<img class="img-responsive" src="img/profile.png" alt="profile-pic" />
|
||||
<div class="intro-text">
|
||||
<span class="name">{{ site.title }}</span>
|
||||
<hr class="star-light" />
|
||||
<span class="skills">{{ site.skills }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
26
_includes/js.html
Normal file
26
_includes/js.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<!-- jQuery Version 1.11.0 -->
|
||||
<script src="{{ "/js/jquery-1.11.0.js" }}"></script>
|
||||
|
||||
<!-- Bootstrap Core JavaScript -->
|
||||
<script src="{{ "/js/bootstrap.min.js" }}"></script>
|
||||
|
||||
<!-- Plugin JavaScript -->
|
||||
<script src="{{ "/js/jquery.easing.min.js" }}"></script>
|
||||
<script src="{{ "/js/classie.js" }}"></script>
|
||||
<script src="{{ "/js/cbpAnimatedHeader.js" }}"></script>
|
||||
|
||||
<!-- Contact Form JavaScript -->
|
||||
<script src="{{ "/js/jqBootstrapValidation.js" }}"></script>
|
||||
{% if site.contact == "static" %}
|
||||
<script src="{{ "/js/contact_me_static.js" }}"></script>
|
||||
{% else %}
|
||||
<script src="{{ "/js/contact_me.js" }}"></script>
|
||||
{% endif %}
|
||||
|
||||
<!-- Custom Theme JavaScript -->
|
||||
<script src="{{ "/js/freelancer.js" }}"></script>
|
||||
|
||||
{% if site.contact == "disqus" %}
|
||||
<!-- Disqus Stuff -->
|
||||
{% include js_disqus.html %}
|
||||
{% endif %}
|
||||
21
_includes/js_disqus.html
Normal file
21
_includes/js_disqus.html
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<script type="text/javascript">
|
||||
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
|
||||
var disqus_shortname = '{{ site.disqus_shortname }}'; // required: replace example with your forum shortname
|
||||
|
||||
/* * * DON'T EDIT BELOW THIS LINE * * */
|
||||
(function() {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
||||
document.getElementById('disqus_thread').appendChild(dsq);
|
||||
})();
|
||||
|
||||
/* * * DON'T EDIT BELOW THIS LINE * * */
|
||||
(function () {
|
||||
var s = document.createElement('script'); s.async = true;
|
||||
s.type = 'text/javascript';
|
||||
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
|
||||
document.getElementById('disqus_thread').appendChild(s);
|
||||
}());
|
||||
</script>
|
||||
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
|
||||
48
_includes/modals.html
Normal file
48
_includes/modals.html
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
<!-- Portfolio Modals -->
|
||||
{% for post in site.posts %}
|
||||
<div class="portfolio-modal modal fade" id="portfolioModal-{{ post.modal-id }}" tabindex="-1" role="dialog" aria-hidden="true">
|
||||
<div class="modal-content">
|
||||
<div class="close-modal" data-dismiss="modal">
|
||||
<div class="lr">
|
||||
<div class="rl">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-lg-offset-2">
|
||||
<div class="modal-body">
|
||||
<h2>{{ post.title }}</h2>
|
||||
<hr class="star-primary">
|
||||
<img src="img/portfolio/{{ post.img }}" class="img-responsive img-centered" alt="{{ post.alt }}">
|
||||
{% if post.description %}
|
||||
<p>{{ post.description }}</p>
|
||||
{% endif %}
|
||||
<ul class="list-inline item-details">
|
||||
{% if post.client %}
|
||||
<li>Client:
|
||||
<strong><a href="http://startbootstrap.com">{{ post.client }}</a>
|
||||
</strong>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if post.project-date %}
|
||||
<li>Date:
|
||||
<strong><a href="http://startbootstrap.com">{{ post.project-date }}</a>
|
||||
</strong>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% if post.category %}
|
||||
<li>Service:
|
||||
<strong><a href="http://startbootstrap.com">{{ post.category }}</a>
|
||||
</strong>
|
||||
</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
35
_includes/nav.html
Normal file
35
_includes/nav.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<!-- Navigation -->
|
||||
<nav class="navbar navbar-default navbar-fixed-top">
|
||||
<div class="container">
|
||||
<!-- Brand and toggle get grouped for better mobile display -->
|
||||
<div class="navbar-header page-scroll">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
||||
<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="#page-top">{{ site.title }}</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="hidden">
|
||||
<a href="#page-top"></a>
|
||||
</li>
|
||||
<li class="page-scroll">
|
||||
<a href="#portfolio">Portfolio</a>
|
||||
</li>
|
||||
<li class="page-scroll">
|
||||
<a href="#about">About</a>
|
||||
</li>
|
||||
<li class="page-scroll">
|
||||
<a href="#contact">Contact</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- /.navbar-collapse -->
|
||||
</div>
|
||||
<!-- /.container-fluid -->
|
||||
</nav>
|
||||
26
_includes/portfolio_grid.html
Normal file
26
_includes/portfolio_grid.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
<!-- Portfolio Grid Section -->
|
||||
<section id="portfolio">
|
||||
<div class="container portfolio-flex-grid">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<h2>Portfolio</h2>
|
||||
<hr class="star-primary">
|
||||
</div>
|
||||
</div>
|
||||
<div class="portfolio-flex-row">
|
||||
{% for post in site.posts %}
|
||||
<div class="portfolio-flex-item portfolio-item">
|
||||
<a href="#portfolioModal-{{ post.modal-id }}" class="portfolio-link" data-toggle="modal">
|
||||
<div class="caption">
|
||||
<div class="caption-content">
|
||||
<i class="fa fa-search-plus fa-3x"></i>
|
||||
</div>
|
||||
</div>
|
||||
<img src="img/portfolio/{{ post.img }}" class="img-responsive" alt="{{ post.alt }}">
|
||||
</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Loading…
Add table
Add a link
Reference in a new issue