|
1 | 1 | title = "minikube"
|
2 | 2 | baseURL = "https://minikube.sigs.k8s.io"
|
3 |
| -languageCode = "en-us" |
| 3 | +enableRobotsTXT = true |
4 | 4 |
|
5 |
| -# code highlighting |
6 |
| -pygmentsCodeFences = true |
7 |
| -pygmentsCodefencesGuessSyntax = true |
8 |
| -pygmentsUseClasses = true |
| 5 | +# Hugo allows theme composition (and inheritance). The precedence is from left to right. |
| 6 | +theme = ["docsy"] |
| 7 | + |
| 8 | +# Will give values to .Lastmod etc. |
| 9 | +enableGitInfo = true |
9 | 10 |
|
| 11 | +# Language settings |
| 12 | +contentDir = "content/en" |
| 13 | +defaultContentLanguage = "en" |
| 14 | +defaultContentLanguageInSubdir = false |
| 15 | +# Useful when translating. |
| 16 | +enableMissingTranslationPlaceholders = true |
10 | 17 |
|
11 |
| -# unused |
12 | 18 | disableKinds = ["taxonomy", "taxonomyTerm"]
|
13 | 19 |
|
14 |
| -themesDir = "themes" |
15 |
| -theme = "hugo-whisper-theme" |
| 20 | +# Highlighting config |
| 21 | +pygmentsCodeFences = true |
| 22 | +pygmentsUseClasses = false |
| 23 | +# Use the new Chroma Go highlighter in Hugo. |
| 24 | +pygmentsUseClassic = false |
| 25 | +#pygmentsOptions = "linenos=table" |
| 26 | +# See https://help.farbox.com/pygments.html |
| 27 | +pygmentsStyle = "tango" |
| 28 | + |
| 29 | + # First one is picked as the Twitter card image if not set on page. |
| 30 | + #images = ["images/project-illustration.png"] |
| 31 | + |
| 32 | +# Configure how URLs look like per section. |
| 33 | +[permalinks] |
| 34 | +blog = "/:section/:year/:month/:day/:slug/" |
| 35 | + |
| 36 | +## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday |
| 37 | +[blackfriday] |
| 38 | +plainIDAnchors = true |
| 39 | +hrefTargetBlank = true |
| 40 | +angledQuotes = false |
| 41 | +latexDashes = true |
16 | 42 |
|
17 |
| -[[menu.main]] |
18 |
| - name = "Home" |
19 |
| - url = "/" |
20 |
| - weight = 1 |
| 43 | +# Image processing configuration. |
| 44 | +[imaging] |
| 45 | +resampleFilter = "CatmullRom" |
| 46 | +quality = 75 |
| 47 | +anchor = "smart" |
21 | 48 |
|
22 |
| -[[menu.main]] |
23 |
| - name = "Docs" |
24 |
| - url = "/docs/" |
25 |
| - weight = 2 |
| 49 | +[services] |
| 50 | +[services.googleAnalytics] |
| 51 | +# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback]. |
| 52 | +#id = "UA-00000000-0" |
| 53 | + |
| 54 | +# Language configuration |
| 55 | + |
| 56 | +[languages] |
| 57 | +[languages.en] |
| 58 | +title = "minikube" |
| 59 | +description = "minikube is local Kubernetes" |
| 60 | +languageName = "English" |
| 61 | +# Weight used for sorting. |
| 62 | +weight = 1 |
| 63 | +[languages.no] |
| 64 | +title = "minikube" |
| 65 | +description = "minikube er lokale Kubernetes" |
| 66 | +languageName ="Norsk" |
| 67 | +contentDir = "content/no" |
| 68 | +time_format_default = "02.01.2006" |
| 69 | +time_format_blog = "02.01.2006" |
| 70 | + |
| 71 | +# Everything below this are Site Params |
26 | 72 |
|
27 | 73 | [params]
|
28 |
| - google_analytics_id="" |
29 |
| - homepage_button_link = '/docs' |
30 |
| - homepage_button_text = 'Read The Docs' |
31 |
| - homepage_intro = 'minikube implements a local Kubernetes cluster on macOS, Linux, and Windows.' |
32 |
| - homepage_image = 'https://github.com/kubernetes/minikube/raw/master/images/start.jpg' |
| 74 | +copyright = "The Linux Foundation" |
| 75 | +privacy_policy = "" |
| 76 | + |
| 77 | +# Menu title if your navbar has a versions selector to access old versions of your site. |
| 78 | +# This menu appears only if you have at least one [params.versions] set. |
| 79 | +version_menu = "Releases" |
33 | 80 |
|
34 |
| - [params.homepage_meta_tags] |
35 |
| - meta_description = "minikube desc" |
36 |
| - meta_og_title = "minikube" |
37 |
| - meta_og_type = "website" |
38 |
| - meta_og_url = "https://minikube.sigs.k8s.io" |
39 |
| - meta_og_image = "https://raw.githubusercontent.com/JugglerX/hugo-whisper-theme/master/images/tn.png" |
| 81 | +# Repository configuration (URLs for in-page links to opening issues and suggesting changes) |
| 82 | +github_repo = "http://github.com/minikube/kubernetes" |
| 83 | +# An optional link to a related project repo. For example, the sibling repository where your product code lives. |
| 84 | +github_project_repo = "" |
40 | 85 |
|
41 |
| - [params.logo] |
42 |
| - mobile = "https://github.com/kubernetes/minikube/raw/master/images/logo/logo.png" |
43 |
| - standard = "https://github.com/kubernetes/minikube/raw/master/images/logo/logo.png" |
| 86 | +# Specify a value here if your content directory is not in your repo's root directory |
| 87 | +github_subdir = "/site/content" |
44 | 88 |
|
| 89 | +# Google Custom Search Engine ID. Remove or comment out to disable search. |
| 90 | +gcs_engine_id = "005331096405080631692:s7c4yfpw9sy" |
45 | 91 |
|
| 92 | +# User interface configuration |
| 93 | +[params.ui] |
| 94 | +# Enable to show the side bar menu in its compact state. |
| 95 | +sidebar_menu_compact = false |
| 96 | +# Set to true to disable breadcrumb navigation. |
| 97 | +breadcrumb_disable = false |
| 98 | +# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled) |
| 99 | +sidebar_search_disable = false |
| 100 | +# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar |
| 101 | +navbar_logo = true |
46 | 102 |
|
| 103 | +# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events. |
| 104 | +# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set. |
| 105 | +# If you want this feature, but occasionally need to remove the "Feedback" section from a single page, |
| 106 | +# add "hide_feedback: true" to the page's front matter. |
| 107 | +[params.ui.feedback] |
| 108 | +enable = true |
| 109 | +# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful). |
| 110 | +yes = 'Glad to hear it! Please <a href="https://github.com/kubernetes/minikube/issues/new">tell us how we can improve</a>.' |
| 111 | +no = 'Sorry to hear that. Please <a href="https://github.com/kubernetes/minikube/issues/new">tell us how we can improve</a>.' |
47 | 112 |
|
| 113 | +[params.links] |
| 114 | +# End user relevant links. These will show up on left side of footer and in the community page if you have one. |
| 115 | +[[params.links.user]] |
| 116 | + name = "User mailing list" |
| 117 | + url = "https://groups.google.com/forum/#!forum/minikube-users" |
| 118 | + icon = "fa fa-envelope" |
| 119 | + desc = "Discussion and help from your fellow users" |
| 120 | +[[params.links.user]] |
| 121 | + name ="Twitter" |
| 122 | + url = "https://example.org/twitter" |
| 123 | + icon = "fab fa-twitter" |
| 124 | + desc = "Follow us on Twitter to get the latest news!" |
| 125 | +[[params.links.user]] |
| 126 | + name = "Stack Overflow" |
| 127 | + url = "https://stackoverflow.com/questions/tagged/minikube" |
| 128 | + icon = "fab fa-stack-overflow" |
| 129 | + desc = "Practical questions and curated answers" |
| 130 | +# Developer relevant links. These will show up on right side of footer and in the community page if you have one. |
| 131 | +[[params.links.developer]] |
| 132 | + name = "GitHub" |
| 133 | + url = "https://github.com/kubernetes/minikube" |
| 134 | + icon = "fab fa-github" |
| 135 | + desc = "Development takes place here!" |
| 136 | +[[params.links.developer]] |
| 137 | + name = "Slack" |
| 138 | + url = "https://kubernetes.slack.com/messages/C1F5CT6Q1" |
| 139 | + icon = "fab fa-slack" |
| 140 | + desc = "Chat with other project developers" |
| 141 | +[[params.links.developer]] |
| 142 | + name = "Developer mailing list" |
| 143 | + url = "https://groups.google.com/forum/#!forum/minikube-dev" |
| 144 | + icon = "fa fa-envelope" |
| 145 | + desc = "Discuss development issues around the project" |
48 | 146 |
|
0 commit comments