Skip to content

Commit fe76fb7

Browse files
committed
Infer news dates from filenames.
1 parent b2d42ca commit fe76fb7

14 files changed

+7
-16
lines changed

hakyll.hs

+7-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ main = hakyllWith defaultConfiguration $ do
2121
route $ setExtension ".html"
2222
compile $ pandocCompiler
2323
>>= saveSnapshot "content"
24-
>>= loadAndApplyTemplate "templates/news.html" defaultContext
25-
>>= loadAndApplyTemplate "templates/wrapper.html" defaultContext
24+
>>= loadAndApplyTemplate "templates/news.html" postContext
25+
>>= loadAndApplyTemplate "templates/wrapper.html" postContext
2626
>>= relativizeUrls
2727

2828
-- Build index page with paginated news list
@@ -36,7 +36,7 @@ main = hakyllWith defaultConfiguration $ do
3636
entries <- recentFirst =<< loadAll pattern
3737
let ctx = dropField "title" $
3838
paginateContext paginator pageNum <>
39-
listField "entries" (excerptField "content" <> defaultContext) (return entries) <>
39+
listField "entries" (excerptField "content" <> postContext) (return entries) <>
4040
defaultContext
4141
makeItem ""
4242
>>= loadAndApplyTemplate "templates/newslist.html" ctx
@@ -50,6 +50,10 @@ main = hakyllWith defaultConfiguration $ do
5050
>>= loadAndApplyTemplate "templates/wrapper.html" defaultContext
5151
>>= relativizeUrls
5252

53+
-- | Context for rendering posts: infer the date from the filename.
54+
postContext :: Context String
55+
postContext = dateField "date" "%B %e, %Y" <> defaultContext
56+
5357
-- | Extract the first non-blank line from a news post.
5458
excerptField :: Snapshot -> Context String
5559
excerptField snapshot = field "excerpt" $ \item -> do

news/2014-01-20-bytemark-sponsorship.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: HackSoc Sponsored by Bytemark
3-
date: 2014-01-20 18:00:00 +0000
43
---
54

65
As you may know, over the Christmas break, [Bytemark][] very kindly

news/2014-01-20-website-changes.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: Website Changes
3-
date: 2014-01-20
43
---
54

65
You may have noticed that the website now looks subtly different.

news/2014-01-22-agm.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM Week 5
3-
date: 2014-01-22 00:00:00 +0000
43
---
54

65
As you may know, this term we are having our AGM! We need to hold

news/2014-01-29-agm-update.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM Update
3-
date: 2014-01-29 00:00:00 +0000
43
---
54

65
**The AGM will be held on Friday the 7th of February, at 19:30, in

news/2014-02-08-agm-results.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM Results
3-
date: 2014-02-08 00:00:00 +0000
43
---
54

65
Same bat-committee, same bat-society.

news/2014-11-14-mini-game-jame.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: Mini Game Jam
3-
date: 2014-11-14 18:12:00 +0000
43
---
54

65

news/2015-02-26-agm-results.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM results
3-
date: 2015-02-26 00:00:00 +0000
43
---
54

65
The committee is dead, long live the committee!

news/2015-07-31-egm-results.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: EGM results
3-
date: 2015-07-31 00:00:00 +0000
43
---
54

65
Congratulations to Oliver Downard who is our new secretary, replacing Michael Mokrysz! He was voted in with 6 votes, 3 abstentions and 1 vote for re-open nominations!

news/2016-02-07-agm.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM Week 7
3-
date: 2016-02-7 00:00:00 +0000
43
---
54

65
Coming up later this term is our Annual General Meeting (AGM), when we elect

news/2016-02-21-agm-results.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM Results
3-
date: 2016-02-21
43
---
54

65
We held the AGM on Friday, and have a new committee! We'll be having a

news/2017-01-16-workshop.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: Introduction to Programming Workshop
3-
date: 2017-01-16
43
---
54

65
Have you ever considered giving coding a try? The society for Computer Science, HackSoc, is hosting an introductory workshop on Python programming for beginners as part of the YUSU Give It A Go week, with no experience required.

news/2017-02-05-agm.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM Week 8
3-
date: 2017-02-05 00:00:00 +0000
43
---
54

65
Coming up later this term is our Annual General Meeting (AGM), when we elect a brand new committee to be in charge of the society's day-to-day operations. This is your opportunity to run for a committee position, and take charge.

news/2017-03-03-agm-results.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: AGM Results 2017!
3-
date: 2017-03-03
43
---
54

65
After an exciting committee election at the AGM, we have elected a new committee of HackSoc!

0 commit comments

Comments
 (0)