diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-16 09:29:09 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-16 09:29:09 -0400 |
commit | f81bdbc1a8e341d9d3fe1eba3b77beadfe59b3d6 (patch) | |
tree | 31458d76b97e7e6af151be3bbf666bd58d7f9739 /.themes/classic/source/_includes/head.html | |
parent | 4855ef5d2f976b07d624dddb85b46075009d5a6d (diff) | |
download | my_new_personal_website-f81bdbc1a8e341d9d3fe1eba3b77beadfe59b3d6.tar.xz my_new_personal_website-f81bdbc1a8e341d9d3fe1eba3b77beadfe59b3d6.zip |
Added support and documentation for deploying to subdirectories (like
with gh-pages)
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 ff684edd..43214921 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="/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> + <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> <script src="http://s3.amazonaws.com/ender-js/jeesh.min.js"></script> - <script src="/javascripts/octopress.js" type="text/javascript"></script> + <script src="{{ site.url }}/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="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> + <link href="{{ site.url }}/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> {% include google_analytics.html %} {% include google_plus_one.html %} {% include twitter_sharing.html %} |