diff options
author | Jakob Unterwurzacher | 2024-10-31 21:58:31 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2024-10-31 21:58:31 +0100 |
commit | 7cf6ace72e76889ac831e9807f7a9a14a4b7272b (patch) | |
tree | de72c9b27fcc787022603bbdb4267a2969bd8c30 /mkdocs.yml | |
parent | 615f0b7443d4f682ab3d28eb8ee1ea0cd21f29da (diff) |
Port to mkdocs 1.6.1
Diffstat (limited to 'mkdocs.yml')
-rw-r--r-- | mkdocs.yml | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -1,9 +1,15 @@ site_name: gocryptfs theme: name: readthedocs - custom_dir: gocryptfs-readthedocs + # https://www.mkdocs.org/user-guide/customizing-your-theme/#using-the-theme-custom_dir + custom_dir: custom_theme + highlightjs: False + logo: img/gocryptfs-logo.paths-white.svg + navigation_depth: 1 +extra_css: + - style.css plugins: [] -pages: +nav: - Home: index.md - Quickstart: quickstart.md - Compile from Source: compile.md @@ -14,3 +20,7 @@ pages: - Signed Releases: releases.md - Source Code Mirrors: mirrors.md - Contribute: contribute.md +- 'Download Binaries ➚': 'https://github.com/rfjakob/gocryptfs/releases' +- 'Changelog ➚': 'https://github.com/rfjakob/gocryptfs#changelog' +- 'Man Page ➚': 'https://github.com/rfjakob/gocryptfs/blob/master/Documentation/MANPAGE.md' +- 'Wiki ➚': 'https://github.com/rfjakob/gocryptfs/wiki' |