A Pen by Heiswayi Nrird on CodePen.
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
.entry-content{ | |
padding-left: 0px; | |
padding-right: 0px; | |
} | |
or | |
media query... | |
.full-width >*{ | |
margin-left: 0; | |
margin-right: 0; | |
min-width: 1260px; |
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
--- | |
layout: null | |
--- | |
[ | |
{% for post in site.posts %} | |
{ | |
"title" : "{{ post.title | escape }}", | |
"url" : "{{ site.baseurl }}{{ post.url }}", | |
"tags" : "{{ post.tags | join: ', ' }}", |
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
--- | |
layout: null | |
--- | |
{ | |
{% for post in site.posts %} | |
"{{ post.url | slugify }}": { | |
"title": "{{ post.title | xml_escape }}", | |
"content" : "{{post.content | strip_html | strip_newlines | remove: " " | escape | remove: "\"}}", | |
"url": "{{ site.baseurl }}{{ post.url | xml_escape }}", |
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
[ | |
{ | |
"title" : "Google", | |
"tags" : "google, search", | |
"url" : "https://www.google.com/" | |
}, | |
{ | |
"title" : "Bing", | |
"tags" : "bing, search", | |
"url" : "https://www.bing.com/" |
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 gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
var concat = require('gulp-concat'); | |
var uglify = require('gulp-uglify'); | |
var minify = require('gulp-minify-css'); | |
var assets = { | |
'js': [ | |
"bower_components/jquery/dist/jquery.js", | |
"bower_components/highlightjs/highlight.pack.js", |
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
initialize in document.ready jquery... | |
$("[data-fancybox]").fancybox({ | |
// Options will go here | |
}); | |
gets rid of eval errors in chrome. (developer) (even if options don't work) | |
Use pure CSS for fancybox in SASS runs best for sure. (No min and No convert). |
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
Sass in GitHub Repo for fonts... | |
div.innerslick{ | |
padding: 15px; | |
} | |
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
<head> | |
<style> | |
{% capture inlineCSS %} | |
{% include main.scss %} | |
{% endcapture %} | |
{{ inlineCSS | scssify }} | |
</style> | |
</head> |
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
require "jekyll-import"; | |
JekyllImport::Importers::Blogger.run({ | |
"source" => "./blog-10-23-2017.xml", | |
"no-blogger-info" => false, # not to leave blogger-URL info (id and old URL) in the front matter | |
"replace-internal-link" => false, # replace internal links using the post_url liquid tag. | |
}) |
NewerOlder