Skip to content

Commit 2eaacb7

Browse files
committed
feat: generated faq page
1 parent 0cb8e6e commit 2eaacb7

7 files changed

+90
-3
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: How Do Projects Or Teams Affiliate With The Haskell Foundation?
3+
order: 0
4+
---
5+
Organizations and committees can review the <a href='https://docs.google.com/document/d/1sL0Nw3VEvxLT39WOkKhtR2_sOUctwVSZ_A4GDZV_mvU/edit' target='_blank'>Haskell Foundation Affiliation Documents</a> to learn more about how you can become affiliated with the Haskell Foundation. Please email <a href='mailto:[email protected]'>[email protected]</a> for more information.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: What Is The Relationship Between HF And Haskell.Org?
3+
order: 3
4+
---
5+
The Haskell.org committee has voted to affiliate with the Haskell Foundation, however the haskell.org committee remains an independent 501-3 (c) nonprofit organization. The haskell.org committee will continue to operate the haskell.org website and provide resources for Haskell infrastructure such as Hackage and the haskell mailing lists. Several members of haskell.org have helped launch HF.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: What Is The Relationship Between HF And The Community, Industry, Etc.
3+
order: 1
4+
---
5+
The goal of the Haskell Foundation is to facilitate a dialogue for improvement, and center the Haskell community and its industry in one place. Previously, there were many disparate groups consisting of volunteers and members of industry working together to improve the state of Haskell. However, some things in the ecosystem are complicated, and require organization and funding to move forward. The Haskell Foundation addresses that need, and provides a central locus and flag for these groups to rally around to coordinate work, funding, and direction.

faq/who-is-involved.markdown

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
title: Who’s Involved?
3+
order: 2
4+
---
5+
The Haskell Foundation was founded by members of the Haskell community, with help and input from existing Haskell users, committees, and industrial users. Our sponsors page includes information about the organizations who have generously provided support for the Haskell Foundation.

site.hs

+18-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import Hakyll
66
import Control.Monad (filterM)
77
import Data.List (sortOn)
8-
import Data.Ord (comparing)
98

109
--------------------------------------------------------------------------------------------------------
1110
-- MAIN GENERATION -------------------------------------------------------------------------------------
@@ -80,7 +79,7 @@ main = hakyll $ do
8079
compile $ do
8180
sponsors <- sponsorsCtx . sortOn itemIdentifier <$> loadAll "donations/sponsors/*.markdown"
8281
newsWithCategories <- recentFirst =<< loadAll "news/categories/**.html"
83-
82+
8483
let ctx =
8584
listField "categories" defaultContext (return newsWithCategories) <>
8685
defaultContext
@@ -107,6 +106,23 @@ main = hakyll $ do
107106
>>= loadAndApplyTemplate "templates/boilerplate.html" sponsors
108107
>>= relativizeUrls
109108

109+
-- faq ------------------------------------------------------------------------------------------------
110+
match "faq/*.markdown" $ compile pandocCompiler
111+
create ["faq/index.html"] $ do
112+
route idRoute
113+
compile $ do
114+
sponsors <- sponsorsCtx . sortOn itemIdentifier <$> loadAll "donations/sponsors/*.markdown"
115+
entries <- loadAll "faq/*.markdown"
116+
117+
let ctx =
118+
listField "faq_entries" defaultContext (return entries) <>
119+
defaultContext
120+
121+
makeItem ""
122+
>>= loadAndApplyTemplate "templates/faq/list.html" ctx
123+
>>= loadAndApplyTemplate "templates/boilerplate.html" sponsors
124+
>>= relativizeUrls
125+
110126
-- templates -------------------------------------------------------------------------------------------
111127
match "templates/*" $ compile templateBodyCompiler
112128
match "templates/**" $ compile templateBodyCompiler
@@ -171,7 +187,6 @@ newsWithCategoriesCtx categories =
171187
newsCtx :: Context String
172188
newsCtx = newsWithCategoriesCtx categories
173189

174-
175190
--------------------------------------------------------------------------------------------------------
176191
-- UTILS -----------------------------------------------------------------------------------------------
177192
--------------------------------------------------------------------------------------------------------

templates/faq/list.html

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<div class="max-w-screen-xl mx-auto py-16 md:py-24">
2+
<div class="sm:px-6 lg:px-16">
3+
<div class="relative">
4+
<div class="absolute top-0 left-0 border-t border-l border-purple-50 h-10 md:h-20 w-10 md:w-20">
5+
<div
6+
class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-100 h-10 md:h-20 w-10 md:w-20">
7+
<div
8+
class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-200 h-10 md:h-20 w-10 md:w-20">
9+
<div
10+
class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-300 h-10 md:h-20 w-10 md:w-20">
11+
<div
12+
class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-400 h-10 md:h-20 w-10 md:w-20">
13+
<div
14+
class="absolute top-1 md:top-2 left-1 md:left-2 border-t border-l border-purple-500 h-10 md:h-20 w-10 md:w-20">
15+
</div>
16+
</div>
17+
</div>
18+
</div>
19+
</div>
20+
</div>
21+
<div class="absolute top-0 right-0 border-t border-r border-purple-50 h-10 md:h-20 w-10 md:w-20">
22+
<div
23+
class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-100 h-10 md:h-20 w-10 md:w-20">
24+
<div
25+
class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-200 h-10 md:h-20 w-10 md:w-20">
26+
<div
27+
class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-300 h-10 md:h-20 w-10 md:w-20">
28+
<div
29+
class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-400 h-10 md:h-20 w-10 md:w-20">
30+
<div
31+
class="absolute top-1 md:top-2 right-1 md:right-2 border-t border-r border-purple-500 h-10 md:h-20 w-10 md:w-20">
32+
</div>
33+
</div>
34+
</div>
35+
</div>
36+
</div>
37+
</div>
38+
</div>
39+
</div>
40+
<div class="text-center pt-12 md:pt-20 px-12 sm:px-16 md:px-24 lg:px-36 ">
41+
<h1 class="text-2xl-5xl">FAQ</h1>
42+
</div>
43+
</div>
44+
<div class="max-w-screen-md mx-auto grid gap-8">
45+
$for(faq_entries)$
46+
$partial("templates/faq/tile.html")$
47+
$endfor$
48+
</div>

templates/faq/tile.html

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<div class="bg-gray-100 px-6 sm:px-12 space-y-4 py-12">
2+
<h2 class="font-normal text-xl-2xl">$title$</h2>
3+
$body$
4+
</div>

0 commit comments

Comments
 (0)