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
#!/usr/bin/env ruby | |
# ********************************************* | |
# Jekyll Post Generator Awesomeness | |
# by Cody Krieger (http://codykrieger.com) | |
# ********************************************* | |
# ********************************************* | |
# Modified by Tim Smith (http://ttimsmith.com) | |
# Originally created as a command line tool but |
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
require 'fileutils' | |
# An OS X System Service for quickly filing image files to a Jekyll blog folder, | |
# putting Markdown links to the files on the clipboard. | |
# Copyright Brett Terpstra 2013 | |
# Config | |
# ====== | |
# Where to store the images | |
base_path = '~/Projects/theboldreport.net/uploads/' |
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
/** | |
* Syntax highlighting | |
* Colors from SublimeText theme "Spacegray" | |
* https://github.com/kkga/spacegray | |
*/ | |
.highlight { | |
background-color: #343d46; | |
color: white; |
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
<style type="text/css"> | |
.photos { | |
display: grid; | |
grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); | |
grid-auto-rows: minmax(160px, 1fr); | |
grid-gap: 1rem; | |
margin-top: 2rem; | |
} | |
.photo { |