Skip to content

Commit 85e59ab

Browse files
authored
new doc ui (#68)
1 parent 89e74e8 commit 85e59ab

File tree

159 files changed

+268
-2745
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+268
-2745
lines changed

.gitignore

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
!.vscode/extensions.json
66
*.code-workspace
77
.history/
8-
.hugo_build.lock
98

10-
public/*
9+
public
1110
!public/CNAME
1211
resources/*
1312
nohup.out
1413
.DS_Store
15-
trace.out
14+
trace.out
15+
.idea
16+
node_modules
17+
.hugo_build.lock

.gitmodules

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
[submodule "themes/gohugoioTheme"]
2-
path = themes/gohugoioTheme
3-
url = https://github.com/gohugoio/gohugoioTheme.git
1+
[submodule "themes/plgd"]
2+
path = themes/plgd
3+
url = git@github.com:plgd-dev/www-theme.git

config/_default/config.toml

-82
This file was deleted.

config/_default/config.yaml

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
---
2+
baseURL: 'https://docs.plgd.dev/'
3+
theme: 'plgd'
4+
title: 'plgd docs'
5+
defaultContentLanguage: en
6+
enableEmoji: true
7+
footnotereturnlinkcontents:
8+
languageCode: en-us
9+
languages:
10+
en:
11+
contentDir: content/en
12+
languageName: English
13+
weight: 1
14+
# de:
15+
# contentDir: content/de
16+
# languageName: Deutsch
17+
# weight: 2
18+
copyright: 'All Rights Reserved © 2020-{year} plgd.dev, s.r.o.'
19+
googleAnalytics: 'GTM-5B8C4RK'
20+
algolia:
21+
index: "doc"
22+
appID: "42D6VHXINQ"
23+
pluralizeListTitles: false
24+
outputs:
25+
home:
26+
- HTML
27+
- RSS
28+
- REDIR
29+
- HEADERS
30+
section:
31+
- HTML
32+
- RSS
33+
mediaTypes:
34+
text/netlify:
35+
delimiter: ''
36+
outputFormats:
37+
REDIR:
38+
mediatype: text/netlify
39+
baseName: _redirects
40+
isPlainText: true
41+
notAlternative: true
42+
HEADERS:
43+
mediatype: text/netlify
44+
baseName: _headers
45+
isPlainText: true
46+
notAlternative: true
47+
caches:
48+
getjson:
49+
dir: ':cacheDir/:project'
50+
maxAge: -1
51+
getcsv:
52+
dir: ':cacheDir/:project'
53+
maxAge: -1
54+
images:
55+
dir: ':resourceDir/_gen'
56+
maxAge: -1
57+
assets:
58+
dir: ':resourceDir/_gen'
59+
maxAge: -1
60+
related:
61+
threshold: 80
62+
includeNewer: true
63+
toLower: false
64+
indices:
65+
- name: keywords
66+
weight: 100
67+
- name: date
68+
weight: 10
69+
pattern: '2006'
70+
imaging:
71+
resampleFilter: CatmullRom
72+
quality: 75
73+
anchor: smart
74+
taxonomies:
75+
category: categories
76+
params:
77+
githubRepository: 'https://github.com/plgd-dev/doc/'
78+
---

config/_default/languages.toml

-5
This file was deleted.

config/_default/markup.toml

-27
This file was deleted.

config/_default/menus/menus.en.toml

Whitespace-only changes.

config/_default/menus/menus.en.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
global:
2+
- name: 'Features'
3+
weight: 10
4+
url: 'https://plgd.dev/#features'
5+
- name: 'References'
6+
weight: 20
7+
url: 'https://plgd.dev/#testimonials'
8+
- name: 'Docs'
9+
weight: 30
10+
url: 'https://docs.plgd.dev'
11+
- name: 'Blog'
12+
weight: 40
13+
url: 'https://plgd.dev/blog/'
14+
- name: 'Contact'
15+
weight: 50
16+
url: 'https://plgd.dev/contact/'
17+
highlighted:
18+
- name: 'Request a demo'
19+
url: '/meetings/team/'
20+
footer:
21+
- name: 'Terms & Conditions'
22+
url: ''
23+
- name: 'Privacy Notice'
24+
url: '/legal/privacy-notice'

config/_default/params.toml

-25
This file was deleted.

config/development/params.toml

-1
This file was deleted.

config/production/config.toml

-6
This file was deleted.

config/production/params.toml

-2
This file was deleted.

content/en/_index.md

-37
This file was deleted.

0 commit comments

Comments
 (0)