From a1046a910c148a2fe04ddad23c5561e62e634c33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Sun, 11 Apr 2021 22:36:47 +0200 Subject: website: Add "Documents" page. * website/documents.md: New file. * website/haunt.scm (base-layout): Add "Documents" menu entry. (static-pages): Add "/en/documents". --- website/documents.md | 8 ++++++++ website/haunt.scm | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 website/documents.md 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 @@ +title: Organizational documents +author: The GNU Assembly +--- + +# Organizational documents of the GNU Assembly + + - [GNU Social Contract 1.0](/en/documents/social-contract) + - [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 @@ (let ((locations '(("about" "About" "/") ("software" "Software" "/en/software") + ("documents" "Documents" "/en/documents") ("blog" "Blog" "/en/blog")))) `(div (@ (id "menubar") (class "width-control")) @@ -147,6 +148,8 @@ representation." (list (markdown-page "index.html" "index.md") + (markdown-page "/en/documents/index.html" + "documents.md") (markdown-page "/en/software/index.html" "software.md") (markdown-page "/en/documents/free-software/index.html" -- cgit v1.2.1