We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc5baf7 + de3c62e commit 5cba61fCopy full SHA for 5cba61f
haskell-foundation.cabal
@@ -6,7 +6,7 @@ cabal-version: 2.0
6
executable site
7
main-is: site.hs
8
build-depends: base == 4.*
9
- , hakyll ^>= 4.14
+ , hakyll ^>= 4.14 || ^>= 4.15
10
, monadlist
11
, pandoc >=2.11 && <2.20
12
, text
site.hs
@@ -82,7 +82,7 @@ main = hakyll $ do
82
route idRoute
83
compile $ do
84
sponsors <- buildBoilerplateCtx (Just "Projects")
85
- ctx <- projectsCtx . sortOn itemIdentifier <$> loadAll "projects/*.markdown"
+ ctx <- projectsCtx . sortOn itemIdentifier <$> loadAll ("projects/*.markdown" .&&. hasNoVersion)
86
87
makeItem ""
88
>>= loadAndApplyTemplate "templates/projects/list.html" ctx
0 commit comments