File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import qualified Data.List.NonEmpty as NE
19
19
import qualified Data.Map.Strict as Map
20
20
import Data.Maybe (fromMaybe , listToMaybe , mapMaybe )
21
21
import Data.Monoid (mappend )
22
+ import Data.String (IsString )
22
23
import qualified Data.Text as T
23
24
import Data.Traversable
24
25
import Hakyll
@@ -39,6 +40,13 @@ main = hakyll $ do
39
40
route idRoute
40
41
compile copyFileCompiler
41
42
43
+ -- Necessary for Google Search Console verification
44
+ let googleSiteVerification :: IsString a => a
45
+ googleSiteVerification = " googledf229fed7e7d2ee9.html" in
46
+ create [googleSiteVerification] $ do
47
+ route idRoute
48
+ compile $ makeItem (" google-site-verification: " ++ googleSiteVerification)
49
+
42
50
match " images/*" $ do
43
51
route idRoute
44
52
compile copyFileCompiler
You can’t perform that action at this time.
0 commit comments