From ee90bb9df8dd5f9510ad0e33be40247ec793da99 Mon Sep 17 00:00:00 2001 From: davidtsadler Date: Wed, 29 Feb 2012 22:49:51 +0000 Subject: Initial configuration. Update README. Add apple touch icons and favicon. --- .gitignore | 1 - README.md | 2 +- _config.yml | 97 +++++++++++++++++++++++++++++++ _site_build/apple-touch-icon-114x114.png | Bin 0 -> 28273 bytes _site_build/apple-touch-icon-57x57.png | Bin 0 -> 10048 bytes _site_build/apple-touch-icon-72x72.png | Bin 0 -> 13902 bytes _site_build/apple-touch-icon.png | Bin 0 -> 10048 bytes _site_build/favicon.ico | Bin 0 -> 894 bytes 8 files changed, 98 insertions(+), 2 deletions(-) create mode 100644 _config.yml create mode 100755 _site_build/apple-touch-icon-114x114.png create mode 100755 _site_build/apple-touch-icon-57x57.png create mode 100755 _site_build/apple-touch-icon-72x72.png create mode 100755 _site_build/apple-touch-icon.png create mode 100755 _site_build/favicon.ico diff --git a/.gitignore b/.gitignore index f6b364b..ff5e6b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ public _site_build/_posts -_config.yml *.swp *~ .DS_Store diff --git a/README.md b/README.md index 55ddcc5..d249be8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# JEKYLL-BLOG +# DAVIDTSADLER.COM ## License MIT License diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..d37cff8 --- /dev/null +++ b/_config.yml @@ -0,0 +1,97 @@ +# *************************** +# SITE +# *************************** + +# Set to true when building the site for production. +# Some parts of the site are only built in production mode. E.g. Google analytics code. +production: false + +# Full url for the site minus the ending forward slash. +url: http://davidtsadler.com + +# Appears in the and <header> elements within the site. +title: davidtsadler.com + +# Optional. Appears in the site's main <header> element. +subtitle: My little bit of the Internet + +# Used in various places where the author of the site needs to appear. +# For example, the copyright notice. +# Also appears in the RSS feed. +author: David T. Sadler + +# Used in the meta description tag of the site and the description element of the RSS feed. +description: The personal web site of David T. Sadler with articles and tutorials on web development and other programming. + +# Optional information that appears in the 'Contact' sidebar. +# Mainly used to generate URLs to various social sites. + +# email address of the site author. Also appears in the RSS feed if specified. +#email: + +# Twitter name minus the @ character. +twitter: davidtsadler + +# Git hub name. +github: davidtsadler + +# Facebook username +#facebook + +# Controls the number of recent posts shown on the main index page and in the RSS feed. +max_recent_posts: 10 + +# Used in the footer of the site and RSS feed. +copyright_year: 2012 + +# Optional Google analytics. +#google_ua: + +# Optional Feedburner ID. +#feedburner: + +# Optional Disqus integration. +disqus_shortname: dtscom + +# *************************** +# JEKYLL +# *************************** + +# Markdown engine that will be used. +markdown: rdiscount + +# Directory where Jekyll will look to transform files. +source: _site_build + +# Directory where Jekyll will save transformed files. +destination: public + +# Format that Jekyll will use when generating URLs to posts. +permalink: /archives/:year/:month/:day/:title/ + +pygments: true + +# *************************** +# PLUGINS +# *************************** + +# Directory where plugins are located. +plugins: _site_build/_plugins + +# Set to true to have Jekyll generate category pages for posts. +generate_category_indexes: true + +# The directory where categories will be served from. Defaults to categories +#category_dir: + +# String prefixed to the title of the category page. Defaults to Category: +#category_title_prefix: + +# String prefixed to the meta description of the category page. Defaults to Category: +#category_meta_description_prefix: + +# *************************** +# RAKE TASKS +# *************************** +# The number of test posts that will be generated by the task test_posts:create +num_test_posts: 50 diff --git a/_site_build/apple-touch-icon-114x114.png b/_site_build/apple-touch-icon-114x114.png new file mode 100755 index 0000000..cbd94f1 Binary files /dev/null and b/_site_build/apple-touch-icon-114x114.png differ diff --git a/_site_build/apple-touch-icon-57x57.png b/_site_build/apple-touch-icon-57x57.png new file mode 100755 index 0000000..c683bf9 Binary files /dev/null and b/_site_build/apple-touch-icon-57x57.png differ diff --git a/_site_build/apple-touch-icon-72x72.png b/_site_build/apple-touch-icon-72x72.png new file mode 100755 index 0000000..7498dfa Binary files /dev/null and b/_site_build/apple-touch-icon-72x72.png differ diff --git a/_site_build/apple-touch-icon.png b/_site_build/apple-touch-icon.png new file mode 100755 index 0000000..c683bf9 Binary files /dev/null and b/_site_build/apple-touch-icon.png differ diff --git a/_site_build/favicon.ico b/_site_build/favicon.ico new file mode 100755 index 0000000..43dd5df Binary files /dev/null and b/_site_build/favicon.ico differ -- cgit v1.2.3-13-gbd6f