Skip to content

Commit

Permalink
added docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lazydeveloper committed May 27, 2024
1 parent 7bff2ff commit 036fed6
Show file tree
Hide file tree
Showing 20 changed files with 11,309 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .idea/modules.xml

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

File renamed without changes.
1 change: 1 addition & 0 deletions .idea/vcs.xml

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

Empty file added content/docs/_index.md
Empty file.
6 changes: 6 additions & 0 deletions content/docs/first-post.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "First Post"
date: 2024-05-27T19:06:04-04:00
draft: true
---

6 changes: 6 additions & 0 deletions content/docs/new-doc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "New Doc"
date: 2024-05-27T14:10:39-04:00
draft: true
---

Empty file added content/posts/_index.md
Empty file.
Empty file added docs/.hugo_build.lock
Empty file.
5 changes: 5 additions & 0 deletions docs/archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++
10 changes: 10 additions & 0 deletions docs/assets/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"*": [
"../../../../Library/Caches/hugo_cache/modules/filecache/modules/pkg/mod/github.com/twbs/[email protected]+incompatible/js/*"
]
}
}
}
8 changes: 8 additions & 0 deletions docs/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module docs

go 1.22.3

require (
github.com/colinwilson/lotusdocs v0.1.0 // indirect
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 // indirect
)
6 changes: 6 additions & 0 deletions docs/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
github.com/colinwilson/lotusdocs v0.1.0 h1:oTC8pAYQp9XDNaUwE4SEY+id3ByNELxIIFrktYEGxYA=
github.com/colinwilson/lotusdocs v0.1.0/go.mod h1:9zu2REJDi+zdPRcR5/bRYSUR7gkNF4NQLvV38SEoCP8=
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200 h1:SmpwwN3DNzJWbV+IT8gaFu07ENUFpCvKou5BHYUKuVs=
github.com/gohugoio/hugo-mod-bootstrap-scss/v5 v5.20300.20200/go.mod h1:kx8MBj9T7SFR8ZClWvKZPmmUxBaltkoXvnWlZZcSnYA=
github.com/gohugoio/hugo-mod-jslibs-dist/popperjs/v2 v2.21100.20000/go.mod h1:mFberT6ZtcchrsDtfvJM7aAH2bDKLdOnruUHl0hlapI=
github.com/twbs/bootstrap v5.3.2+incompatible/go.mod h1:fZTSrkpSf0/HkL0IIJzvVspTt1r9zuf7XlZau8kpcY0=
15 changes: 15 additions & 0 deletions docs/hugo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
baseURL = 'https://shiva.dev/docs'
languageCode = 'en-us'
title = 'My New Hugo Site'
theme = "docs"
contentDir = "./content"
publishDir = "./public"
staticDir = "./static"

[module]
[[module.imports]]
path = "github.com/colinwilson/lotusdocs"
disable = false
[[module.imports]]
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
disable = false

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"Target":"scss/style.min.43d1c7aeea8688543ac1873a27094c3837f6b019c66e14229c8fa62469cebefe62b6001e1db6e356db2dd1cd75a1b7fd.css","MediaType":"text/css","Data":{"Integrity":"sha384-Q9HHruqGiFQ6wYc6JwlMODf2sBnGbhQinI+mJGnOvv5itgAeHbbjVtst0c11obf9"}}
Loading

0 comments on commit 036fed6

Please sign in to comment.