Skip to content

Commit c827600

Browse files
committed
default website with lotus, with changed header bar for hero
1 parent 48f489b commit c827600

File tree

14 files changed

+189
-0
lines changed

14 files changed

+189
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.env
2+
.netlify
3+
.hugo_build.lock
4+
node_modules
5+
public
6+
resources

assets/jsconfig.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"*": [
6+
"..\\..\\..\\..\\AppData\\Local\\hugo_cache\\modules\\filecache\\modules\\pkg\\mod\\github.com\\gohugoio\\hugo-mod-jslibs-dist\\popperjs\\[email protected]\\package\\dist\\cjs\\popper.js\\*",
7+
"..\\..\\..\\..\\AppData\\Local\\hugo_cache\\modules\\filecache\\modules\\pkg\\mod\\github.com\\twbs\\[email protected]+incompatible\\js\\*"
8+
]
9+
}
10+
}
11+
}

content/blog/_index.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Blog"
3+
description: ""
4+
summary: ""
5+
date: 2023-09-07T16:21:44+02:00
6+
lastmod: 2023-09-07T16:21:44+02:00
7+
draft: false
8+
weight: 50
9+
categories: []
10+
tags: []
11+
contributors: []
12+
pinned: false
13+
homepage: false
14+
seo:
15+
title: "" # custom title (optional)
16+
description: "" # custom description (recommended)
17+
canonical: "" # custom canonical URL (optional)
18+
noindex: false # false (default) or true
19+
---

content/blog/example/index.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: "Example Post"
3+
description: "Just an example post."
4+
summary: "You can use blog posts for announcing product updates and features."
5+
date: 2023-09-07T16:27:22+02:00
6+
lastmod: 2023-09-07T16:27:22+02:00
7+
draft: false
8+
weight: 50
9+
categories: []
10+
tags: []
11+
contributors: []
12+
pinned: false
13+
homepage: false
14+
seo:
15+
title: "" # custom title (optional)
16+
description: "" # custom description (recommended)
17+
canonical: "" # custom canonical URL (optional)
18+
noindex: false # false (default) or true
19+
---
20+
21+
Well-thought-through product announcements will help increase feature awareness and engage users with new functionality. Just like [sharing your public roadmap](https://canny.io/blog/should-you-have-a-public-roadmap/), it's also a great way to let potential customers see that you're constantly improving.
22+
23+
## Further reading
24+
25+
- Read [How to announce product updates and features](https://canny.io/blog/announce-product-updates-features/)

content/docs/spé/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
weight: 999
3+
title: "Spé"
4+
description: ""
5+
icon: "article"
6+
date: "2024-08-20T12:33:45+02:00"
7+
lastmod: "2024-08-20T12:33:45+02:00"
8+
draft: true
9+
toc: true
10+
---

content/docs/spé/tps/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
weight: 999
3+
title: "Tps"
4+
description: ""
5+
icon: "article"
6+
date: "2024-08-20T12:34:28+02:00"
7+
lastmod: "2024-08-20T12:34:28+02:00"
8+
draft: true
9+
toc: true
10+
---

content/docs/sup/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
weight: 999
3+
title: "Sup"
4+
description: ""
5+
icon: "article"
6+
date: "2024-08-20T12:30:18+02:00"
7+
lastmod: "2024-08-20T12:30:18+02:00"
8+
draft: true
9+
toc: true
10+
---

content/docs/sup/example-page.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
title = 'Example Page'
3+
date = 2024-08-20T12:02:23+02:00
4+
draft = true
5+
+++

content/sup/caca/_index.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
weight: 999
3+
title: "Caca"
4+
description: ""
5+
icon: "article"
6+
date: "2024-08-20T12:30:18+02:00"
7+
lastmod: "2024-08-20T12:30:18+02:00"
8+
draft: true
9+
toc: true
10+
---

content/sup/caca/example-page.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
title: "Code"
3+
description: ""
4+
icon: "code"
5+
date: "2023-05-22T00:44:31+01:00"
6+
lastmod: "2023-05-22T00:44:31+01:00"
7+
draft: false
8+
toc: true
9+
weight: 210
10+
---
11+
12+
{{% alert context="warning" text="The front matter `description` value for this page has been intentionally left empty in order to demonstrate FlexSearch's suggested results fallback behaviour." /%}}
13+
14+
## Code Block Examples
15+
16+
Code block language examples
17+
18+
### Go
19+
20+
```go
21+
package main
22+
23+
import "fmt"
24+
25+
func main() {
26+
fmt.Println("hello world")
27+
}
28+
```
29+
30+
### HTML
31+
32+
```html
33+
<!DOCTYPE html>
34+
<html>
35+
<body>
36+
37+
<h1>My First Heading</h1>
38+
39+
<p>My first paragraph.</p>
40+
41+
</body>
42+
</html>
43+
```
44+
45+
### Markdown
46+
47+
```md
48+
# H1 heading
49+
50+
**Some bold text**
51+
52+
*Italic text example*
53+
```

go.mod

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module my-docs-site
2+
3+
go 1.21.4
4+
5+
require github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 // indirect

go.sum

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 h1:SmpwwN3DNzJWbV+IT8gaFu07ENUFpCvKou5BHYUKuVs=
2+
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200/go.mod h1:kx8MBj9T7SFR8ZClWvKZPmmUxBaltkoXvnWlZZcSnYA=
3+
github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2 v2.21100.20000/go.mod h1:mFberT6ZtcchrsDtfvJM7aAH2bDKLdOnruUHl0hlapI=
4+
github.com/twbs/bootstrap v5.3.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=

hugo.toml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
baseURL = 'http://localhost:1313/'
2+
languageCode = 'en-us'
3+
title = 'BackToBasics'
4+
5+
[module]
6+
# uncomment line below for temporary local development of module,
7+
# when using a 'theme' as a git submodule or git cloned files
8+
replacements = "github.com/colinwilson/lotusdocs -> lotusdocs"
9+
[[module.imports]]
10+
path = "github.com/colinwilson/lotusdocs"
11+
disable = false
12+
[[module.imports]]
13+
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
14+
disable = false
15+
16+
[params]
17+
[params.docs]
18+
darkMode = true
19+
#themeColor = "blue" #blue (default), green, red, yellow, emerald, cardinal, magenta, cyan.

start-test-server.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
start chrome http://localhost:1313/
2+
hugo server -D

0 commit comments

Comments
 (0)