Skip to content

Commit a8f3342

Browse files
author
jordanmccullough
committed
Fix relative pathng for themed pages
1 parent 01b6ad7 commit a8f3342

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

_layouts/bare.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
1313

1414
<link rel="stylesheet" media="all" href=
15-
{% if page.theme %}
16-
"../_stylesheets/page.css"
17-
{% endif %}
18-
"_stylesheets/page.css"
15+
{% if page.theme == "home" %}
16+
"_stylesheets/page.css"
17+
{% elsif page.theme %}
18+
"../_stylesheets/page.css"
19+
{% endif %}
1920
/>
2021

2122
<link rel="stylesheet"

0 commit comments

Comments
 (0)