|
1 | 1 | title: OS2BorgerPC dokumentationssite
|
2 |
| -description: Dokumentation af administrationssites, images og scripts. |
3 |
| -theme: just-the-docs |
| 2 | +description: Dokumentation af administrationssite, images og scripts. |
4 | 3 |
|
| 4 | +theme: just-the-docs |
5 | 5 | url: https://just-the-docs.github.io
|
6 | 6 |
|
7 | 7 | aux_links:
|
8 |
| - Template Repository: https://github.com/just-the-docs/just-the-docs-template |
9 |
| - |
10 |
| -collections: |
11 |
| - pages: |
12 |
| - permalink: "/:collection/:path/" |
13 |
| - output: true |
14 |
| - scripts: |
15 |
| - permalink: "/:collection/:path/" |
16 |
| - output: true |
17 |
| -just_the_docs: |
18 |
| - collections: |
19 |
| - pages: |
20 |
| - name: Sider |
21 |
| - nav_fold: false |
22 |
| - scripts: |
23 |
| - name: Scripts |
24 |
| - nav_fold: false |
25 |
| - |
| 8 | + Intro til OS2BorgerPC: https://os2.eu/os2borgerpc |
| 9 | + OS2BorgerPC på Github: https://github.com/OS2borgerPC |
| 10 | + |
| 11 | +# Makes Aux links open in a new tab. Default is false |
| 12 | +aux_links_new_tab: true |
| 13 | + |
| 14 | +# Enable or disable the side/mobile menu globally |
| 15 | +# Nav menu can also be selectively enabled or disabled using page variables or the minimal layout |
| 16 | +nav_enabled: true |
| 17 | + |
| 18 | +# Sort order for navigation links |
| 19 | +# nav_sort: case_insensitive # default, equivalent to nil |
| 20 | +nav_sort: case_sensitive # Capital letters sorted before lowercase |
| 21 | + |
| 22 | +# External navigation links |
| 23 | +nav_external_links: |
| 24 | + - title: Just the Docs on GitHub |
| 25 | + url: https://github.com/just-the-docs/just-the-docs |
| 26 | + |
| 27 | +# Show navigation error report |
| 28 | +nav_error_report: true # default is false/nil. |
| 29 | + |
| 30 | +permalink: pretty |
| 31 | + |
26 | 32 | defaults:
|
27 |
| - # _pages |
28 |
| - - scope: |
29 |
| - path: "" |
30 |
| - type: pages |
31 |
| - values: |
32 |
| - layout: default |
33 |
| - # _scripts |
34 | 33 | - scope:
|
35 |
| - path: "" |
36 |
| - type: scripts |
| 34 | + path: "docs" # an empty string here means all files in the project |
| 35 | + type: "pages" |
37 | 36 | values:
|
38 |
| - layout: script |
| 37 | + layout: "docs" |
39 | 38 | submodules:
|
40 | 39 | - "/assets/os2borgerpc-scripts/"
|
| 40 | + |
| 41 | + |
| 42 | +exclude: |
| 43 | + # from https://github.com/jekyll/jekyll/blob/master/lib/site_template/_config.yml: |
| 44 | + - .sass-cache/ |
| 45 | + - .jekyll-cache/ |
| 46 | + - gemfiles/ |
| 47 | + - Gemfile |
| 48 | + - Gemfile.lock |
| 49 | + - node_modules/ |
| 50 | + - vendor/bundle/ |
| 51 | + - vendor/cache/ |
| 52 | + - vendor/gems/ |
| 53 | + - vendor/ruby/ |
| 54 | + # specific to the theme website: |
| 55 | + - bin/ |
| 56 | + - lib/ |
| 57 | + - "*.gemspec" |
| 58 | + - "*.gem" |
| 59 | + - LICENSE.txt |
| 60 | + - package.json |
| 61 | + - package-lock.json |
| 62 | + - Rakefile |
| 63 | + - README.md |
| 64 | + - CODE_OF_CONDUCT.md |
| 65 | + - docker-compose.yml |
| 66 | + - Dockerfile |
| 67 | + # theme test code |
| 68 | + - fixtures/ |
| 69 | + |
| 70 | +# Enable or disable the site search |
| 71 | +# Supports true (default) or false |
| 72 | +search_enabled: true |
| 73 | +search: |
| 74 | + # Split pages into sections that can be searched individually |
| 75 | + # Supports 1 - 6, default: 2 |
| 76 | + heading_level: 2 |
| 77 | + # Maximum amount of previews per search result |
| 78 | + # Default: 3 |
| 79 | + previews: 2 |
| 80 | + # Maximum amount of words to display before a matched word in the preview |
| 81 | + # Default: 5 |
| 82 | + preview_words_before: 3 |
| 83 | + # Maximum amount of words to display after a matched word in the preview |
| 84 | + # Default: 10 |
| 85 | + preview_words_after: 3 |
| 86 | + # Set the search token separator |
| 87 | + # Default: /[\s\-/]+/ |
| 88 | + # Example: enable support for hyphenated search words |
| 89 | + tokenizer_separator: /[\s/]+/ |
| 90 | + # Display the relative url in search results |
| 91 | + # Supports true (default) or false |
| 92 | + rel_url: true |
| 93 | + # Enable or disable the search button that appears in the bottom right corner of every page |
| 94 | + # Supports true or false (default) |
| 95 | + button: false |
| 96 | + # Focus the search input by pressing `ctrl + focus_shortcut_key` (or `cmd + focus_shortcut_key` on macOS) |
| 97 | + focus_shortcut_key: "k" |
| 98 | + |
| 99 | +# For copy button on code |
| 100 | +enable_copy_code_button: true |
| 101 | + |
| 102 | +# By default, consuming the theme as a gem leaves mermaid disabled; it is opt-in |
| 103 | +mermaid: |
| 104 | + # Version of mermaid library |
| 105 | + # Pick an available version from https://cdn.jsdelivr.net/npm/mermaid/ |
| 106 | + version: "9.1.6" |
| 107 | + # Put any additional configuration, such as setting the theme, in _includes/mermaid_config.js |
| 108 | + # See also docs/ui-components/code |
| 109 | + # To load mermaid from a local library, also use the `path` key to specify the location of the library; e.g. |
| 110 | + # for (v10+): |
| 111 | + # path: "/assets/js/mermaid.esm.min.mjs" |
| 112 | + # for (<v10): |
| 113 | + # path: "/assets/js/mermaid.min.js" |
| 114 | + # Note: copy both `mermaid.esm.min.mjs` (v10+) or `mermaid.min.js` (<v10) and the associated `.map` file from the specified version of `mermaid/dist` to `/assets/js/`. |
| 115 | + |
| 116 | +# Enable or disable heading anchors |
| 117 | +heading_anchors: true |
| 118 | + |
| 119 | +# Aux links for the upper right navigation |
| 120 | +aux_links: |
| 121 | + "Just the Docs on GitHub": |
| 122 | + - "https://github.com/just-the-docs/just-the-docs" |
| 123 | + |
| 124 | +# Makes Aux links open in a new tab. Default is false |
| 125 | +aux_links_new_tab: false |
| 126 | + |
| 127 | +# Enable or disable the side/mobile menu globally |
| 128 | +# Nav menu can also be selectively enabled or disabled using page variables or the minimal layout |
| 129 | +nav_enabled: true |
| 130 | + |
| 131 | +# Sort order for navigation links |
| 132 | +# nav_sort: case_insensitive # default, equivalent to nil |
| 133 | +nav_sort: case_sensitive # Capital letters sorted before lowercase |
| 134 | + |
| 135 | +# External navigation links |
| 136 | +nav_external_links: |
| 137 | + - title: Just the Docs on GitHub |
| 138 | + url: https://github.com/just-the-docs/just-the-docs |
| 139 | + |
| 140 | +# Footer content |
| 141 | +# appears at the bottom of every page's main content |
| 142 | + |
| 143 | +# Back to top link |
| 144 | +back_to_top: true |
| 145 | +back_to_top_text: "Back to top" |
| 146 | + |
| 147 | +footer_content: 'Copyright © 2017-2020 Patrick Marsceill. Distributed by an <a href="https://github.com/just-the-docs/just-the-docs/tree/main/LICENSE.txt">MIT license.</a> <a href="https://www.netlify.com/">This site is powered by Netlify.</a>' |
| 148 | + |
| 149 | +# Footer last edited timestamp |
| 150 | +last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter |
| 151 | +last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html |
| 152 | + |
| 153 | +# Footer "Edit this page on GitHub" link text |
| 154 | +gh_edit_link: true # show or hide edit this page link |
| 155 | +gh_edit_link_text: "Edit this page on GitHub" |
| 156 | +gh_edit_repository: "https://github.com/just-the-docs/just-the-docs" # the github URL for your repo |
| 157 | +gh_edit_branch: "main" # the branch that your docs is served from |
| 158 | +# gh_edit_source: docs # the source that your files originate from |
| 159 | +gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately |
| 160 | + |
| 161 | + |
| 162 | + |
| 163 | +translations: |
| 164 | + checkbox: "Afkrydsningsfelt" |
| 165 | + string: "Streng" |
| 166 | + integer: "Heltal" |
| 167 | + date: "Dato" |
| 168 | + password: "Adgangskode" |
| 169 | + file: "Fil" |
| 170 | + time: "Tid" |
| 171 | + |
| 172 | + |
41 | 173 |
|
0 commit comments