diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-04-11 22:36:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-11 22:36:47 +0200 |
commit | a1046a910c148a2fe04ddad23c5561e62e634c33 (patch) | |
tree | 1f24e577642c4b9e72e71bd060a93ab0df94ea0d /website | |
parent | website: 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.md | 8 | ||||
-rw-r--r-- | website/haunt.scm | 3 |
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 @@ | |||
1 | title: Organizational documents | ||
2 | author: 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" |