|
| 1 | +# Everything below this are Site Params |
| 2 | +copyright = "The OpenReports Authors" |
| 3 | + |
| 4 | +# sets the maximum number of lines per codeblock. The codeblock will however be scrollable and expandable. |
| 5 | +codeMaxLines = 0 # to enable function set >= 1 |
| 6 | + |
| 7 | +# disable showing line numbers by default. Switch to `true` if you'd rather have them on. |
| 8 | +showLineNumbers = false |
| 9 | + |
| 10 | +# Menu title if your navbar has a versions selector to access old versions of your site. |
| 11 | +# This menu appears only if you have at least one [versions] set. |
| 12 | +# version_menu = "v1.0.0" |
| 13 | + |
| 14 | +# Flag used in the "version-banner" partial to decide whether to display a |
| 15 | +# banner on every page indicating that this is an archived version of the docs. |
| 16 | +# Set this flag to "true" if you want to display the banner. |
| 17 | +archived_version = false |
| 18 | + |
| 19 | +# The version number for the version of the docs represented in this doc set. |
| 20 | +# Used in the "version-banner" partial to display a version number for the |
| 21 | +# current doc set. |
| 22 | +#version = "v1.0.0" |
| 23 | + |
| 24 | +# A link to latest version of the docs. Used in the "version-banner" partial to |
| 25 | +# point people to the main doc site. |
| 26 | +#url_latest_version = "https://openreports.io" |
| 27 | + |
| 28 | +# Repository configuration (URLs for in-page links to opening issues and suggesting changes) |
| 29 | +github_repo = "https://github.com/openreports/website" |
| 30 | +github_branch = "main" |
| 31 | + |
| 32 | +# An optional link to a related project repo. For example, the sibling repository where your product code lives. |
| 33 | +github_project_repo = "https://github.com/kyverno/kyverno" |
| 34 | + |
| 35 | +# Specify a value here if your content directory is not in your repo's root directory |
| 36 | +# github_subdir = "" |
| 37 | + |
| 38 | +# Google Custom Search Engine ID. Remove or comment out to disable search. |
| 39 | +# gcs_engine_id = "016003b0b44d00772" |
| 40 | + |
| 41 | +# Enable Lunr.js offline search |
| 42 | +offlineSearch = true |
| 43 | + |
| 44 | +# Enable syntax highlighting and copy buttons on code blocks with Prism |
| 45 | +prism_syntax_highlighting = false |
| 46 | + |
| 47 | +time_format_blog = "Monday, January 02, 2006" |
| 48 | +time_format_default = "January 02, 2006 at 3:04 PM PST" |
| 49 | + |
| 50 | +[mermaid] |
| 51 | +enable = true |
| 52 | + |
| 53 | +[[policyFilters]] |
| 54 | +title = "Policy Type" |
| 55 | +filterID = "policytype" |
| 56 | +isFixed = true |
| 57 | +weight = 1 |
| 58 | + |
| 59 | +[[policyFilters]] |
| 60 | +title = "Policy Category" |
| 61 | +filterID = "category" |
| 62 | +weight = 2 |
| 63 | + |
| 64 | +[[policyFilters]] |
| 65 | +title = "Minimum Version" # title on the UI |
| 66 | +filterID = "version" # key you used inside index.json |
| 67 | +weight = 3 |
| 68 | + |
| 69 | +[[policyFilters]] |
| 70 | +title = "Subject" # title on the UI |
| 71 | +filterID = "subject" # key you used inside index.json |
| 72 | +weight = 4 |
| 73 | + |
| 74 | +# User interface configuration |
| 75 | +[ui] |
| 76 | + |
| 77 | +# Enable to show the side bar menu in its compact state. |
| 78 | +sidebar_menu_compact = true |
| 79 | + |
| 80 | +# Set to true to disable breadcrumb navigation. |
| 81 | +breadcrumb_disable = false |
| 82 | + |
| 83 | +# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled) |
| 84 | +sidebar_search_disable = true |
| 85 | + |
| 86 | +# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar |
| 87 | +navbar_logo = false |
| 88 | + |
| 89 | +# Set to true to disable the About link in the site footer |
| 90 | +footer_about_enable = true |
| 91 | + |
| 92 | +# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events. |
| 93 | +# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set. |
| 94 | +# If you want this feature, but occasionally need to remove the "Feedback" section from a single page, |
| 95 | +# add "hide_feedback: true" to the page's front matter. |
| 96 | +[ui.feedback] |
| 97 | +enable = true |
| 98 | + |
| 99 | +# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful). |
| 100 | +yes = 'Glad to hear it! Please <a href="https://github.com/kyverno/website/issues/new/choose">tell us how we can improve</a>.' |
| 101 | +no = 'Sorry to hear that. Please <a href="https://github.com/kyverno/website/issues/new/choose">tell us how we can improve</a>.' |
| 102 | + |
| 103 | +# Adds a reading time to the top of each doc. |
| 104 | +# If you want this feature, but occasionally need to remove the Reading time from a single page, |
| 105 | +# add "hide_readingtime: true" to the page's front matter |
| 106 | +[ui.readingtime] |
| 107 | +enable = false |
| 108 | + |
| 109 | +[links] |
| 110 | +# End user relevant links. These will show up on left side of footer and in the community page if you have one. |
| 111 | + |
| 112 | +[[links.user]] |
| 113 | + name ="OpenReports GitHub repository" |
| 114 | + url = "https://github.com/openreports" |
| 115 | + icon = "fab fa-github" |
| 116 | + desc = "Kyverno GitHub" |
| 117 | +[[links.user]] |
| 118 | + name = "OpenReports channel on the CNCF slack workspace" |
| 119 | + url = "https://slack.cncf.io/#openreports" |
| 120 | + icon = "fab fa-slack" |
| 121 | + desc = "OpenReports channel on the CNCF slack workspace" |
| 122 | + |
| 123 | +[pushAssets] |
| 124 | +css = [ |
| 125 | + "callouts", |
| 126 | + "styles" |
| 127 | +] |
| 128 | + |
| 129 | +js = [ |
| 130 | + "script" |
| 131 | +] |
0 commit comments