rbcli 0.2.11 → 0.2.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rakeTasks +7 -0
- data/.rbenv-gemsets +1 -0
- data/CHANGELOG.md +22 -0
- data/Gemfile.lock +25 -24
- data/README.md +2 -2
- data/docs-src/archetypes/default.md +6 -0
- data/docs-src/config.toml +37 -0
- data/docs-src/{docs/index.md → content/_index.md} +4 -4
- data/docs-src/content/advanced/_index.md +11 -0
- data/docs-src/{docs → content}/advanced/automatic_updates.md +6 -2
- data/docs-src/{docs → content}/advanced/command_types.md +8 -4
- data/docs-src/{docs → content}/advanced/distributed_state_locking.md +6 -2
- data/docs-src/{docs → content}/advanced/hooks.md +6 -2
- data/docs-src/{docs → content}/advanced/interactive_commands.md +5 -1
- data/docs-src/{docs → content}/advanced/logging.md +6 -2
- data/docs-src/{docs → content}/advanced/remote_execution.md +5 -1
- data/docs-src/{docs → content}/advanced/state_storage.md +6 -3
- data/docs-src/{docs → content}/advanced/user_config_files.md +5 -1
- data/docs-src/content/development/_index.md +11 -0
- data/docs-src/{docs/imported → content/development}/changelog.md +58 -6
- data/docs-src/{docs → content}/development/code_of_conduct.md +8 -1
- data/docs-src/{docs → content}/development/contributing.md +16 -1
- data/docs-src/{docs → content}/development/license.md +9 -2
- data/docs-src/{docs/imported/quick_reference.md → content/quick_reference/_index.md} +8 -1
- data/docs-src/{docs → content}/tutorial/10-getting_started.md +7 -1
- data/docs-src/{docs → content}/tutorial/20-project_layout.md +10 -2
- data/docs-src/{docs → content}/tutorial/30-your_first_command.md +10 -4
- data/docs-src/{docs → content}/tutorial/40-options_parameters_and_arguments.md +9 -3
- data/docs-src/{docs → content}/tutorial/50-publishing.md +9 -3
- data/docs-src/content/tutorial/_index.md +11 -0
- data/docs-src/{docs/whoami.md → content/whoami/_index.md} +11 -5
- data/docs-src/layouts/partials/logo.html +3 -0
- data/docs-src/makesite.sh +33 -7
- data/docs-src/mkdocs-archived.tar.gz +0 -0
- data/docs-src/runsite.sh +6 -1
- data/docs-src/themes/hugo-theme-learn/.editorconfig +16 -0
- data/docs-src/themes/hugo-theme-learn/.gitignore +3 -0
- data/docs-src/themes/hugo-theme-learn/.grenrc.yml +25 -0
- data/docs-src/themes/hugo-theme-learn/CHANGELOG.md +154 -0
- data/docs-src/themes/hugo-theme-learn/LICENSE.md +22 -0
- data/docs-src/themes/hugo-theme-learn/README.md +60 -0
- data/docs-src/themes/hugo-theme-learn/archetypes/chapter.md +13 -0
- data/docs-src/themes/hugo-theme-learn/archetypes/default.md +7 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/LICENSE.md +20 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/config.toml +75 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/_index.en.md +41 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/_index.fr.md +43 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/_index.en.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/_index.fr.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/configuration/_index.en.md +58 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/configuration/_index.fr.md +54 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/installation/_index.en.md +102 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/installation/_index.fr.md +100 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/installation/images/chapter.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/requirements/_index.en.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/requirements/_index.fr.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/requirements/images/magic.gif +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/_index.en.md +194 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/_index.fr.md +194 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/images/blue-variant.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/images/green-variant.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/basics/style-customization/images/red-variant.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/_index.en.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/_index.fr.md +12 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/archetypes.en.md +57 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/archetypes.fr.md +57 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/i18n/_index.en.md +78 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/i18n/_index.fr.md +78 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/i18n/images/i18n-menu.gif +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/icons.en.md +41 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/markdown.en.md +665 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/markdown.fr.md +666 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.en.md +109 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/menushortcuts.fr.md +109 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.en.md +166 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/_index.fr.md +146 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/frontmatter-icon.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-chapter.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/pages/images/pages-default.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/tags.en.md +39 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/cont/tags.fr.md +40 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/credits.en.md +28 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/credits.fr.md +28 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.en.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/_index.fr.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/BachGavotteShort.mp3 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/Carroll_AliceAuPaysDesMerveilles.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/adivorciarsetoca00cape.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/hugo.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.files/movieselectricsheep-flock-244-32500-2.mp4 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.en.md +85 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/BachGavotteShort.mp3 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/Carroll_AliceAuPaysDesMerveilles.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/adivorciarsetoca00cape.pdf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/hugo.png +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.files/movieselectricsheep-flock-244-32500-2.mp4 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/attachments.fr.md +85 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.en.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/button.fr.md +16 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.en.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/_index.fr.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-1/children-1-1/children-1-1-1/children-1-1-1-1/children-1-1-1-1-1/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.en.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/_index.fr.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-2/test3.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-3/_index.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.en.md +7 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/children-4/_index.fr.md +7 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.en.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/children/test.fr.md +6 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.en.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/expand.fr.md +45 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.en.md +283 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/mermaid.fr.md +283 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.en.md +62 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/notice.fr.md +62 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.en.md +23 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/shortcodes/siteparam.fr.md +23 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/showcase.en.md +10 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/content/showcase.fr.md +11 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/partials/custom-footer.html +10 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/partials/logo.html +39 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/partials/menu-footer.html +14 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/layouts/shortcodes/ghcontributors.html +31 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/css/theme-mine.css +104 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.svg +237 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/fonts/monogramos-webfont.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/exampleSite/static/images/showcase/tat.png +0 -0
- data/docs-src/themes/hugo-theme-learn/i18n/en.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/es.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/fr.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/id.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/nl.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/pt.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/i18n/tr.toml +26 -0
- data/docs-src/themes/hugo-theme-learn/images/screenshot.png +0 -0
- data/docs-src/themes/hugo-theme-learn/images/tn.png +0 -0
- data/docs-src/themes/hugo-theme-learn/layouts/404.html +56 -0
- data/docs-src/themes/hugo-theme-learn/layouts/_default/list.html +22 -0
- data/docs-src/themes/hugo-theme-learn/layouts/_default/single.html +13 -0
- data/docs-src/themes/hugo-theme-learn/layouts/index.html +31 -0
- data/docs-src/themes/hugo-theme-learn/layouts/index.json +12 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/custom-comments.html +3 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/custom-footer.html +5 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/custom-header.html +5 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/favicon.html +1 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/footer.html +78 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/header.html +109 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/logo.html +19 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/menu-footer.html +1 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/menu.html +150 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/meta.html +2 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/search.html +16 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/tags.html +7 -0
- data/docs-src/themes/hugo-theme-learn/layouts/partials/toc.html +5 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/attachments.html +36 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/button.html +14 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/children.html +101 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/expand.html +17 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/mermaid.html +2 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/notice.html +2 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/ref.html +14 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/relref.html +14 -0
- data/docs-src/themes/hugo-theme-learn/layouts/shortcodes/siteparam.html +7 -0
- data/docs-src/themes/hugo-theme-learn/netlify.toml +24 -0
- data/docs-src/themes/hugo-theme-learn/static/css/atom-one-dark-reasonable.css +77 -0
- data/docs-src/themes/hugo-theme-learn/static/css/auto-complete.css +47 -0
- data/docs-src/themes/hugo-theme-learn/static/css/featherlight.min.css +8 -0
- data/docs-src/themes/hugo-theme-learn/static/css/fontawesome-all.min.css +1 -0
- data/docs-src/themes/hugo-theme-learn/static/css/hugo-theme.css +254 -0
- data/docs-src/themes/hugo-theme-learn/static/css/hybrid.css +102 -0
- data/docs-src/themes/hugo-theme-learn/static/css/nucleus.css +615 -0
- data/docs-src/themes/hugo-theme-learn/static/css/perfect-scrollbar.min.css +2 -0
- data/docs-src/themes/hugo-theme-learn/static/css/tags.css +49 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme-blue.css +111 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme-green.css +111 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme-red.css +111 -0
- data/docs-src/themes/hugo-theme-learn/static/css/theme.css +1132 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.svg +359 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Inconsolata.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.svg +1019 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-Normal-webfont.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.svg +918 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Novecentosanswide-UltraLight-webfont.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.svg +332 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_200.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.svg +331 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_300.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.svg +333 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/fonts/Work_Sans_500.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/images/clippy.svg +1 -0
- data/docs-src/themes/hugo-theme-learn/static/images/favicon.png +0 -0
- data/docs-src/themes/hugo-theme-learn/static/images/gopher-404.jpg +0 -0
- data/docs-src/themes/hugo-theme-learn/static/js/auto-complete.js +223 -0
- data/docs-src/themes/hugo-theme-learn/static/js/clipboard.min.js +7 -0
- data/docs-src/themes/hugo-theme-learn/static/js/featherlight.min.js +9 -0
- data/docs-src/themes/hugo-theme-learn/static/js/highlight.pack.js +3 -0
- data/docs-src/themes/hugo-theme-learn/static/js/html5shiv-printshiv.min.js +4 -0
- data/docs-src/themes/hugo-theme-learn/static/js/hugo-learn.js +91 -0
- data/docs-src/themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js +2 -0
- data/docs-src/themes/hugo-theme-learn/static/js/jquery.sticky.js +288 -0
- data/docs-src/themes/hugo-theme-learn/static/js/learn.js +459 -0
- data/docs-src/themes/hugo-theme-learn/static/js/lunr.min.js +6 -0
- data/docs-src/themes/hugo-theme-learn/static/js/modernizr.custom-3.6.0.js +3 -0
- data/docs-src/themes/hugo-theme-learn/static/js/perfect-scrollbar.jquery.min.js +2 -0
- data/docs-src/themes/hugo-theme-learn/static/js/perfect-scrollbar.min.js +2 -0
- data/docs-src/themes/hugo-theme-learn/static/js/search.js +93 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.css +277 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.dark.css +278 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.forest.css +356 -0
- data/docs-src/themes/hugo-theme-learn/static/mermaid/mermaid.js +8 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.svg +1260 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-brands-400.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.svg +471 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-regular-400.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.eot +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.svg +2763 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.ttf +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.woff +0 -0
- data/docs-src/themes/hugo-theme-learn/static/webfonts/fa-solid-900.woff2 +0 -0
- data/docs-src/themes/hugo-theme-learn/theme.toml +21 -0
- data/docs-src/themes/hugo-theme-learn/wercker.yml +16 -0
- data/docs/404.html +54 -670
- data/docs/advanced/automatic_updates/index.html +962 -635
- data/docs/advanced/command_types/index.html +1021 -736
- data/docs/advanced/distributed_state_locking/index.html +957 -622
- data/docs/advanced/hooks/index.html +968 -661
- data/docs/advanced/index.html +1099 -0
- data/docs/advanced/index.xml +117 -0
- data/docs/advanced/interactive_commands/index.html +960 -636
- data/docs/advanced/logging/index.html +963 -639
- data/docs/advanced/remote_execution/index.html +959 -634
- data/docs/advanced/state_storage/index.html +1049 -764
- data/docs/advanced/user_config_files/index.html +981 -649
- data/docs/categories/index.html +1094 -0
- data/docs/categories/index.xml +14 -0
- data/docs/css/atom-one-dark-reasonable.css +77 -0
- data/docs/css/auto-complete.css +47 -0
- data/docs/css/featherlight.min.css +8 -0
- data/docs/css/fontawesome-all.min.css +1 -0
- data/docs/css/hugo-theme.css +254 -0
- data/docs/css/hybrid.css +102 -0
- data/docs/css/nucleus.css +615 -0
- data/docs/css/perfect-scrollbar.min.css +2 -0
- data/docs/css/tags.css +49 -0
- data/docs/css/theme-blue.css +111 -0
- data/docs/css/theme-green.css +111 -0
- data/docs/css/theme-red.css +111 -0
- data/docs/css/theme.css +1132 -0
- data/docs/development/changelog/index.html +1368 -0
- data/docs/development/code_of_conduct/index.html +969 -687
- data/docs/development/contributing/index.html +993 -587
- data/docs/development/index.html +1099 -0
- data/docs/development/index.xml +54 -0
- data/docs/development/license/index.html +959 -579
- data/docs/fonts/Inconsolata.eot +0 -0
- data/docs/fonts/Inconsolata.svg +359 -0
- data/docs/fonts/Inconsolata.ttf +0 -0
- data/docs/fonts/Inconsolata.woff +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.eot +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.svg +1019 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.ttf +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.woff +0 -0
- data/docs/fonts/Novecentosanswide-Normal-webfont.woff2 +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.eot +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.svg +918 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.ttf +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.woff +0 -0
- data/docs/fonts/Novecentosanswide-UltraLight-webfont.woff2 +0 -0
- data/docs/fonts/Work_Sans_200.eot +0 -0
- data/docs/fonts/Work_Sans_200.svg +332 -0
- data/docs/fonts/Work_Sans_200.ttf +0 -0
- data/docs/fonts/Work_Sans_200.woff +0 -0
- data/docs/fonts/Work_Sans_200.woff2 +0 -0
- data/docs/fonts/Work_Sans_300.eot +0 -0
- data/docs/fonts/Work_Sans_300.svg +331 -0
- data/docs/fonts/Work_Sans_300.ttf +0 -0
- data/docs/fonts/Work_Sans_300.woff +0 -0
- data/docs/fonts/Work_Sans_300.woff2 +0 -0
- data/docs/fonts/Work_Sans_500.eot +0 -0
- data/docs/fonts/Work_Sans_500.svg +333 -0
- data/docs/fonts/Work_Sans_500.ttf +0 -0
- data/docs/fonts/Work_Sans_500.woff +0 -0
- data/docs/fonts/Work_Sans_500.woff2 +0 -0
- data/docs/images/clippy.svg +1 -0
- data/docs/images/favicon.png +0 -0
- data/docs/images/gopher-404.jpg +0 -0
- data/docs/imported/changelog/index.html +1208 -1020
- data/docs/imported/index.html +1191 -0
- data/docs/imported/index.xml +23 -0
- data/docs/index.html +907 -591
- data/docs/index.json +183 -0
- data/docs/index.xml +212 -0
- data/docs/js/auto-complete.js +223 -0
- data/docs/js/clipboard.min.js +7 -0
- data/docs/js/featherlight.min.js +9 -0
- data/docs/js/highlight.pack.js +3 -0
- data/docs/js/html5shiv-printshiv.min.js +4 -0
- data/docs/js/hugo-learn.js +91 -0
- data/docs/js/jquery-3.3.1.min.js +2 -0
- data/docs/js/jquery.sticky.js +288 -0
- data/docs/js/learn.js +459 -0
- data/docs/js/lunr.min.js +6 -0
- data/docs/js/modernizr.custom-3.6.0.js +3 -0
- data/docs/js/perfect-scrollbar.jquery.min.js +2 -0
- data/docs/js/perfect-scrollbar.min.js +2 -0
- data/docs/js/search.js +93 -0
- data/docs/mermaid/mermaid.css +277 -0
- data/docs/mermaid/mermaid.dark.css +278 -0
- data/docs/mermaid/mermaid.forest.css +356 -0
- data/docs/mermaid/mermaid.js +8 -0
- data/docs/quick_reference/index.html +1279 -0
- data/docs/quick_reference/index.xml +15 -0
- data/docs/sitemap.xml +135 -107
- data/docs/tags/index.html +1094 -0
- data/docs/tags/index.xml +14 -0
- data/docs/tutorial/10-getting_started/index.html +960 -649
- data/docs/tutorial/20-project_layout/index.html +1059 -778
- data/docs/tutorial/30-your_first_command/index.html +1040 -729
- data/docs/tutorial/40-options_parameters_and_arguments/index.html +1151 -868
- data/docs/tutorial/50-publishing/index.html +969 -676
- data/docs/tutorial/index.html +1099 -0
- data/docs/tutorial/index.xml +71 -0
- data/docs/webfonts/fa-brands-400.eot +0 -0
- data/docs/webfonts/fa-brands-400.svg +1260 -0
- data/docs/webfonts/fa-brands-400.ttf +0 -0
- data/docs/webfonts/fa-brands-400.woff +0 -0
- data/docs/webfonts/fa-brands-400.woff2 +0 -0
- data/docs/webfonts/fa-regular-400.eot +0 -0
- data/docs/webfonts/fa-regular-400.svg +471 -0
- data/docs/webfonts/fa-regular-400.ttf +0 -0
- data/docs/webfonts/fa-regular-400.woff +0 -0
- data/docs/webfonts/fa-regular-400.woff2 +0 -0
- data/docs/webfonts/fa-solid-900.eot +0 -0
- data/docs/webfonts/fa-solid-900.svg +2763 -0
- data/docs/webfonts/fa-solid-900.ttf +0 -0
- data/docs/webfonts/fa-solid-900.woff +0 -0
- data/docs/webfonts/fa-solid-900.woff2 +0 -0
- data/docs/whoami/index.html +947 -567
- data/docs/whoami/index.xml +15 -0
- data/exe/rbcli +1 -0
- data/lib/rbcli-tool/project.rb +6 -2
- data/lib/rbcli/version.rb +1 -1
- data/rbcli.gemspec +1 -1
- data/skeletons/project/.rakeTasks +7 -0
- data/skeletons/project/exe/executable +1 -3
- data/skeletons/project/lib/lib.erb +7 -0
- data/skeletons/project/untitled.gemspec +13 -15
- metadata +356 -65
- data/docs-src/mkdocs.yml +0 -79
- data/docs/assets/fonts/font-awesome.css +0 -4
- data/docs/assets/fonts/material-icons.css +0 -13
- data/docs/assets/fonts/specimen/FontAwesome.ttf +0 -0
- data/docs/assets/fonts/specimen/FontAwesome.woff +0 -0
- data/docs/assets/fonts/specimen/FontAwesome.woff2 +0 -0
- data/docs/assets/fonts/specimen/MaterialIcons-Regular.ttf +0 -0
- data/docs/assets/fonts/specimen/MaterialIcons-Regular.woff +0 -0
- data/docs/assets/fonts/specimen/MaterialIcons-Regular.woff2 +0 -0
- data/docs/assets/images/favicon.png +0 -0
- data/docs/assets/images/icons/bitbucket.1b09e088.svg +0 -20
- data/docs/assets/images/icons/github.f0b8504a.svg +0 -18
- data/docs/assets/images/icons/gitlab.6dd19c00.svg +0 -38
- data/docs/assets/javascripts/application.583bbe55.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.da.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.de.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.du.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.es.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.fi.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.fr.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.hu.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.it.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.jp.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.multi.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.no.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.pt.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.ro.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.ru.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.stemmer.support.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.sv.js +0 -1
- data/docs/assets/javascripts/lunr/lunr.tr.js +0 -1
- data/docs/assets/javascripts/lunr/tinyseg.js +0 -1
- data/docs/assets/javascripts/modernizr.1aa3b519.js +0 -1
- data/docs/assets/stylesheets/application-palette.22915126.css +0 -1176
- data/docs/assets/stylesheets/application.451f80e5.css +0 -2552
- data/docs/imported/quick_reference/index.html +0 -1120
- data/docs/search/search_index.json +0 -1
- data/docs/sitemap.xml.gz +0 -0
- data/skeletons/project/lib/.keep +0 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014 Grav
|
4
|
+
Copyright (c) 2016 MATHIEU CORNIC
|
5
|
+
Copyright (c) 2017 Valere JEANTET
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
8
|
+
this software and associated documentation files (the "Software"), to deal in
|
9
|
+
the Software without restriction, including without limitation the rights to
|
10
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
11
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
12
|
+
subject to the following conditions:
|
13
|
+
|
14
|
+
The above copyright notice and this permission notice shall be included in all
|
15
|
+
copies or substantial portions of the Software.
|
16
|
+
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
18
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
19
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
20
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
21
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
22
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# Hugo Learn Theme
|
2
|
+
|
3
|
+
This repository contains a theme for [Hugo](https://gohugo.io/), based on great [Grav Learn Theme](https://learn.getgrav.org/).
|
4
|
+
|
5
|
+
Visit the [theme documentation](https://learn.netlify.com/en/) to see what is going on. It is actually built with this theme.
|
6
|
+
|
7
|
+
[![wercker status](https://app.wercker.com/status/233466a2be73fcea400e7dc02ef6adf9/s/master "wercker status")](https://app.wercker.com/project/byKey/233466a2be73fcea400e7dc02ef6adf9)
|
8
|
+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmatcornic%2Fhugo-theme-learn.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmatcornic%2Fhugo-theme-learn?ref=badge_shield)
|
9
|
+
|
10
|
+
## Main features
|
11
|
+
|
12
|
+
- Automatic Search
|
13
|
+
- Multilingual mode
|
14
|
+
- Unlimited menu levels
|
15
|
+
- Automatic next/prev buttons to navigate through menu entries
|
16
|
+
- Image resizing, shadow…
|
17
|
+
- Attachments files
|
18
|
+
- List child pages
|
19
|
+
- Mermaid diagram (flowchart, sequence, gantt)
|
20
|
+
- Customizable look and feel and themes variants
|
21
|
+
- Buttons, Tip/Note/Info/Warning boxes, Expand
|
22
|
+
|
23
|
+
## Installation
|
24
|
+
|
25
|
+
Navigate to your themes folder in your Hugo site and use the following commands:
|
26
|
+
|
27
|
+
```
|
28
|
+
$ cd themes
|
29
|
+
$ git clone https://github.com/matcornic/hugo-theme-learn.git
|
30
|
+
```
|
31
|
+
|
32
|
+
Check that your Hugo version is minimum `0.25` with `hugo version`.
|
33
|
+
|
34
|
+
![Overview](https://github.com/matcornic/hugo-theme-learn/raw/master/images/tn.png)
|
35
|
+
|
36
|
+
## Usage
|
37
|
+
|
38
|
+
- [Visit the documentation](https://learn.netlify.com/en/)
|
39
|
+
|
40
|
+
## Download old versions (prior to 2.0.0)
|
41
|
+
|
42
|
+
If you need old version for compatibility purpose, either download [theme source code from releases](https://github.com/matcornic/hugo-theme-learn/releases) or use the right git tag. For example, with `1.1.0`
|
43
|
+
|
44
|
+
- Direct download way: https://github.com/matcornic/hugo-theme-learn/archive/1.1.0.zip
|
45
|
+
- Git way:
|
46
|
+
|
47
|
+
```shell
|
48
|
+
cd themes/hugo-theme-learn
|
49
|
+
git checkout tags/1.1.0
|
50
|
+
```
|
51
|
+
|
52
|
+
For both solutions, the documentation is available at https://github.com/matcornic/hugo-theme-learn/releases/download/1.1.0/hugo-learn-doc-1.1.0.zip
|
53
|
+
|
54
|
+
## Credits
|
55
|
+
|
56
|
+
Many thanks to [@vjeantet](https://github.com/vjeantet/) for the fork [docdock](https://github.com/vjeantet/hugo-theme-docdock). The v2 of this theme is mainly based on his work !
|
57
|
+
|
58
|
+
|
59
|
+
## License
|
60
|
+
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmatcornic%2Fhugo-theme-learn.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fmatcornic%2Fhugo-theme-learn?ref=badge_large)
|
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 MATHIEU CORNIC
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,75 @@
|
|
1
|
+
baseURL = "/"
|
2
|
+
languageCode = "en-US"
|
3
|
+
defaultContentLanguage = "en"
|
4
|
+
|
5
|
+
title = "Hugo Learn Documentation"
|
6
|
+
theme = "hugo-theme-learn"
|
7
|
+
themesdir = "../.."
|
8
|
+
metaDataFormat = "yaml"
|
9
|
+
defaultContentLanguageInSubdir= true
|
10
|
+
|
11
|
+
[params]
|
12
|
+
editURL = "https://github.com/matcornic/hugo-theme-learn/edit/master/exampleSite/content/"
|
13
|
+
description = "Documentation for Hugo Learn Theme"
|
14
|
+
author = "Mathieu Cornic"
|
15
|
+
showVisitedLinks = true
|
16
|
+
disableBreadcrumb = false
|
17
|
+
disableNextPrev = false
|
18
|
+
|
19
|
+
[outputs]
|
20
|
+
home = [ "HTML", "RSS", "JSON"]
|
21
|
+
|
22
|
+
[Languages]
|
23
|
+
[Languages.en]
|
24
|
+
title = "Documentation for Hugo Learn Theme"
|
25
|
+
weight = 1
|
26
|
+
languageName = "English"
|
27
|
+
|
28
|
+
[[Languages.en.menu.shortcuts]]
|
29
|
+
name = "<i class='fab fa-fw fa-github'></i> GitHub repo"
|
30
|
+
identifier = "ds"
|
31
|
+
url = "https://github.com/matcornic/hugo-theme-learn"
|
32
|
+
weight = 10
|
33
|
+
|
34
|
+
[[Languages.en.menu.shortcuts]]
|
35
|
+
name = "<i class='fas fa-fw fa-camera'></i> Showcases"
|
36
|
+
url = "showcase"
|
37
|
+
weight = 11
|
38
|
+
|
39
|
+
[[Languages.en.menu.shortcuts]]
|
40
|
+
name = "<i class='fas fa-fw fa-bookmark'></i> Hugo Documentation"
|
41
|
+
identifier = "hugodoc"
|
42
|
+
url = "https://gohugo.io/"
|
43
|
+
weight = 20
|
44
|
+
|
45
|
+
[[Languages.en.menu.shortcuts]]
|
46
|
+
name = "<i class='fas fa-fw fa-bullhorn'></i> Credits"
|
47
|
+
url = "/credits"
|
48
|
+
weight = 30
|
49
|
+
|
50
|
+
[Languages.fr]
|
51
|
+
title = "Documentation du thème Hugo Learn"
|
52
|
+
weight = 2
|
53
|
+
languageName = "Français"
|
54
|
+
|
55
|
+
[[Languages.fr.menu.shortcuts]]
|
56
|
+
name = "<i class='fab fa-fw fa-github'></i> Repo GitHub"
|
57
|
+
identifier = "ds"
|
58
|
+
url = "https://github.com/matcornic/hugo-theme-learn"
|
59
|
+
weight = 10
|
60
|
+
|
61
|
+
[[Languages.fr.menu.shortcuts]]
|
62
|
+
name = "<i class='fas fa-fw fa-camera'></i> Vitrine"
|
63
|
+
url = "/showcase"
|
64
|
+
weight = 11
|
65
|
+
|
66
|
+
[[Languages.fr.menu.shortcuts]]
|
67
|
+
name = "<i class='fas fa-fw fa-bookmark'></i> Documentation Hugo"
|
68
|
+
identifier = "hugodoc"
|
69
|
+
url = "https://gohugo.io/"
|
70
|
+
weight = 20
|
71
|
+
|
72
|
+
[[Languages.fr.menu.shortcuts]]
|
73
|
+
name = "<i class='fas fa-fw fa-bullhorn'></i> Crédits"
|
74
|
+
url = "/credits"
|
75
|
+
weight = 30
|
@@ -0,0 +1,41 @@
|
|
1
|
+
---
|
2
|
+
title: "Learn Theme for Hugo"
|
3
|
+
---
|
4
|
+
|
5
|
+
# Hugo learn theme
|
6
|
+
|
7
|
+
[Hugo-theme-learn](http://github.com/matcornic/hugo-theme-learn) is a theme for [Hugo](https://gohugo.io/), a fast and modern static website engine written in Go. Where Hugo is often used for blogs, this multilingual-ready theme is **fully designed for documentation**.
|
8
|
+
|
9
|
+
This theme is a partial porting of the [Learn theme](http://learn.getgrav.org/) of [Grav](https://getgrav.org/), a modern flat-file CMS written in PHP.
|
10
|
+
|
11
|
+
{{% notice tip %}}Learn theme works with a _page tree structure_ to organize content : All contents are pages, which belong to other pages. [read more about this]({{%relref "cont/pages/_index.md"%}})
|
12
|
+
{{% /notice %}}
|
13
|
+
|
14
|
+
## Main features
|
15
|
+
|
16
|
+
* [Automatic Search]({{%relref "basics/configuration/_index.md#activate-search" %}})
|
17
|
+
* [Multilingual mode]({{%relref "cont/i18n/_index.md" %}})
|
18
|
+
* **Unlimited menu levels**
|
19
|
+
* **Automatic next/prev buttons to navigate through menu entries**
|
20
|
+
* [Image resizing, shadow...]({{%relref "cont/markdown.en.md#images" %}})
|
21
|
+
* [Attachments files]({{%relref "shortcodes/attachments.en.md" %}})
|
22
|
+
* [List child pages]({{%relref "shortcodes/children/_index.md" %}})
|
23
|
+
* [Mermaid diagram]({{%relref "shortcodes/mermaid.en.md" %}}) (flowchart, sequence, gantt)
|
24
|
+
* [Customizable look and feel and themes variants]({{%relref "basics/style-customization/_index.md"%}})
|
25
|
+
* [Buttons]({{%relref "shortcodes/button.en.md" %}}), [Tip/Note/Info/Warning boxes]({{%relref "shortcodes/notice.en.md" %}}), [Expand]({{%relref "shortcodes/expand.en.md" %}})
|
26
|
+
|
27
|
+
![Screenshot](https://github.com/matcornic/hugo-theme-learn/raw/master/images/screenshot.png?width=40pc&classes=shadow)
|
28
|
+
|
29
|
+
## Contribute to this documentation
|
30
|
+
Feel free to update this content, just click the **Edit this page** link displayed on top right of each page, and pullrequest it
|
31
|
+
|
32
|
+
{{% notice info %}}
|
33
|
+
Your modification will be deployed automatically when merged.
|
34
|
+
{{% /notice %}}
|
35
|
+
|
36
|
+
## Documentation website
|
37
|
+
This current documentation has been statically generated with Hugo with a simple command : `hugo -t hugo-theme-learn` -- source code is [available here at GitHub](https://github.com/matcornic/hugo-theme-learn)
|
38
|
+
|
39
|
+
{{% notice note %}}
|
40
|
+
Automatically published and hosted thanks to [Netlify](https://www.netlify.com/). Read more about [Automated HUGO deployments with Netlify](https://www.netlify.com/blog/2015/07/30/hosting-hugo-on-netlifyinsanely-fast-deploys/)
|
41
|
+
{{% /notice %}}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
---
|
2
|
+
title: "Learn Theme for Hugo"
|
3
|
+
---
|
4
|
+
|
5
|
+
# Thème Hugo learn
|
6
|
+
|
7
|
+
[Hugo-theme-learn](http://github.com/matcornic/hugo-theme-learn) est un thème pour [Hugo](https://gohugo.io/), un générateur de site statique, rapide et modern, écrit en Go. Tandis que Hugo est souvent utilisé pour des blogs, ce thème multi-langue est **entièrement conçu pour la documentation**.
|
8
|
+
|
9
|
+
Ce thème est un portage partiel du [thème Learn](http://learn.getgrav.org/) de [Grav](https://getgrav.org/), un CMS modern écrit en PHP.
|
10
|
+
|
11
|
+
{{% notice tip %}}Le thème Learn fonctionne grâce à la structure de page aborescentes pour organiser le contenu: tous les contenus sont des pages qui appartiennent à d'autres pages. [Plus d'infos]({{%relref "cont/pages/_index.md"%}})
|
12
|
+
{{% /notice %}}
|
13
|
+
|
14
|
+
## Fonctionnalités principales
|
15
|
+
|
16
|
+
* [Recherche automatique]({{%relref "basics/configuration/_index.md#activer-recherche" %}})
|
17
|
+
* [Mode multi-langue]({{%relref "cont/i18n/_index.md" %}})
|
18
|
+
* **Nombre de niveau infini dans le menu**
|
19
|
+
* **Boutons suivant/précédent automatiquement générés pour naviguer entre les items du menu**
|
20
|
+
* [Taille d'image, ombres...]({{%relref "cont/markdown.fr.md#images" %}})
|
21
|
+
* [Fichiers joints]({{%relref "shortcodes/attachments.fr.md" %}})
|
22
|
+
* [Lister les pages filles]({{%relref "shortcodes/children/_index.md" %}})
|
23
|
+
* [Diagrammes Mermaid]({{%relref "shortcodes/mermaid.fr.md" %}}) (flowchart, sequence, gantt)
|
24
|
+
* [Style configurable and variantes de couleurs]({{%relref "basics/style-customization/_index.md"%}})
|
25
|
+
* [Boutons]({{%relref "shortcodes/button.fr.md" %}}), [Messages Astuce/Note/Info/Attention]({{%relref "shortcodes/notice.fr.md" %}}), [Expand]({{%relref "shortcodes/expand.fr.md" %}})
|
26
|
+
|
27
|
+
![Screenshot](https://github.com/matcornic/hugo-theme-learn/raw/master/images/screenshot.png?width=40pc&classes=shadow)
|
28
|
+
|
29
|
+
## Contribuer à cette documentation
|
30
|
+
|
31
|
+
N'hésitez pas à mettre à jour ce contenu en cliquant sur le lien **Modifier cette page** en haut de chaque page, et créer la Pull Request associée.
|
32
|
+
|
33
|
+
{{% notice info %}}
|
34
|
+
Votre modification sera déployée automatiquement quand elle sera mergée.
|
35
|
+
{{% /notice %}}
|
36
|
+
|
37
|
+
## Site de documentation
|
38
|
+
|
39
|
+
Cette documentation statique a été générée avec Hugo avec une simple commande : `hugo -t hugo-theme-learn` -- le code source est [disponible sur Github](https://github.com/matcornic/hugo-theme-learn)
|
40
|
+
|
41
|
+
{{% notice note %}}
|
42
|
+
Le site est auomatiquement publié et hébergé par [Netlify](https://www.netlify.com/). Plus d'infos sur le [déploiement de site Hugo avec Netlify](https://www.netlify.com/blog/2015/07/30/hosting-hugo-on-netlifyinsanely-fast-deploys/)(En anglais)
|
43
|
+
{{% /notice %}}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
---
|
2
|
+
date: 2016-04-09T16:50:16+02:00
|
3
|
+
title: Configuration
|
4
|
+
weight: 20
|
5
|
+
---
|
6
|
+
|
7
|
+
## Global site parameters
|
8
|
+
|
9
|
+
On top of [Hugo global configuration](https://gohugo.io/overview/configuration/), **Hugo-theme-learn** lets you define the following parameters in your `config.toml` (here, values are default).
|
10
|
+
|
11
|
+
Note that some of these parameters are explained in details in other sections of this documentation.
|
12
|
+
|
13
|
+
```toml
|
14
|
+
[params]
|
15
|
+
# Prefix URL to edit current page. Will display an "Edit this page" button on top right hand corner of every page.
|
16
|
+
# Useful to give opportunity to people to create merge request for your doc.
|
17
|
+
# See the config.toml file from this documentation site to have an example.
|
18
|
+
editURL = ""
|
19
|
+
# Author of the site, will be used in meta information
|
20
|
+
author = ""
|
21
|
+
# Description of the site, will be used in meta information
|
22
|
+
description = ""
|
23
|
+
# Shows a checkmark for visited pages on the menu
|
24
|
+
showVisitedLinks = false
|
25
|
+
# Disable search function. It will hide search bar
|
26
|
+
disableSearch = false
|
27
|
+
# Javascript and CSS cache are automatically busted when new version of site is generated.
|
28
|
+
# Set this to true to disable this behavior (some proxies don't handle well this optimization)
|
29
|
+
disableAssetsBusting = false
|
30
|
+
# Set this to true to disable copy-to-clipboard button for inline code.
|
31
|
+
disableInlineCopyToClipBoard = false
|
32
|
+
# A title for shortcuts in menu is set by default. Set this to true to disable it.
|
33
|
+
disableShortcutsTitle = false
|
34
|
+
# When using mulitlingual website, disable the switch language button.
|
35
|
+
disableLanguageSwitchingButton = false
|
36
|
+
# Hide breadcrumbs in the header and only show the current page title
|
37
|
+
disableBreadcrumb = true
|
38
|
+
# Hide Next and Previous page buttons normally displayed full height beside content
|
39
|
+
disableNextPrev = true
|
40
|
+
# Order sections in menu by "weight" or "title". Default to "weight"
|
41
|
+
ordersectionsby = "weight"
|
42
|
+
# Change default color scheme with a variant one. Can be "red", "blue", "green".
|
43
|
+
themeVariant = ""
|
44
|
+
```
|
45
|
+
|
46
|
+
## Activate search
|
47
|
+
|
48
|
+
If not already present, add the follow lines in the same `config.toml` file.
|
49
|
+
|
50
|
+
```toml
|
51
|
+
[outputs]
|
52
|
+
home = [ "HTML", "RSS", "JSON"]
|
53
|
+
```
|
54
|
+
|
55
|
+
Learn theme uses the last improvement available in hugo version 20+ to generate a json index file ready to be consumed by lunr.js javascript search engine.
|
56
|
+
|
57
|
+
> Hugo generate lunrjs index.json at the root of public folder.
|
58
|
+
> When you build the site with `hugo server`, hugo generates it internally and of course it doesn’t show up in the filesystem
|
@@ -0,0 +1,54 @@
|
|
1
|
+
---
|
2
|
+
date: 2016-04-09T16:50:16+02:00
|
3
|
+
title: Configuration
|
4
|
+
weight: 20
|
5
|
+
---
|
6
|
+
|
7
|
+
## Paramètres globaux du site
|
8
|
+
|
9
|
+
En plus de la [configuration globale d'Hugo](https://gohugo.io/overview/configuration/), **Hugo-theme-learn** vous permet de définir les paramètres suivant dans votre fichier `config.toml` (ci-dessous sont affichées les valeurs par défaut).
|
10
|
+
|
11
|
+
Notez que certains de ces paramètres sont expliqués en détails dans d'autres sections de cette documentation.
|
12
|
+
|
13
|
+
```toml
|
14
|
+
[params]
|
15
|
+
# L'URL préfixe pour éditer la page courante. Ce paramètre affichera un bouton "Modifier cette page" on haut de de chacune des pages.
|
16
|
+
# Pratique pour donner les possibilité à vos utilisateurs de créer une merge request pour votre doc.
|
17
|
+
# Allez voir le fichier config.toml de cette documentation pour avoir un exemple.
|
18
|
+
editURL = ""
|
19
|
+
# Autheur du site, est utilisé dans les informations meta
|
20
|
+
author = ""
|
21
|
+
# Description du site, est utilisé dans les informations meta
|
22
|
+
description = ""
|
23
|
+
# Affiche une icône lorsque la page a été visitée
|
24
|
+
showVisitedLinks = false
|
25
|
+
# Désactive la fonction de recherche. Une valeur à true cache la barre de recherche.
|
26
|
+
disableSearch = false
|
27
|
+
# Par défaut, le cache Javascript et CSS est automatiquement vidé lorsqu'une nouvelle version du site est générée.
|
28
|
+
# Utilisez ce paramètre lorsque vous voulez désactiver ce comportement (c'est parfois incompatible avec certains proxys)
|
29
|
+
disableAssetsBusting = false
|
30
|
+
# Utilisez ce paramètre pour désactiver le bouton copy-to-clipboard pour le code formatté sur une ligne.
|
31
|
+
disableInlineCopyToClipBoard = false
|
32
|
+
# Un titre est défini par défaut lorsque vous utilisez un raccourci dans le menu. Utilisez ce paramètre pour le cacher.
|
33
|
+
disableShortcutsTitle = false
|
34
|
+
# Quand vous utilisez un site multi-langue, utilisez ce paramètre pour désactiver le bouton de changement de langue.
|
35
|
+
disableLanguageSwitchingButton = false
|
36
|
+
# Ordonne les sections dans menu par poids ("weight") ou titre ("title"). Défaut à "weight"
|
37
|
+
ordersectionsby = "weight"
|
38
|
+
# Utilisez ce paramètre pour modifier le schéma de couleur du site. Les valeurs par défaut sont "red", "blue", "green".
|
39
|
+
themeVariant = ""
|
40
|
+
```
|
41
|
+
|
42
|
+
## Activer la recherche {#activer-recherche}
|
43
|
+
|
44
|
+
Si ce n'est pas déjà présent, ajoutez les lignes suivantes dans le fichier `config.toml`.
|
45
|
+
|
46
|
+
```toml
|
47
|
+
[outputs]
|
48
|
+
home = [ "HTML", "RSS", "JSON"]
|
49
|
+
```
|
50
|
+
|
51
|
+
Le thème *Learn* utilise les dernières amélioraions d'Hugo pour générer un fichier d'index JSON, prêt à être consommé par le moteur de recherche lunr.js.
|
52
|
+
|
53
|
+
> Hugo génère lunrjs index.json à la racine du dossier `public`.
|
54
|
+
> Quand vous générez le site avec `hugo server`, Hugo génère le fichier en mémoire, il n'est donc pas disponible sur le disque.
|
@@ -0,0 +1,102 @@
|
|
1
|
+
---
|
2
|
+
title: Installation
|
3
|
+
weight: 15
|
4
|
+
---
|
5
|
+
|
6
|
+
The following steps are here to help you initialize your new website. If you don't know Hugo at all, we strongly suggest you learn more about it by following this [great documentation for beginners](https://gohugo.io/overview/quickstart/).
|
7
|
+
|
8
|
+
## Create your project
|
9
|
+
|
10
|
+
Hugo provides a `new` command to create a new website.
|
11
|
+
|
12
|
+
```
|
13
|
+
hugo new site <new_project>
|
14
|
+
```
|
15
|
+
|
16
|
+
## Install the theme
|
17
|
+
|
18
|
+
Install the **Hugo-theme-learn** theme by following [this documentation](https://gohugo.io/themes/installing/)
|
19
|
+
|
20
|
+
This theme's repository is: https://github.com/matcornic/hugo-theme-learn.git
|
21
|
+
|
22
|
+
Alternatively, you can [download the theme as .zip](https://github.com/matcornic/hugo-theme-learn/archive/master.zip) file and extract it in the `themes` directory
|
23
|
+
|
24
|
+
## Basic configuration
|
25
|
+
|
26
|
+
When building the website, you can set a theme by using `--theme` option. However, we suggest you modify the configuration file (`config.toml`) and set the theme as the default. You can also add the `[outputs]` section to enable the search functionality.
|
27
|
+
|
28
|
+
```toml
|
29
|
+
# Change the default theme to be use when building the site with Hugo
|
30
|
+
theme = "hugo-theme-learn"
|
31
|
+
|
32
|
+
# For search functionality
|
33
|
+
[outputs]
|
34
|
+
home = [ "HTML", "RSS", "JSON"]
|
35
|
+
```
|
36
|
+
|
37
|
+
## Create your first chapter page
|
38
|
+
|
39
|
+
Chapters are pages that contain other child pages. It has a special layout style and usually just contains a _chapter name_, the _title_ and a _brief abstract_ of the section.
|
40
|
+
|
41
|
+
```
|
42
|
+
### Chapter 1
|
43
|
+
|
44
|
+
# Basics
|
45
|
+
|
46
|
+
Discover what this Hugo theme is all about and the core concepts behind it.
|
47
|
+
```
|
48
|
+
|
49
|
+
renders as
|
50
|
+
|
51
|
+
![A Chapter](/en/basics/installation/images/chapter.png?classes=shadow&width=60pc)
|
52
|
+
|
53
|
+
**Hugo-theme-learn** provides archetypes to create skeletons for your website. Begin by creating your first chapter page with the following command
|
54
|
+
|
55
|
+
```
|
56
|
+
hugo new --kind chapter basics/_index.md
|
57
|
+
```
|
58
|
+
|
59
|
+
By opening the given file, you should see the property `chapter=true` on top, meaning this page is a _chapter_.
|
60
|
+
|
61
|
+
By default all chapters and pages are created as a draft. If you want to render these pages, remove the property `draft: true` from the metadata.
|
62
|
+
|
63
|
+
## Create your first content pages
|
64
|
+
|
65
|
+
Then, create content pages inside the previously created chapter. Here are two ways to create content in the chapter:
|
66
|
+
|
67
|
+
```
|
68
|
+
hugo new basics/first-content.md
|
69
|
+
hugo new basics/second-content/_index.md
|
70
|
+
```
|
71
|
+
|
72
|
+
Feel free to edit thoses files by adding some sample content and replacing the `title` value in the beginning of the files.
|
73
|
+
|
74
|
+
## Launching the website locally
|
75
|
+
|
76
|
+
Launch by using the following command:
|
77
|
+
|
78
|
+
```
|
79
|
+
hugo serve
|
80
|
+
```
|
81
|
+
|
82
|
+
Go to `http://localhost:1313`
|
83
|
+
|
84
|
+
You should notice three things:
|
85
|
+
|
86
|
+
1. You have a left-side **Basics** menu, containing two submenus with names equal to the `title` properties in the previously created files.
|
87
|
+
2. The home page explains how to customize it by following the instructions.
|
88
|
+
3. When you run `hugo serve`, when the contents of the files change, the page automatically refreshes with the changes. Neat!
|
89
|
+
|
90
|
+
## Build the website
|
91
|
+
|
92
|
+
When your site is ready to deploy, run the following command:
|
93
|
+
|
94
|
+
```
|
95
|
+
hugo
|
96
|
+
```
|
97
|
+
|
98
|
+
A `public` folder will be generated, containing all static content and assets for your website. It can now be deployed on any web server.
|
99
|
+
|
100
|
+
{{% notice note %}}
|
101
|
+
This website can be automatically published and hosted with [Netlify](https://www.netlify.com/) (Read more about [Automated HUGO deployments with Netlify](https://www.netlify.com/blog/2015/07/30/hosting-hugo-on-netlifyinsanely-fast-deploys/)). Alternatively, you can use [Github pages](https://gohugo.io/hosting-and-deployment/hosting-on-github/)
|
102
|
+
{{% /notice %}}
|