summaryrefslogtreecommitdiffstats
path: root/website
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2021-04-11 22:36:47 +0200
committerLudovic Courtès <ludo@gnu.org>2021-04-11 22:36:47 +0200
commita1046a910c148a2fe04ddad23c5561e62e634c33 (patch)
tree1f24e577642c4b9e72e71bd060a93ab0df94ea0d /website
parentwebsite: Add draft kickoff blog post. (diff)
website: Add "Documents" page.
* website/documents.md: New file. * website/haunt.scm (base-layout): Add "Documents" menu entry. (static-pages): Add "/en/documents".
Diffstat (limited to 'website')
-rw-r--r--website/documents.md8
-rw-r--r--website/haunt.scm3
2 files changed, 11 insertions, 0 deletions
diff --git a/website/documents.md b/website/documents.md
new file mode 100644
index 0000000..86c0b83
--- /dev/null
+++ b/website/documents.md
@@ -0,0 +1,8 @@
1title: Organizational documents
2author: The GNU Assembly
3---
4
5# Organizational documents of the GNU Assembly
6
7 - [GNU Social Contract 1.0](/en/documents/social-contract)
8 - [Contributor Covenant Code of Conduct](/en/documents/code-of-conduct)
diff --git a/website/haunt.scm b/website/haunt.scm
index b67b668..7bed10c 100644
--- a/website/haunt.scm
+++ b/website/haunt.scm
@@ -49,6 +49,7 @@
49 (let ((locations 49 (let ((locations
50 '(("about" "About" "/") 50 '(("about" "About" "/")
51 ("software" "Software" "/en/software") 51 ("software" "Software" "/en/software")
52 ("documents" "Documents" "/en/documents")
52 ("blog" "Blog" "/en/blog")))) 53 ("blog" "Blog" "/en/blog"))))
53 `(div (@ (id "menubar") 54 `(div (@ (id "menubar")
54 (class "width-control")) 55 (class "width-control"))
@@ -147,6 +148,8 @@ representation."
147 148
148 (list (markdown-page "index.html" "index.md") 149 (list (markdown-page "index.html" "index.md")
149 150
151 (markdown-page "/en/documents/index.html"
152 "documents.md")
150 (markdown-page "/en/software/index.html" 153 (markdown-page "/en/software/index.html"
151 "software.md") 154 "software.md")
152 (markdown-page "/en/documents/free-software/index.html" 155 (markdown-page "/en/documents/free-software/index.html"