diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-07 10:45:01 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-07 10:45:01 -0400 |
commit | d8b796acb9275e74324c3ea04324314ecbe1b664 (patch) | |
tree | 475d78d3b5ee9f5bba1bf8147e8368aa9278e4fa /source/_includes/head.html | |
parent | 8698a276f937cb1cd6f67f7f213e2ea438500d7e (diff) | |
download | my_new_personal_website-d8b796acb9275e74324c3ea04324314ecbe1b664.tar.xz my_new_personal_website-d8b796acb9275e74324c3ea04324314ecbe1b664.zip |
Another massive commit:
1. Major improvements to the responsive styling.
2. Toggleable sidebar
3. Upgraded to modernizr 2.0 which includes Respond.js
4. IE7-9 testing and fixes
5. New theming system which should make forkers happy
6. New rake task for installing Octopress themes
7. Magic
Diffstat (limited to 'source/_includes/head.html')
-rw-r--r-- | source/_includes/head.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/source/_includes/head.html b/source/_includes/head.html deleted file mode 100644 index b311ca69..00000000 --- a/source/_includes/head.html +++ /dev/null @@ -1,40 +0,0 @@ -<!DOCTYPE html> -<!--[if IEMobile 7 ]><html class="no-js iem7" manifest="default.appcache?v=1"><![endif]--> -<!--[if lt IE 7 ]><html class="no-js ie6" lang="en"><![endif]--> -<!--[if IE 7 ]><html class="no-js ie7" lang="en"><![endif]--> -<!--[if IE 8 ]><html class="no-js ie8" lang="en"><![endif]--> -<!--[if (gte IE 9)|(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="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> - <!--<script src="/javascripts/octopress.js" type="text/javascript"></script>--> - <script src="/javascripts/libs/modernizr-1.7.js"></script> - <script src="/javascripts/libs/ios-viewport-scaling-bug-fix.js"></script> - <script src="/javascripts/libs/json2.js"></script> - <script src="/javascripts/libs/jXHR.js"></script> - <script src="/javascripts/libs/ender.js"></script> - <script src="/javascripts/syntax-helper.js"></script> - {% if site.google_analytics_tracking_id %} - {% include google_analytics.html %} - {% endif %} - <link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> -</head> |