diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-16 14:52:50 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-16 14:52:50 -0400 |
commit | 1f9b596b821685edcdaebaa885b1c6a4a22d1487 (patch) | |
tree | 4fe8f607e5cb6edaf2b8307f0b9227564d4f727e /.themes/classic/source/_includes/head.html | |
parent | f81bdbc1a8e341d9d3fe1eba3b77beadfe59b3d6 (diff) | |
download | my_new_personal_website-1f9b596b821685edcdaebaa885b1c6a4a22d1487.tar.xz my_new_personal_website-1f9b596b821685edcdaebaa885b1c6a4a22d1487.zip |
1. Added rake task for simple configuration of subdirectory deployment.
2. Updated READEME documentation regarding deploying to subdirectories.
3. Fixed related mistake in pagination and header links
Diffstat (limited to '.themes/classic/source/_includes/head.html')
-rw-r--r-- | .themes/classic/source/_includes/head.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.themes/classic/source/_includes/head.html b/.themes/classic/source/_includes/head.html index 43214921..2654ec48 100644 --- a/.themes/classic/source/_includes/head.html +++ b/.themes/classic/source/_includes/head.html @@ -19,14 +19,14 @@ <meta name="keywords" content="{{page.keywords}}"/> {% endif %} - <link href="{{ site.url }}/images/favicon.png" rel="shortcut icon" /> - <link href="{{ site.url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> - <script src="{{ site.url }}/javascripts/modernizr-2.0.js"></script> + <link href="{{ site.root }}/images/favicon.png" rel="shortcut icon" /> + <link href="{{ site.root }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> + <script src="{{ site.root }}/javascripts/modernizr-2.0.js"></script> <script src="http://s3.amazonaws.com/ender-js/jeesh.min.js"></script> - <script src="{{ site.url }}/javascripts/octopress.js" type="text/javascript"></script> + <script src="{{ site.root }}/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'> - <link href="{{ site.url }}/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> + <link href="{{ site.root }}/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> {% include google_analytics.html %} {% include google_plus_one.html %} {% include twitter_sharing.html %} |