Skip to content

Commit 365f668

Browse files
committedJan 19, 2018
Don't load an external stylesheet in 404 page
Before this commit the non-built css as well as an external css page from the ghost project would be loaded on the 404 page. We should load the same local css as the rest of the pages.
1 parent 295a41c commit 365f668

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎404.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<title>{{ page.title }}</title>
1818
<meta name="HandheldFriendly" content="True" />
1919
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
20-
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}assets/css/screen.css" />
21-
<link rel="stylesheet" type="text/css" href="https://demo.ghost.io/assets/built/screen.css?v=724281a32e" />
20+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}assets/built/screen.css" />
21+
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}assets/built/screen.edited.css" />
2222
<!-- This tag outputs SEO meta+structured data and other important settings -->
2323
{% include head.html %}
2424
</head>

0 commit comments

Comments
 (0)
Please sign in to comment.