diff options
| author | Brandon Mathis <brandon@imathis.com> | 2013-03-09 17:14:33 -0600 |
|---|---|---|
| committer | Brandon Mathis <brandon@imathis.com> | 2013-03-09 17:14:33 -0600 |
| commit | 98013543d9bb0c51e05236498bf4fbc92af678e1 (patch) | |
| tree | 37e97b118fe9d12ea2469416adab469234501055 /.themes/classic/source/_includes/head.html | |
| parent | cf5e90962627c4ce2ea5b08d452496621eb969e3 (diff) | |
| download | my_new_personal_website-98013543d9bb0c51e05236498bf4fbc92af678e1.tar.xz my_new_personal_website-98013543d9bb0c51e05236498bf4fbc92af678e1.zip | |
Removed Twitter and Ender.js. Added jQuery and updated Modernizr
Diffstat (limited to '.themes/classic/source/_includes/head.html')
| -rw-r--r-- | .themes/classic/source/_includes/head.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.themes/classic/source/_includes/head.html b/.themes/classic/source/_includes/head.html index 8de6679f..7a727b27 100644 --- a/.themes/classic/source/_includes/head.html +++ b/.themes/classic/source/_includes/head.html @@ -16,14 +16,15 @@ <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1"> - {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{% if page.url contains site.category_dir %}/{% endif %}{{ page.url | remove:'index.html' }}{% endif %}{% endcapture %} + {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %} <link rel="canonical" href="{{ canonical }}"> <link href="{{ root_url }}/favicon.png" rel="icon"> <link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> <link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml"> - {% include custom/head.html %} <script src="{{ root_url }}/javascripts/modernizr-2.0.js"></script> - <script src="{{ root_url }}/javascripts/ender.js"></script> + <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> + <script>!window.jQuery && document.write(unescape('%3Cscript src="./javascripts/lib/jquery.min.js"%3E%3C/script%3E'))</script> <script src="{{ root_url }}/javascripts/octopress.js" type="text/javascript"></script> + {% include custom/head.html %} {% include google_analytics.html %} </head> |
