Skip to content

Commit 3cacd55

Browse files
BinderDavidBodigrim
authored andcommitted
Fix #39 (Link to logo is dead)
1 parent a6c8ad4 commit 3cacd55

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

src/site.hs

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ main = hakyll $ do
1313
route idRoute
1414
compile compressCssCompiler
1515

16+
match "static/*" $ do
17+
route idRoute
18+
compile copyFileCompiler
19+
1620
match "templates/*" $ do
1721
compile templateBodyCompiler
1822

static/haskell.svg

+6
Loading

templates/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</head>
99
<body>
1010
<nav id="menu" class="clearfix">
11-
<div class="item left logo-container clearfix"><img class="logo" src="http://www.haskell.org/static/img/logo.png" alt="Haskell Logo"><span class="logo-text">PVP.haskell.org</span></div>
11+
<div class="item left logo-container clearfix"><img class="logo" src="static/haskell.svg" alt="Haskell Logo"><span class="logo-text">PVP.haskell.org</span></div>
1212
<div class="item link left"><a href="/v1.0">PVP-1.0</a> &nbsp;&bullet;&nbsp; <a href="/v1.1">PVP-1.1-draft</a> &nbsp;&bullet;&nbsp; <a href="/faq">FAQ</a></div>
1313
</nav>
1414

0 commit comments

Comments
 (0)