mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-11 19:58:28 +01:00
20 lines
518 B
Plaintext
20 lines
518 B
Plaintext
<div #blog>
|
|
<h1>#{postTitle post}
|
|
<p #author>
|
|
By #{postAuthor post}, #
|
|
<abbr title=#{show $ postTime post}>#{dateDiff now (utctDay $ postTime post)}
|
|
|
|
<article>#{postBody post}
|
|
|
|
<section #archive>
|
|
|
|
<h2>Archive
|
|
|
|
<ul>
|
|
$forall post' <- posts
|
|
<li>
|
|
<a href=@?{addPreview $ BlogPostR (postYear post') (postMonth post') (postSlug post')}>
|
|
#{postTitle post'}
|
|
—
|
|
<abbr title=#{show $ postTime post'}>#{dateDiff now (utctDay $ postTime post')}
|