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 | f7fa865da6761ded840cdffa8f74b2cd8273df77 (patch) | |
tree | 68e13a89f2fddcc37888c9439aaf48b4564d32d5 | |
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".
-rw-r--r-- | documents.md | 8 | ||||
-rw-r--r-- | haunt.scm | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/documents.md b/documents.md new file mode 100644 index 0000000..86c0b83 --- /dev/null +++ b/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) | ||
@@ -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" |