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
@media only screen and (device-width: 768px) { | |
/* For general iPad layouts */ | |
} | |
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) { | |
/* For portrait layouts only */ | |
} | |
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) { | |
/* For landscape layouts only */ |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
# Location (from root) to save form submissions | |
submission_save_path: _content/_forms/ | |
# Prefix your files with a string which are saved in the format: | |
# YYYY-MM-DD-HH-MM-SS.yaml | |
file_prefix: book-awards | |
# Prefix your files with a string which are saved in the format: | |
# YYYY-MM-DD-HH-MM-SS.yaml | |
# file_suffix: - {{ name }} |
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
{{ if raven:success }} | |
<h1>Thank You!</h1> | |
{{ first-name }} | |
{{ last-name }} | |
{{ from }} | |
{{ phone }} | |
{{ book-title }} | |
{{ book-publisher }} | |
{{ author-name }} |
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
{% assign count = '0' %} | |
{% assign idx = '0' %} | |
{% for post in site.posts reversed %} | |
{% if post.series == page.series %} | |
{% capture count %}{{ count | plus: '1' }}{% endcapture %} | |
{% if post.url == page.url %} | |
{% capture idx %}{{count}}{% endcapture %} | |
{% endif %} | |
{% endif %} | |
{% endfor %} |
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
Link to paragraphs within a text, via https://github.com/benbalter/benbalter.github.com | |
//Include the following css: | |
.header-link { | |
position: absolute; | |
left: -0.5em; | |
opacity: 0; |
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
<!-- TODO: add og, twitter card --> | |
{% comment %} | |
http://ogp.me/ | |
{% endcomment %} | |
<meta name="description" content="{% if page.tagline %}{{page.tagline}}{% endif %}"> | |
{% if page.categories %} | |
{% for category in page.categories limit:1 %} | |
<meta content="{{ category }}" property="article:section"> |
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
this is now located at: https://github.com/budparr/jekyll-calendar | |
// REQUIRES MOMENT.JS AND UNDERSCORE.JS | |
// This still needs to be templated and cleaned up and commented. | |
// original idea came from (I think) seattlehacks.com | |
// you will need to add events via a JSON file | |
// OR use this YAML to have content people create lists of events https://gist.github.com/budparr/5b21dccf318e723834e9 | |
// use this JSON generator to create JSON for list below https://gist.github.com/budparr/ee901ba06f29cf1db637 | |
var timing = function(start, 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
- | |
title: | |
venue: | |
address: | |
city-state: | |
zip: | |
website: | |
allday: true | |
start: 2014-06-11 18:00:00 | |
end: 2014-06-11 19:30:00 |
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: none | |
--- | |
{"events": [{% assign first = true %} | |
{% for post in site.data.events reversed %} | |
{% if first == false %},{% endif %} | |
{% if first == true %}{% assign first = false %}{% endif %} | |
{ | |
"name" : "{{ post.title }}", | |
"allday" : "{{ post.allday }}", |
OlderNewer