@@ -0,0 +1,11 @@ | |||
Thumbs.db | |||
.DS_Store | |||
.dist | |||
.tmp | |||
.sass-cache | |||
npm-debug.log | |||
node_modules | |||
builds | |||
package-lock.json | |||
public | |||
resources |
@@ -67,22 +67,6 @@ jQuery(function ($) { | |||
autoplaySpeed: 4000 | |||
}); | |||
/* ========================================================================= */ | |||
/* Animated section | |||
/* ========================================================================= */ | |||
var wow = new WOW({ | |||
offset: 100, // distance to the element when triggering the animation (default is 0) | |||
mobile: false // trigger animations on mobile devices (default is true) | |||
}); | |||
var scrolled = false; | |||
$(window).on('scroll', function () { | |||
if (!scrolled) { | |||
scrolled = true; | |||
wow.init(); | |||
} | |||
}) | |||
/* ========================================================================= */ |
@@ -18,8 +18,6 @@ link = "plugins/bootstrap/bootstrap.min.css" | |||
[[params.plugins.css]] | |||
link = "plugins/themify-icons/themify-icons.css" | |||
[[params.plugins.css]] | |||
link = "plugins/animate-css/animate.css" | |||
[[params.plugins.css]] | |||
link = "plugins/magnific-popup/magnific-popup.css" | |||
[[params.plugins.css]] | |||
link = "plugins/slick/slick.css" | |||
@@ -38,8 +36,6 @@ link = "plugins/shuffle/shuffle.min.js" | |||
[[params.plugins.js]] | |||
link = "plugins/magnific-popup/jquery.magnific-popup.min.js" | |||
[[params.plugins.js]] | |||
link = "plugins/wow/wow.min.js" | |||
[[params.plugins.js]] | |||
link = "plugins/lazy-load/lozad.min.js" | |||
[[params.plugins.js]] | |||
link = "plugins/google-map/map.js" | |||
@@ -100,7 +96,7 @@ preloader = "images/logo.png" | |||
# google map | |||
[params.map] | |||
enable = false | |||
enable = true | |||
gmap_api = "https://maps.googleapis.com/maps/api/js?key=AIzaSyBu5nZKbeK-WHQ70oqOWo-_4VmwOwKP9YQ" | |||
map_latitude = "51.5223477" | |||
map_longitude = "-0.1622023" |
@@ -9,7 +9,7 @@ portfolio: | |||
image_webp : images/portfolio/portfolio-1.webp | |||
categories : ["design"] | |||
content : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! | |||
link : "#" | |||
link : "https://themefisher.com" | |||
# portfolio item loop | |||
- name : Sound system | |||
@@ -17,7 +17,7 @@ portfolio: | |||
image_webp : images/portfolio/portfolio-2.webp | |||
categories : ["development"] | |||
content : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! | |||
link : "#" | |||
link : "" | |||
# portfolio item loop | |||
- name : Clock Product |
@@ -9,7 +9,7 @@ portfolio: | |||
image_webp : images/portfolio/portfolio-1.webp | |||
categories : ["design"] | |||
content : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! | |||
link : "#" | |||
link : "https://themefisher.com" | |||
# portfolio item loop | |||
- name : Sound system | |||
@@ -17,7 +17,7 @@ portfolio: | |||
image_webp : images/portfolio/portfolio-2.webp | |||
categories : ["development"] | |||
content : Lorem ipsum dolor sit amet consectetur adipisicing elit. Ullam, nemo! | |||
link : "#" | |||
link : "" | |||
# portfolio item loop | |||
- name : Clock Product |
@@ -50,7 +50,13 @@ | |||
data-lightbox="image-1"> | |||
<i class="ti-search"></i> | |||
</a> | |||
<h4 class="mt-3"><a href="{{ .link | safeURL }}">{{ .name }}</a></h4> | |||
<h4 class="mt-3"> | |||
{{ if or (eq .link "#") (eq .link "") }} | |||
{{ .name }} | |||
{{ else }} | |||
<a href="{{ .link | safeURL }}">{{ .name }}</a> | |||
{{ end }} | |||
</h4> | |||
<p>{{ .content | markdownify }}</p> | |||
</div> | |||
</div> |