diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-29 14:01:06 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-29 14:01:06 -0400 |
commit | ea349cdfbfa4d42110099e49a8ff23f7213cd5b6 (patch) | |
tree | aca4c6c7646207fe295197695b0cf87ee2a46913 /themes/classic/source/_includes/head.html | |
parent | ce6621724c8d13530681724528b22e1c381f0dc2 (diff) | |
download | my_new_personal_website-ea349cdfbfa4d42110099e49a8ff23f7213cd5b6.tar.xz my_new_personal_website-ea349cdfbfa4d42110099e49a8ff23f7213cd5b6.zip |
Moved themes to .themes to get it out of the way. Updated Rakefile to support .themes dir and remove duplication. Improved deploy task. Renamed init_deploy to cofig_deploy and rewrote it to update configurations in the Rakefile for easier deploy use
Diffstat (limited to 'themes/classic/source/_includes/head.html')
-rw-r--r-- | themes/classic/source/_includes/head.html | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/themes/classic/source/_includes/head.html b/themes/classic/source/_includes/head.html deleted file mode 100644 index a4eec3d3..00000000 --- a/themes/classic/source/_includes/head.html +++ /dev/null @@ -1,35 +0,0 @@ -<!DOCTYPE html> -<!--[if IEMobile 7 ]><html class="no-js iem7" manifest="default.appcache?v=1"><![endif]--> -<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]--> -<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" manifest="default.appcache?v=1" lang="en"><!--<![endif]--> -<head> - <meta charset="utf-8"> - {% if page.title %} - <title>{{site.title}}: {{page.title}}{% if site.author %} - {{ site.author }}{% endif %}</title> - {% else %} - <title>{{site.title}}{% if site.author %} - {{ site.author }}{% endif %}</title> - {% endif %} - <meta name="author" content="{{site.author}}"> - {% if page.description %} - <meta name="description" content="{{page.description}}"/> - {% endif %} - - <!-- http://t.co/dKP3o1e --> - <meta name="HandheldFriendly" content="True"> - <meta name="MobileOptimized" content="320"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - - {% if page.keywords %} - <meta name="keywords" content="{{page.keywords}}"/> - {% endif %} - - <link href="/images/favicon.png" rel="shortcut icon" /> - <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> - <script src="/javascripts/modernizr-2.0.js"></script> - <script src="http://s3.amazonaws.com/ender-js/jeesh.min.js"></script> - <script src="/javascripts/octopress.js" type="text/javascript"></script> - <link href='http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'> - <link href='http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'> - {% include google_analytics.html %} - <link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> -</head> |