Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thingsym/hugo-theme-techdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md194
1 files changed, 98 insertions, 96 deletions
diff --git a/README.md b/README.md
index 34dd259..fe16471 100644
--- a/README.md
+++ b/README.md
@@ -58,102 +58,104 @@ For an example of `config.toml`, [config.toml](https://github.com/thingsym/hugo-
### Directory layout
```
-archetypes
- |- default.md
-exampleSite
- |- config.toml
- |- ...
-images
- |- screenshot.png
- |- tn.png
- |- ...
-layouts
- |- index.html
- |- 404.html
- |- _default
- | |- baseof.html
- | |- list.html
- | |- single.html
- |- blog
- | |- li.html
- | |- list.html
- | |- single.html
- | |- summary.html
- |- partials
- | |- content-footer.html
- | |- custom-head.html
- | |- edit-meta.html
- | |- edit-page.html
- | |- footer.html
- | |- global-menu.html
- | |- head.html
- | |- last-updated.html
- | |- menu
- | | |- open-menu.html
- | | |- slide-menu.html
- | |- meta
- | | |- chroma.html
- | | |- google-analytics-async.html
- | | |- google-site-verification.html
- | | |- metatag-manager.html
- | |- notification.html
- | |- pagination.html
- | |- powered.html
- | |- prepend-body.html
- | |- sidebar-footer.html
- | |- sidebar.html
- | |- site-header.html
- | |- table-of-contents.html
- |- posts
- | |- list.html
- | |- single.html
- |- shortcodes
- |- button.html
- |- panel.html
-node_modules
-resources
-src
- |- js
- | |- jquery.backtothetop
- | |- functions.js
- | |- main.js
- |- scss
- |- foundation
- | |- _element.scss
- | |- _normalize.scss
- | |- _reset.scss
- | |- _stack.scss
- |- function
- | |- _calc-font-size.scss
- | |- _calc-stack.scss
- | |- _contrast-color.scss
- | |- _strip-unit.scss
- |- _component.scss
- |- _foundation.scss
- |- _function.scss
- |- _project.scss
- |- _structure.scss
- |- _variable.scss
- |- chroma.scss
- |- theme.scss
-static
- |- css
- | |- chroma.css
- | |- chroma.min.css
- | |- theme.css
- | |- theme.min.css
- |- images
- |- js
- |- bundle.js
-.editorconfig
-.gitignore
-gulpfile.js
-LICENSE.md
-package-lock.json
-package.json
-README.md
-theme.toml
-webpack.config.js
+.
+├── archetypes
+│   └── default.md
+├── exampleSite
+│   ├── ..
+├── gulpfile.js
+├── images
+│   ├── ..
+├── layouts
+│   ├── 404.html
+│   ├── blog
+│   │   ├── li.html
+│   │   ├── list.html
+│   │   ├── single.html
+│   │   └── summary.html
+│   ├── _default
+│   │   ├── baseof.html
+│   │   ├── list.html
+│   │   └── single.html
+│   ├── index.html
+│   ├── partials
+│   │   ├── content-footer.html
+│   │   ├── custom-css.html
+│   │   ├── custom-head.html
+│   │   ├── edit-meta.html
+│   │   ├── edit-page.html
+│   │   ├── footer.html
+│   │   ├── global-menu.html
+│   │   ├── head.html
+│   │   ├── last-updated.html
+│   │   ├── menu
+│   │   │   ├── open-menu.html
+│   │   │   └── slide-menu.html
+│   │   ├── meta
+│   │   │   ├── chroma.html
+│   │   │   ├── google-analytics-async.html
+│   │   │   ├── google-site-verification.html
+│   │   │   └── tag-manager.html
+│   │   ├── notification.html
+│   │   ├── pagination.html
+│   │   ├── powered.html
+│   │   ├── prepend-body.html
+│   │   ├── sidebar-footer.html
+│   │   ├── sidebar.html
+│   │   ├── site-header.html
+│   │   └── table-of-contents.html
+│   ├── posts
+│   │   ├── list.html
+│   │   └── single.html
+│   └── shortcodes
+│       ├── button.html
+│       └── panel.html
+├── LICENSE.md
+├── node_modules
+│   └── ..
+├── package.json
+├── package-lock.json
+├── README.md
+├── resources
+│   └── ..
+├── src
+│   ├── js
+│   │   ├── jquery.backtothetop
+│   │   │   ├── jquery.backtothetop.js
+│   │   │   └── jquery.backtothetop.min.js
+│   │   ├── keydown-nav.js
+│   │   ├── main.js
+│   │   └── sidebar-menu.js
+│   └── scss
+│   ├── chroma.scss
+│   ├── _component.scss
+│   ├── foundation
+│   │   ├── _element.scss
+│   │   ├── _normalize.scss
+│   │   ├── _reset.scss
+│   │   └── _stack.scss
+│   ├── _foundation.scss
+│   ├── function
+│   │   ├── _calc-font-size.scss
+│   │   ├── _calc-stack.scss
+│   │   ├── _contrast-color.scss
+│   │   └── _strip-unit.scss
+│   ├── _function.scss
+│   ├── _project.scss
+│   ├── _structure.scss
+│   ├── theme.scss
+│   └── _variable.scss
+├── static
+│   ├── css
+│   │   ├── chroma.css
+│   │   ├── chroma.min.css
+│   │   ├── theme.css
+│   │   └── theme.min.css
+│   ├── images
+│   └── js
+│   └── bundle.js
+├── theme.toml
+└── webpack.config.js
```
### Preview site