๐
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
var jimp = require('gulp-jimp'); | |
// Adds effect on all samples images. | |
gulp.task('jimp', function() { | |
gulp.src([ | |
PATHS.export_src_img + '/samples/**/*.{png,gif,jpg}', | |
PATHS.export_build_img + '/samples/**/*.{png,gif,jpg}' | |
], { | |
base: '.' | |
}) |
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
<?php | |
/** | |
* Display a link to a file inside the resume content of a resume list. | |
* | |
* This template can be overridden by copying it to yourtheme/wp-job-manager-resumes/content-resume-file.php. | |
* | |
* @see https://wpjobmanager.com/document/template-overrides/ | |
* @author Automattic | |
* @package WP Job Manager - Resume Manager | |
* @category Template |
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
<!-- Logo - Image Based --> | |
<div class="header-logo header-logo--img"> | |
<a href="index.html"><img src="assets/img/logo.png" srcset="assets/img/[email protected] 2x" alt="Necromancers"></a> | |
</div> | |
<!-- Logo - Image Based / End --> |
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
<body class="preloader-is--active bg-image bg-fixed bg--landing"> | |
<div class="site-wrapper site-layout--landing"> | |
<!-- Header | |
================================================== --> | |
<header id="header" class="site-header site-header--landing"> | |
<!-- Main Navigation Left --> | |
<nav class="main-nav"> |
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
<div class="row"> | |
<div class="col-md-6"> | |
[text* your-name placeholder "Name"] | |
</div> | |
<div class="col-md-6"> | |
[email* your-email placeholder "Email Address"] | |
</div> | |
</div> | |
[textarea your-message placeholder "Your Message..."] | |
[submit class:btn class:btn-primary class:btn-lg class:btn-block "Send Message"] |
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
var insta_feed = new Instafeed({ | |
get: 'user', | |
target: 'instagram-feed', | |
userId: 'YOUR_USER_ID', | |
accessToken: 'YOUR_ACCESS_TOKEN', | |
limit: 6, | |
template: '<li class="widget-instagram__item"><a href="{{link}}" id="{{id}}" class="widget-instagram__link-wrapper" target="_blank"><span class="widget-instagram__plus-sign"><img src="{{image}}" alt="" class="widget-instagram__img"></span></a></li>' | |
}); |