-
Notifications
You must be signed in to change notification settings - Fork 898
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create separate config directories for each installation type (theme …
…/ module)
- Loading branch information
Showing
4 changed files
with
64 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
To be authored: | ||
|
||
Choose installation type: | ||
|
||
* git submodules | ||
cd site-root | ||
ln -s configTheme config | ||
|
||
* git submodules | ||
cd site-root | ||
ln -s configModule config |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# This the theme configuration for Docsy. | ||
# Allowed configuration in a theme is (currently): | ||
# params (global and per language) | ||
# menu (global and per language) | ||
# outputformats and mediatypes | ||
|
||
[params] | ||
time_format_blog = "Monday, January 02, 2006" | ||
time_format_default = "January 2, 2006" | ||
# Sections to publish in the main RSS feed. | ||
rss_sections = ["blog"] | ||
|
||
[params.drawio] | ||
enable = true | ||
#drawio_server = "https://example.com/" | ||
|
||
# For a full list of parameters used in Docsy sites, see: | ||
# https://github.com/google/docsy-example/blob/master/config.toml | ||
|
||
|
||
[outputFormats] | ||
[outputFormats.PRINT] | ||
baseName = "index" | ||
isHTML = true | ||
mediaType = "text/html" | ||
path = "_print" | ||
permalinkable = false | ||
|
||
[module] | ||
_merge = "none" | ||
|
||
[module.hugoVersion] | ||
extended = true | ||
min = "0.77.0" | ||
|
||
[[module.mounts]] | ||
source = "assets/bootstrap/scss/vendor" | ||
target = "assets/vendor/bootstrap/scss/vendor" | ||
# Dependencies are brought in as modules | ||
# and mount points are declared | ||
[[module.imports]] | ||
path = "github.com/twbs/bootstrap" | ||
disable = false | ||
[[module.imports.mounts]] | ||
source = "scss" | ||
target = "assets/vendor/bootstrap/scss" | ||
|
||
[[module.imports]] | ||
path = "github.com/FortAwesome/Font-Awesome" | ||
disable = false | ||
[[module.imports.mounts]] | ||
source = "scss" | ||
target = "assets/vendor/Font-Awesome/scss" |
File renamed without changes.