This file contains hidden or 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 locations = [ | |
['Bondi Beach', '850 Bay st 04 Toronto, Ont'], | |
['Coogee Beach', '932 Bay Street, Toronto, ON M5S 1B1'], | |
['Cronulla Beach', '61 Town Centre Court, Toronto, ON M1P'], | |
['Manly Beach', '832 Bay Street, Toronto, ON M5S 1B1'], | |
['Maroubra Beach', '606 New Toronto Street, Toronto, ON M8V 2E8'] | |
]; | |
var map = new google.maps.Map(document.getElementById('map'), { | |
zoom: 10, |
This file contains hidden or 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
## Prepare ################################################################### | |
# Remove RVM | |
rvm implode | |
# Ensure your homebrew is working properly and up to date | |
brew doctor | |
brew update | |
## Install ################################################################### |
This file contains hidden or 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
# Author: Brandon Mathis | |
# Description: Provides plugins with a method for wrapping and unwrapping input to prevent Markdown and Textile from parsing it. | |
# Purpose: This is useful for preventing Markdown and Textile from being too aggressive and incorrectly parsing in-line HTML. | |
module TemplateWrapper | |
# Wrap input with a <div> | |
def safe_wrap(input) | |
"<div class='bogus-wrapper'><notextile>#{input}</notextile></div>" | |
end | |
# This must be applied after the | |
def unwrap(input) |
This file contains hidden or 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
%icon { | |
font-family: $icon-font; //set as a variable - it's whatever your icon font name is | |
speak: none; | |
font-weight: normal; | |
font-variant: normal; | |
text-transform: none; | |
line-height: 1; | |
-webkit-font-smoothing: antialiased; | |
} |
This file contains hidden or 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
gem 'jekyll' | |
gem 'github-pages' | |
gem 'algoliasearch' |
This file contains hidden or 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
<!-- the standard loop for all your posts --> | |
{% for post in site.posts %} | |
<!-- check if there is a portfolio thing set inside the Front Matter | |
Note: Do not set "portfolio: false" on normal posts - this is not needed | |
and could lead to problems | |
--> | |
{% if post.portfolio %} | |
<!-- do nothing here --> | |
{% endif %} |
NewerOlder