Skip to content

Commit

Permalink
Merge pull request #79 from katzenpost/new_version_docsy_hugo
Browse files Browse the repository at this point in the history
New version docsy hugo
  • Loading branch information
david415 authored Dec 7, 2024
2 parents 5021b92 + 3844af3 commit 4592ea2
Show file tree
Hide file tree
Showing 2,084 changed files with 162,328 additions and 212 deletions.
47 changes: 0 additions & 47 deletions README.md

This file was deleted.

5 changes: 5 additions & 0 deletions archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
date = '{{ .Date }}'
draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++
55 changes: 55 additions & 0 deletions config/_default/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@

baseURL = '/'
languageCode = 'en-us'
title = 'Katzenpost'
contentDir = 'content/en'
defaultContentLanguage = 'en'
defaultContentLanguageInSubdir = false
enableMissingTranslationPlaceholders = true
enableRobotsTXT = true
enableGitInfo = true

[taxonomies]
tag = 'tags'
category = 'categories'
pygmentsCodeFences = true
pygmentsUseClasses = false
pygmentsUseClassic = false
pygmentsStyle = 'tango'

[permalinks]
[page]
pages = "/:slug"
[section]
blog = "/blog/:slug"

[imaging]
resampleFilter = "CatmullRom"
quality = 75
anchor = "smart"

[languages]
[languages.en]
languageName = "English"
weight = 1
[languages.en.params]
title = "Katzenpost"
description = "A next generation privacy preserving mixnet with post-quantum cryptography"


[markup]
[markup.goldmark]
[markup.goldmark.parser]
[markup.goldmark.parser.attribute]
block = true
[markup.goldmark.parser.renderer]
unsafe = true
[markup.highlight]
style = "tango"
[markup.goldmark.renderer]
unsafe = true

[module]
proxy = "direct"
[[module.imports]]
path = "github.com/google/docsy"
59 changes: 0 additions & 59 deletions config/_default/config.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions config/_default/menus.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
main:
- name: "Values"
weight: 10
url: "/moral-character"
- name: "Code"
weight: 50
url: "https://github.com/katzenpost"
Expand Down
4 changes: 2 additions & 2 deletions config/_default/params.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
copyright: "Katzenpost"
privacy_policy: "/privacy"
privacy_policy: "/pages/privacy"
version_menu: "Releases"
archived_version: false
version: '0.0'
Expand All @@ -24,7 +24,7 @@ taxonomy:

ui:
breadcrumb_disable: false
footer_about_disable: true
footer_about_enable: false
navbar_logo: true
navbar_translucent_over_cover_disable: true
sidebar_menu_compact: true
Expand Down
6 changes: 3 additions & 3 deletions content/en/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ specializing in mixnet protocols.
<!-- Triplet Section: Gray -->
{{% blocks/section color="dark" type="row" %}}

{{% blocks/feature icon="fa fa-file-powerpoint" title="Presentations" url="/presentations" %}}
{{% blocks/feature icon="fa fa-file-powerpoint" title="Presentations" url="/pages/presentations" %}}
Browse recent and past video/audio presentations about Katzenpost and mixnets designs.
{{% /blocks/feature %}}

{{% blocks/feature icon="fa fa-file-powerpoint" title="Katzenpost Admin Guide" url="/admin_guide" %}}
{{% blocks/feature icon="fa fa-file-powerpoint" title="Katzenpost Admin Guide" url="/pages/admin_guide" %}}
Read our extensive documentation for a better understanding of the Katzenpost server side.
NOTE that this document also covers how to run a local docker mixnet which is useful for developers.
{{% /blocks/feature %}}
Expand All @@ -40,7 +40,7 @@ mixnet protocols.
This doc, in particular, does not talk about the Katzenpost design. It does introduce the reader to some of the reasons why we've been making certain design decisions, and a keen eye might be led to some of the similar conclusions. But here we focus on already published research. We also stick to theory and don't focus on any practical systems being built today.
{{% /blocks/feature %}}

{{% blocks/feature icon="fa-users" title="Our Team" url="/team" %}}
{{% blocks/feature icon="fa-users" title="Our Team" url="/pages/team" %}}
Our team consists of world class experts.
{{% /blocks/feature %}}

Expand Down
2 changes: 1 addition & 1 deletion content/en/pages/team.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: "Katzenpost Team"
linkTitle: "Team"
description: ""
slug: "/team/"
slug: "/pages/team/"
type: "pages"
---

Expand Down
4 changes: 0 additions & 4 deletions content/en/search.md

This file was deleted.

12 changes: 5 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
module github.com/google/docsy-example
module github.com/katzenpost/website

go 1.18
go 1.23.0

require (
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 // indirect
github.com/google/docsy v0.8.0 // indirect
github.com/google/docsy/dependencies v0.7.1 // indirect
github.com/hugomods/decap-cms v0.7.0 // indirect
github.com/twbs/bootstrap v5.2.3+incompatible // indirect
github.com/google/docsy v0.11.0 // indirect
github.com/google/docsy/dependencies v0.7.2 // indirect
github.com/hugomods/decap-cms v0.16.1 // indirect
)
39 changes: 8 additions & 31 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,33 +1,10 @@
github.com/FortAwesome/Font-Awesome v0.0.0-20220831210243-d3a7818c253f h1:bvkUptSRPZBr3Kxuk+bnWCEmQ5MtEJX5fjezyV0bC3g=
github.com/FortAwesome/Font-Awesome v0.0.0-20220831210243-d3a7818c253f/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/FortAwesome/Font-Awesome v0.0.0-20221115183454-96cafbd73ec4 h1:xfr9SidRCMEh4A8fdkLhFPcHAVbrdv3Ua0Jp/nSmhhQ=
github.com/FortAwesome/Font-Awesome v0.0.0-20221115183454-96cafbd73ec4/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2 h1:Uv1z5EqCfmiK4IHUwT0m3h/u/WCk+kpRfxvAZhpC7Gc=
github.com/FortAwesome/Font-Awesome v0.0.0-20230327165841-0698449d50f2/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/google/docsy v0.5.1 h1:D/ZdFKiE29xM/gwPwQzmkyXhcbQGkReRS6aGrF7lnYk=
github.com/google/docsy v0.5.1/go.mod h1:maoUAQU5H/d+FrZIB4xg1EVWAx7RyFMGSDJyWghm31E=
github.com/google/docsy v0.6.0 h1:43bVF18t2JihAamelQjjGzx1vO2ljCilVrBgetCA8oI=
github.com/google/docsy v0.6.0/go.mod h1:VKKLqD8PQ7AglJc98yBorATfW7GrNVsn0kGXVYF6G+M=
github.com/google/docsy v0.7.0 h1:JaeZ0/KufX/BJ3SyATb/fmZa1DFI7o5d9KU+i6+lLJY=
github.com/google/docsy v0.7.0/go.mod h1:5WhIFchr5BfH6agjcInhpLRz7U7map0bcmKSpcrg6BE=
github.com/google/docsy v0.7.1 h1:DUriA7Nr3lJjNi9Ulev1SfiG1sUYmvyDeU4nTp7uDxY=
github.com/google/docsy v0.7.1/go.mod h1:JCmE+c+izhE0Rvzv3y+AzHhz1KdwlA9Oj5YBMklJcfc=
github.com/google/docsy v0.8.0 h1:RgHyKRTo8YwScMThrf01Ky2yCGpUS1hpkspwNv6szT4=
github.com/google/docsy v0.8.0/go.mod h1:FqTNN2T7pWEGW8dc+v5hQ5VF29W5uaL00PQ1LdVw5F8=
github.com/google/docsy/dependencies v0.5.1/go.mod h1:EDGc2znMbGUw0RW5kWwy2oGgLt0iVXBmoq4UOqstuNE=
github.com/google/docsy/dependencies v0.6.0/go.mod h1:EDGc2znMbGUw0RW5kWwy2oGgLt0iVXBmoq4UOqstuNE=
github.com/google/docsy/dependencies v0.7.0/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4=
github.com/google/docsy/dependencies v0.7.1 h1:NbzYKJYMin2q50xdWSUzR2c9gCp7zR/XHDBcxklEcTQ=
github.com/google/docsy/dependencies v0.7.1/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4=
github.com/hugomods/decap-cms v0.2.0 h1:7n57pKxc8LLw2WB+XOiF6PFIl/Q+DkL0tHcEwj2eLs0=
github.com/hugomods/decap-cms v0.2.0/go.mod h1:P9gUtk59PZYBCNVIqiovRPqI13WiKkutMtJl2YQLkMA=
github.com/hugomods/decap-cms v0.3.0 h1:TXv9VVQLxXTuWy50KtK8nFzEVCjGNNqsQV6GR+4hcyE=
github.com/hugomods/decap-cms v0.3.0/go.mod h1:P9gUtk59PZYBCNVIqiovRPqI13WiKkutMtJl2YQLkMA=
github.com/hugomods/decap-cms v0.6.0 h1:PzeN7kHfmh6UWME1jTgsh6z9PK/hl+VgC18N6iqqyMw=
github.com/hugomods/decap-cms v0.6.0/go.mod h1:P9gUtk59PZYBCNVIqiovRPqI13WiKkutMtJl2YQLkMA=
github.com/hugomods/decap-cms v0.7.0 h1:Gg0eKyZe/P++GTRgu0b6w0FJb5SCl+ysEHQNQ9DMTEM=
github.com/hugomods/decap-cms v0.7.0/go.mod h1:P9gUtk59PZYBCNVIqiovRPqI13WiKkutMtJl2YQLkMA=
github.com/twbs/bootstrap v4.6.2+incompatible h1:TDa+R51BTiy1wEHSYjmqDb8LxNl/zaEjAOpRE9Hwh/o=
github.com/twbs/bootstrap v4.6.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
github.com/twbs/bootstrap v5.2.3+incompatible h1:lOmsJx587qfF7/gE7Vv4FxEofegyJlEACeVV+Mt7cgc=
github.com/FortAwesome/Font-Awesome v0.0.0-20240716171331-37eff7fa00de/go.mod h1:IUgezN/MFpCDIlFezw3L8j83oeiIuYoj28Miwr/KUYo=
github.com/google/docsy v0.11.0 h1:QnV40cc28QwS++kP9qINtrIv4hlASruhC/K3FqkHAmM=
github.com/google/docsy v0.11.0/go.mod h1:hGGW0OjNuG5ZbH5JRtALY3yvN8ybbEP/v2iaK4bwOUI=
github.com/google/docsy/dependencies v0.7.2 h1:+t5ufoADQAj4XneFphz4A+UU0ICAxmNaRHVWtMYXPSI=
github.com/google/docsy/dependencies v0.7.2/go.mod h1:gihhs5gmgeO+wuoay4FwOzob+jYJVyQbNaQOh788lD4=
github.com/hugomods/decap-cms v0.16.1 h1:tfbdWv0ovx0mEcOXSVC6BVRYXolk47T8/r0RlxM+fPU=
github.com/hugomods/decap-cms v0.16.1/go.mod h1:P9gUtk59PZYBCNVIqiovRPqI13WiKkutMtJl2YQLkMA=
github.com/twbs/bootstrap v5.2.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
github.com/twbs/bootstrap v5.3.3+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
1 change: 1 addition & 0 deletions node_modules/.bin/autoprefixer

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/browserslist

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/nanoid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/postcss

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/update-browserslist-db

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4592ea2

Please sign in to comment.