diff options
| author | Brandon Mathis <brandon@imathis.com> | 2011-07-21 23:50:32 -0400 |
|---|---|---|
| committer | Brandon Mathis <brandon@imathis.com> | 2011-07-22 00:00:18 -0400 |
| commit | 39d56bc98834b09fc6939fd27bde8848efbb251d (patch) | |
| tree | 404e6d12464884a763949215bb66081c74cf56c9 /.themes/classic/source/_includes/head.html | |
| parent | 44e1351fc71eaef7aefdc168dc9bc15b20d4bda4 (diff) | |
| download | my_new_personal_website-39d56bc98834b09fc6939fd27bde8848efbb251d.tar.xz my_new_personal_website-39d56bc98834b09fc6939fd27bde8848efbb251d.zip | |
Finally a nice solution for mapping relative urls
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 ea0cad76..34fb2222 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.root }}/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> + <link href="{{ root_url }}/favicon.png" rel="shortcut icon" /> + <link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> + <script src="{{ root_url }}/javascripts/modernizr-2.0.js"></script> <script src="http://s3.amazonaws.com/ender-js/jeesh.min.js"></script> - <script src="{{ site.root }}/javascripts/octopress.js" type="text/javascript"></script> + <script src="{{ root_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="{{ site.root }}/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml"/> + <link href="{{ root_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 %} |
