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
1919import qualified Data.Map.Strict as Map
2020import Data.Maybe (fromMaybe , listToMaybe , mapMaybe )
2121import Data.Monoid (mappend )
22+ import Data.String (IsString )
2223import qualified Data.Text as T
2324import Data.Traversable
2425import Hakyll
@@ -39,6 +40,13 @@ main = hakyll $ do
3940 route idRoute
4041 compile copyFileCompiler
4142
43+ -- Necessary for Google Search Console verification
44+ let googleSiteVerification :: (IsString a ) => a
45+ googleSiteVerification = " googledf229fed7e7d2ee9.html"
46+ in create [googleSiteVerification] $ do
47+ route idRoute
48+ compile $ makeItem (" google-site-verification: " ++ googleSiteVerification)
49+
4250 match " images/*" $ do
4351 route idRoute
4452 compile copyFileCompiler
You can’t perform that action at this time.
0 commit comments