revert directory structure and update stock images
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 109 KiB |
Before Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 162 KiB |
Before Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 173 KiB |
Before Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 253 KiB |
Before Width: | Height: | Size: 117 KiB |
Before Width: | Height: | Size: 256 KiB |
Before Width: | Height: | Size: 183 KiB |
Before Width: | Height: | Size: 148 KiB |
Before Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 9.2 KiB |
Before Width: | Height: | Size: 9.4 KiB |
Before Width: | Height: | Size: 9.1 KiB |
@ -192,7 +192,7 @@ fieldset[disabled] .btn-xl.active {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
header {
|
header {
|
||||||
background-image: url('../../assets/img/header-bg.jpg');
|
background-image: url('../img/header-bg.jpg');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-attachment: scroll;
|
background-attachment: scroll;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
@ -505,7 +505,8 @@ section h3.section-subheading {
|
|||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
}
|
}
|
||||||
.team-member img {
|
.team-member img {
|
||||||
margin: 0 auto;
|
height: 225px;
|
||||||
|
width: 225px;
|
||||||
border: 7px solid white;
|
border: 7px solid white;
|
||||||
}
|
}
|
||||||
.team-member h4 {
|
.team-member h4 {
|
||||||
@ -521,7 +522,7 @@ aside.clients img {
|
|||||||
}
|
}
|
||||||
section#contact {
|
section#contact {
|
||||||
background-color: #222222;
|
background-color: #222222;
|
||||||
background-image: url('../../assets/img/map-image.png');
|
background-image: url('../img/map-image.png');
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
5
css/agency.min.css
vendored
Normal file
16
gulpfile.js
@ -19,10 +19,10 @@ var banner = ['/*!\n',
|
|||||||
|
|
||||||
// Compile LESS files from /less into /css
|
// Compile LESS files from /less into /css
|
||||||
gulp.task('less', function() {
|
gulp.task('less', function() {
|
||||||
return gulp.src('stylesheets/less/agency.less')
|
return gulp.src('less/agency.less')
|
||||||
.pipe(less())
|
.pipe(less())
|
||||||
.pipe(header(banner, { pkg: pkg }))
|
.pipe(header(banner, { pkg: pkg }))
|
||||||
.pipe(gulp.dest('stylesheets/css'))
|
.pipe(gulp.dest('css'))
|
||||||
.pipe(browserSync.reload({
|
.pipe(browserSync.reload({
|
||||||
stream: true
|
stream: true
|
||||||
}))
|
}))
|
||||||
@ -30,10 +30,10 @@ gulp.task('less', function() {
|
|||||||
|
|
||||||
// Minify compiled CSS
|
// Minify compiled CSS
|
||||||
gulp.task('minify-css', ['less'], function() {
|
gulp.task('minify-css', ['less'], function() {
|
||||||
return gulp.src('stylesheets/css/agency.css')
|
return gulp.src('css/agency.css')
|
||||||
.pipe(cleanCSS({ compatibility: 'ie8' }))
|
.pipe(cleanCSS({ compatibility: 'ie8' }))
|
||||||
.pipe(rename({ suffix: '.min' }))
|
.pipe(rename({ suffix: '.min' }))
|
||||||
.pipe(gulp.dest('stylesheets/css'))
|
.pipe(gulp.dest('css'))
|
||||||
.pipe(browserSync.reload({
|
.pipe(browserSync.reload({
|
||||||
stream: true
|
stream: true
|
||||||
}))
|
}))
|
||||||
@ -87,8 +87,8 @@ gulp.task('browserSync', function() {
|
|||||||
|
|
||||||
// Dev task with browserSync
|
// Dev task with browserSync
|
||||||
gulp.task('dev', ['browserSync', 'less', 'minify-css', 'minify-js'], function() {
|
gulp.task('dev', ['browserSync', 'less', 'minify-css', 'minify-js'], function() {
|
||||||
gulp.watch('stylesheets/less/*.less', ['less']);
|
gulp.watch('less/*.less', ['less']);
|
||||||
gulp.watch('stylesheets/css/*.css', ['minify-css']);
|
gulp.watch('css/*.css', ['minify-css']);
|
||||||
gulp.watch('js/*.js', ['minify-js']);
|
gulp.watch('js/*.js', ['minify-js']);
|
||||||
// Reloads the browser whenever HTML or JS files change
|
// Reloads the browser whenever HTML or JS files change
|
||||||
gulp.watch('*.html', browserSync.reload);
|
gulp.watch('*.html', browserSync.reload);
|
||||||
@ -98,10 +98,10 @@ gulp.task('dev', ['browserSync', 'less', 'minify-css', 'minify-js'], function()
|
|||||||
// Compiles SCSS files from /scss into /css
|
// Compiles SCSS files from /scss into /css
|
||||||
// NOTE: This theme uses LESS by default. To swtich to SCSS you will need to update this gulpfile by changing the 'less' tasks to run 'sass'!
|
// NOTE: This theme uses LESS by default. To swtich to SCSS you will need to update this gulpfile by changing the 'less' tasks to run 'sass'!
|
||||||
gulp.task('sass', function() {
|
gulp.task('sass', function() {
|
||||||
return gulp.src('stylesheets/scss/agency.scss')
|
return gulp.src('scss/agency.scss')
|
||||||
.pipe(sass())
|
.pipe(sass())
|
||||||
.pipe(header(banner, { pkg: pkg }))
|
.pipe(header(banner, { pkg: pkg }))
|
||||||
.pipe(gulp.dest('stylesheets/css'))
|
.pipe(gulp.dest('css'))
|
||||||
.pipe(browserSync.reload({
|
.pipe(browserSync.reload({
|
||||||
stream: true
|
stream: true
|
||||||
}))
|
}))
|
||||||
|
Before Width: | Height: | Size: 6.8 KiB After Width: | Height: | Size: 6.8 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 233 KiB After Width: | Height: | Size: 233 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 356 KiB After Width: | Height: | Size: 356 KiB |
BIN
img/portfolio/01-full.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
img/portfolio/01-thumbnail.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
img/portfolio/02-full.jpg
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
img/portfolio/02-thumbnail.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
img/portfolio/03-full.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
img/portfolio/03-thumbnail.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
img/portfolio/04-full.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
img/portfolio/04-thumbnail.jpg
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
img/portfolio/05-full.jpg
Normal file
After Width: | Height: | Size: 102 KiB |
BIN
img/portfolio/05-thumbnail.jpg
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
img/portfolio/06-full.jpg
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
img/portfolio/06-thumbnail.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
img/team/1.jpg
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
img/team/2.jpg
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
img/team/3.jpg
Normal file
After Width: | Height: | Size: 25 KiB |
121
index.html
@ -21,7 +21,7 @@
|
|||||||
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
|
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
|
||||||
|
|
||||||
<!-- Custom styles for this theme -->
|
<!-- Custom styles for this theme -->
|
||||||
<link href="stylesheets/css/agency.min.css" rel="stylesheet">
|
<link href="css/agency.min.css" rel="stylesheet">
|
||||||
|
|
||||||
<!-- Temporary navbar container fix until Bootstrap 4 is patched -->
|
<!-- Temporary navbar container fix until Bootstrap 4 is patched -->
|
||||||
<style>
|
<style>
|
||||||
@ -135,11 +135,11 @@
|
|||||||
<i class="fa fa-plus fa-3x"></i>
|
<i class="fa fa-plus fa-3x"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="assets/img/portfolio/roundicons.png" class="img-fluid" alt="">
|
<img src="img/portfolio/01-thumbnail.jpg" class="img-fluid" alt="">
|
||||||
</a>
|
</a>
|
||||||
<div class="portfolio-caption">
|
<div class="portfolio-caption">
|
||||||
<h4>Round Icons</h4>
|
<h4>Threads</h4>
|
||||||
<p class="text-muted">Graphic Design</p>
|
<p class="text-muted">Illustration</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 col-sm-6 portfolio-item">
|
<div class="col-md-4 col-sm-6 portfolio-item">
|
||||||
@ -149,11 +149,11 @@
|
|||||||
<i class="fa fa-plus fa-3x"></i>
|
<i class="fa fa-plus fa-3x"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="assets/img/portfolio/startup-framework.png" class="img-fluid" alt="">
|
<img src="img/portfolio/02-thumbnail.jpg" class="img-fluid" alt="">
|
||||||
</a>
|
</a>
|
||||||
<div class="portfolio-caption">
|
<div class="portfolio-caption">
|
||||||
<h4>Startup Framework</h4>
|
<h4>Explore</h4>
|
||||||
<p class="text-muted">Website Design</p>
|
<p class="text-muted">Graphic Design</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 col-sm-6 portfolio-item">
|
<div class="col-md-4 col-sm-6 portfolio-item">
|
||||||
@ -163,11 +163,11 @@
|
|||||||
<i class="fa fa-plus fa-3x"></i>
|
<i class="fa fa-plus fa-3x"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="assets/img/portfolio/treehouse.png" class="img-fluid" alt="">
|
<img src="img/portfolio/03-thumbnail.jpg" class="img-fluid" alt="">
|
||||||
</a>
|
</a>
|
||||||
<div class="portfolio-caption">
|
<div class="portfolio-caption">
|
||||||
<h4>Treehouse</h4>
|
<h4>Finish</h4>
|
||||||
<p class="text-muted">Website Design</p>
|
<p class="text-muted">Identity</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 col-sm-6 portfolio-item">
|
<div class="col-md-4 col-sm-6 portfolio-item">
|
||||||
@ -177,11 +177,11 @@
|
|||||||
<i class="fa fa-plus fa-3x"></i>
|
<i class="fa fa-plus fa-3x"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="assets/img/portfolio/golden.png" class="img-fluid" alt="">
|
<img src="img/portfolio/04-thumbnail.jpg" class="img-fluid" alt="">
|
||||||
</a>
|
</a>
|
||||||
<div class="portfolio-caption">
|
<div class="portfolio-caption">
|
||||||
<h4>Golden</h4>
|
<h4>Lines</h4>
|
||||||
<p class="text-muted">Website Design</p>
|
<p class="text-muted">Branding</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-4 col-sm-6 portfolio-item">
|
<div class="col-md-4 col-sm-6 portfolio-item">
|
||||||
@ -191,10 +191,10 @@
|
|||||||
<i class="fa fa-plus fa-3x"></i>
|
<i class="fa fa-plus fa-3x"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="assets/img/portfolio/escape.png" class="img-fluid" alt="">
|
<img src="img/portfolio/05-thumbnail.jpg" class="img-fluid" alt="">
|
||||||
</a>
|
</a>
|
||||||
<div class="portfolio-caption">
|
<div class="portfolio-caption">
|
||||||
<h4>Escape</h4>
|
<h4>Southwest</h4>
|
||||||
<p class="text-muted">Website Design</p>
|
<p class="text-muted">Website Design</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -205,11 +205,11 @@
|
|||||||
<i class="fa fa-plus fa-3x"></i>
|
<i class="fa fa-plus fa-3x"></i>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="assets/img/portfolio/dreams.png" class="img-fluid" alt="">
|
<img src="img/portfolio/06-thumbnail.jpg" class="img-fluid" alt="">
|
||||||
</a>
|
</a>
|
||||||
<div class="portfolio-caption">
|
<div class="portfolio-caption">
|
||||||
<h4>Dreams</h4>
|
<h4>Window</h4>
|
||||||
<p class="text-muted">Website Design</p>
|
<p class="text-muted">Photography</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -230,7 +230,7 @@
|
|||||||
<ul class="timeline">
|
<ul class="timeline">
|
||||||
<li>
|
<li>
|
||||||
<div class="timeline-image">
|
<div class="timeline-image">
|
||||||
<img class="rounded-circle img-fluid" src="assets/img/about/1.jpg" alt="">
|
<img class="rounded-circle img-fluid" src="img/about/1.jpg" alt="">
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-panel">
|
<div class="timeline-panel">
|
||||||
<div class="timeline-heading">
|
<div class="timeline-heading">
|
||||||
@ -244,7 +244,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="timeline-inverted">
|
<li class="timeline-inverted">
|
||||||
<div class="timeline-image">
|
<div class="timeline-image">
|
||||||
<img class="rounded-circle img-fluid" src="assets/img/about/2.jpg" alt="">
|
<img class="rounded-circle img-fluid" src="img/about/2.jpg" alt="">
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-panel">
|
<div class="timeline-panel">
|
||||||
<div class="timeline-heading">
|
<div class="timeline-heading">
|
||||||
@ -258,7 +258,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<div class="timeline-image">
|
<div class="timeline-image">
|
||||||
<img class="rounded-circle img-fluid" src="assets/img/about/3.jpg" alt="">
|
<img class="rounded-circle img-fluid" src="img/about/3.jpg" alt="">
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-panel">
|
<div class="timeline-panel">
|
||||||
<div class="timeline-heading">
|
<div class="timeline-heading">
|
||||||
@ -272,7 +272,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<li class="timeline-inverted">
|
<li class="timeline-inverted">
|
||||||
<div class="timeline-image">
|
<div class="timeline-image">
|
||||||
<img class="rounded-circle img-fluid" src="assets/img/about/4.jpg" alt="">
|
<img class="rounded-circle img-fluid" src="img/about/4.jpg" alt="">
|
||||||
</div>
|
</div>
|
||||||
<div class="timeline-panel">
|
<div class="timeline-panel">
|
||||||
<div class="timeline-heading">
|
<div class="timeline-heading">
|
||||||
@ -309,7 +309,7 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<img src="assets/img/team/1.jpg" class="img-fluid rounded-circle" alt="">
|
<img src="img/team/1.jpg" class="mx-auto rounded-circle" alt="">
|
||||||
<h4>Kay Garland</h4>
|
<h4>Kay Garland</h4>
|
||||||
<p class="text-muted">Lead Designer</p>
|
<p class="text-muted">Lead Designer</p>
|
||||||
<ul class="list-inline social-buttons">
|
<ul class="list-inline social-buttons">
|
||||||
@ -324,7 +324,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<img src="assets/img/team/2.jpg" class="img-fluid rounded-circle" alt="">
|
<img src="img/team/2.jpg" class="mx-auto rounded-circle" alt="">
|
||||||
<h4>Larry Parker</h4>
|
<h4>Larry Parker</h4>
|
||||||
<p class="text-muted">Lead Marketer</p>
|
<p class="text-muted">Lead Marketer</p>
|
||||||
<ul class="list-inline social-buttons">
|
<ul class="list-inline social-buttons">
|
||||||
@ -339,7 +339,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<div class="team-member">
|
<div class="team-member">
|
||||||
<img src="assets/img/team/3.jpg" class="img-fluid rounded-circle" alt="">
|
<img src="img/team/3.jpg" class="mx-auto rounded-circle" alt="">
|
||||||
<h4>Diana Pertersen</h4>
|
<h4>Diana Pertersen</h4>
|
||||||
<p class="text-muted">Lead Developer</p>
|
<p class="text-muted">Lead Developer</p>
|
||||||
<ul class="list-inline social-buttons">
|
<ul class="list-inline social-buttons">
|
||||||
@ -367,22 +367,22 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3 col-sm-6">
|
<div class="col-md-3 col-sm-6">
|
||||||
<a href="#">
|
<a href="#">
|
||||||
<img src="assets/img/logos/envato.jpg" class="img-fluid d-block mx-auto" alt="">
|
<img src="img/logos/envato.jpg" class="img-fluid d-block mx-auto" alt="">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3 col-sm-6">
|
<div class="col-md-3 col-sm-6">
|
||||||
<a href="#">
|
<a href="#">
|
||||||
<img src="assets/img/logos/designmodo.jpg" class="img-fluid d-block mx-auto" alt="">
|
<img src="img/logos/designmodo.jpg" class="img-fluid d-block mx-auto" alt="">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3 col-sm-6">
|
<div class="col-md-3 col-sm-6">
|
||||||
<a href="#">
|
<a href="#">
|
||||||
<img src="assets/img/logos/themeforest.jpg" class="img-fluid d-block mx-auto" alt="">
|
<img src="img/logos/themeforest.jpg" class="img-fluid d-block mx-auto" alt="">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-md-3 col-sm-6">
|
<div class="col-md-3 col-sm-6">
|
||||||
<a href="#">
|
<a href="#">
|
||||||
<img src="assets/img/logos/creative-market.jpg" class="img-fluid d-block mx-auto" alt="">
|
<img src="img/logos/creative-market.jpg" class="img-fluid d-block mx-auto" alt="">
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -482,14 +482,12 @@
|
|||||||
<!-- Project Details Go Here -->
|
<!-- Project Details Go Here -->
|
||||||
<h2>Project Name</h2>
|
<h2>Project Name</h2>
|
||||||
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
||||||
<img class="img-fluid d-block mx-auto" src="assets/img/portfolio/roundicons-free.png" alt="">
|
<img class="img-fluid d-block mx-auto" src="img/portfolio/01-full.jpg" alt="">
|
||||||
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
|
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
|
||||||
<p>
|
|
||||||
<strong>Want these icons in this portfolio item sample?</strong>You can download 60 of them for free, courtesy of <a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">RoundIcons.com</a>, or you can purchase the 1500 icon set <a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">here</a>.</p>
|
|
||||||
<ul class="list-inline">
|
<ul class="list-inline">
|
||||||
<li>Date: July 2014</li>
|
<li>Date: January 2017</li>
|
||||||
<li>Client: Round Icons</li>
|
<li>Client: Threads</li>
|
||||||
<li>Category: Graphic Design</li>
|
<li>Category: Illustration</li>
|
||||||
</ul>
|
</ul>
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
||||||
</div>
|
</div>
|
||||||
@ -514,11 +512,16 @@
|
|||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-8 offset-lg-2">
|
<div class="col-lg-8 offset-lg-2">
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<h2>Project Heading</h2>
|
<!-- Project Details Go Here -->
|
||||||
|
<h2>Project Name</h2>
|
||||||
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
||||||
<img class="img-fluid d-block mx-auto" src="assets/img/portfolio/startup-framework-preview.png" alt="">
|
<img class="img-fluid d-block mx-auto" src="img/portfolio/02-full.jpg" alt="">
|
||||||
<p><a href="http://designmodo.com/startup/?u=787">Startup Framework</a> is a website builder for professionals. Startup Framework contains components and complex blocks (PSD+HTML Bootstrap themes and templates) which can easily be integrated into almost any design. All of these components are made in the same style, and can easily be integrated into projects, allowing you to create hundreds of solutions for your future projects.</p>
|
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
|
||||||
<p>You can preview Startup Framework <a href="http://designmodo.com/startup/?u=787">here</a>.</p>
|
<ul class="list-inline">
|
||||||
|
<li>Date: January 2017</li>
|
||||||
|
<li>Client: Explore</li>
|
||||||
|
<li>Category: Graphic Design</li>
|
||||||
|
</ul>
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -545,9 +548,13 @@
|
|||||||
<!-- Project Details Go Here -->
|
<!-- Project Details Go Here -->
|
||||||
<h2>Project Name</h2>
|
<h2>Project Name</h2>
|
||||||
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
||||||
<img class="img-fluid d-block mx-auto" src="assets/img/portfolio/treehouse-preview.png" alt="">
|
<img class="img-fluid d-block mx-auto" src="img/portfolio/03-full.jpg" alt="">
|
||||||
<p>Treehouse is a free PSD web template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. This is bright and spacious design perfect for people or startup companies looking to showcase their apps or other projects.</p>
|
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
|
||||||
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/treehouse-free-psd-web-template/">FreebiesXpress.com</a>.</p>
|
<ul class="list-inline">
|
||||||
|
<li>Date: January 2017</li>
|
||||||
|
<li>Client: Finish</li>
|
||||||
|
<li>Category: Identity</li>
|
||||||
|
</ul>
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -574,9 +581,13 @@
|
|||||||
<!-- Project Details Go Here -->
|
<!-- Project Details Go Here -->
|
||||||
<h2>Project Name</h2>
|
<h2>Project Name</h2>
|
||||||
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
||||||
<img class="img-fluid d-block mx-auto" src="assets/img/portfolio/golden-preview.png" alt="">
|
<img class="img-fluid d-block mx-auto" src="img/portfolio/04-full.jpg" alt="">
|
||||||
<p>Start Bootstrap's Agency theme is based on Golden, a free PSD website template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Golden is a modern and clean one page web template that was made exclusively for Best PSD Freebies. This template has a great portfolio, timeline, and meet your team sections that can be easily modified to fit your needs.</p>
|
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
|
||||||
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/golden-free-one-page-web-template/">FreebiesXpress.com</a>.</p>
|
<ul class="list-inline">
|
||||||
|
<li>Date: January 2017</li>
|
||||||
|
<li>Client: Lines</li>
|
||||||
|
<li>Category: Branding</li>
|
||||||
|
</ul>
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -603,9 +614,13 @@
|
|||||||
<!-- Project Details Go Here -->
|
<!-- Project Details Go Here -->
|
||||||
<h2>Project Name</h2>
|
<h2>Project Name</h2>
|
||||||
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
||||||
<img class="img-fluid d-block mx-auto" src="assets/img/portfolio/escape-preview.png" alt="">
|
<img class="img-fluid d-block mx-auto" src="img/portfolio/05-full.jpg" alt="">
|
||||||
<p>Escape is a free PSD web template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Escape is a one page web template that was designed with agencies in mind. This template is ideal for those looking for a simple one page solution to describe your business and offer your services.</p>
|
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
|
||||||
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/escape-one-page-psd-web-template/">FreebiesXpress.com</a>.</p>
|
<ul class="list-inline">
|
||||||
|
<li>Date: January 2017</li>
|
||||||
|
<li>Client: Southwest</li>
|
||||||
|
<li>Category: Website Design</li>
|
||||||
|
</ul>
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -632,9 +647,13 @@
|
|||||||
<!-- Project Details Go Here -->
|
<!-- Project Details Go Here -->
|
||||||
<h2>Project Name</h2>
|
<h2>Project Name</h2>
|
||||||
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
<p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p>
|
||||||
<img class="img-fluid d-block mx-auto" src="assets/img/portfolio/dreams-preview.png" alt="">
|
<img class="img-fluid d-block mx-auto" src="img/portfolio/06-full.jpg" alt="">
|
||||||
<p>Dreams is a free PSD web template built by <a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Dreams is a modern one page web template designed for almost any purpose. It’s a beautiful template that’s designed with the Bootstrap framework in mind.</p>
|
<p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p>
|
||||||
<p>You can download the PSD template in this portfolio sample item at <a href="http://freebiesxpress.com/gallery/dreams-free-one-page-web-template/">FreebiesXpress.com</a>.</p>
|
<ul class="list-inline">
|
||||||
|
<li>Date: January 2017</li>
|
||||||
|
<li>Client: Window</li>
|
||||||
|
<li>Category: Photography</li>
|
||||||
|
</ul>
|
||||||
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close Project</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -20,7 +20,7 @@ $(function() {
|
|||||||
firstName = name.split(' ').slice(0, -1).join(' ');
|
firstName = name.split(' ').slice(0, -1).join(' ');
|
||||||
}
|
}
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "././assets/mail/contact_me.php",
|
url: "././mail/contact_me.php",
|
||||||
type: "POST",
|
type: "POST",
|
||||||
data: {
|
data: {
|
||||||
name: name,
|
name: name,
|
||||||
|
@ -126,7 +126,7 @@ h1, h2, h3, h4, h5, h6 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
background-image: url('../../assets/img/header-bg.jpg');
|
background-image: url('../img/header-bg.jpg');
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-attachment: scroll;
|
background-attachment: scroll;
|
||||||
background-position: center center;
|
background-position: center center;
|
||||||
@ -470,7 +470,8 @@ section {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
img {
|
img {
|
||||||
margin: 0 auto;
|
height: 225px;
|
||||||
|
width: 225px;
|
||||||
border: 7px solid white;
|
border: 7px solid white;
|
||||||
}
|
}
|
||||||
h4 {
|
h4 {
|
||||||
@ -495,7 +496,7 @@ aside.clients {
|
|||||||
|
|
||||||
section#contact {
|
section#contact {
|
||||||
background-color: @gray-darker;
|
background-color: @gray-darker;
|
||||||
background-image: url('../../assets/img/map-image.png');
|
background-image: url('../img/map-image.png');
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
.section-heading {
|
.section-heading {
|