Skip to content

Commit

Permalink
Using absolute path for themes and shower, fixes shower#31
Browse files Browse the repository at this point in the history
  • Loading branch information
dm4 committed Oct 29, 2013
1 parent fd30de8 commit ace5c6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>{{ title | strip_html }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width={% if width %}{{ width }}{% else %}792{% endif %}, user-scalable=no">
<link rel="stylesheet" href="themes/{{ theme }}/styles/screen.css">
<link rel="stylesheet" href="/themes/{{ theme }}/styles/screen.css">
{% if page.style %}<style>
{{ page.style }}</style>{%endif%}
</head>
Expand All @@ -18,7 +18,7 @@ <h1>{{ title }}</h1>

{% if fork_url != '' %}<p class="badge"><a href="{{ fork_url }}">Fork me on Github</a></p>{% endif %}
{% if progress %}<div class="progress"><div></div></div>{% endif %}
<script src="shower/shower.min.js"></script>
<script src="/shower/shower.min.js"></script>
<!-- Copyright © {{ site.time | date: "%Y" }} {{ author_name }}{% if author_url != '' %} — {{ author_url }}{% endif %}{% if company_name != '' %}, {{ company_name }}{% if company_url != '' %} — {{ company_url }}{% endif %}{% endif %} -->
</body>
</html>

0 comments on commit ace5c6a

Please sign in to comment.