2018-05-05 16:00:51 +00:00
< div id = "cellophane" onclick = "kub.toggleMenu()" > < / div >
< header >
2019-02-05 16:33:23 +00:00
< a href = "{{ site.Home.RelPermalink }}" class = "logo" > < / a >
2018-05-05 16:00:51 +00:00
< div class = "nav-buttons" data-auto-burger = "primary" >
< ul class = "global-nav" >
2018-11-01 12:44:44 +00:00
{{ $sections := slice "docs" "blog" "partners" "community" "case-studies" }}
2018-05-05 16:00:51 +00:00
{{ range $sections }}
2019-02-05 16:33:23 +00:00
{{ with site.GetPage "section" . }}< li > < a href = "{{ .RelPermalink }}" { { if eq . Section $ . Section } } class = "active" { { end } } > {{ .LinkTitle }}< / a > < / li > {{ end }}
2018-05-05 16:00:51 +00:00
{{ end }}
2018-09-14 21:47:24 +00:00
{{/* Link directly to documentation etc., if possible. */}}
2019-02-05 16:33:23 +00:00
{{ $langPage := cond (gt (len .Translations) 0) . site.Home }}
2018-05-05 16:00:51 +00:00
< li >
< a href = "#" >
2018-09-14 21:47:24 +00:00
{{ $langPage.Language.LanguageName }} < span class = "ui-icon ui-icon-carat-1-s" > < / span >
2018-05-05 16:00:51 +00:00
< / a >
< ul >
2018-09-14 21:47:24 +00:00
{{ range $langPage.Translations }}
2018-05-05 16:00:51 +00:00
< li > < a href = "{{ .RelPermalink }}" > {{ .Language.LanguageName }}< / a > < / li >
{{ end }}
< / ul >
< / li >
< li >
< a href = "#" >
2019-02-05 16:33:23 +00:00
{{ site.Params.version }} < span class = "ui-icon ui-icon-carat-1-s" > < / span >
2018-05-05 16:00:51 +00:00
< / a >
< ul >
2019-02-05 16:33:23 +00:00
{{ range site.Params.versions }}
2018-05-05 16:00:51 +00:00
< li > < a href = "{{ .url }}" > {{ .version }}< / a > < / li >
{{ end }}
< / ul >
< / li >
< / ul >
2019-02-05 16:33:23 +00:00
{{ with site.GetPage "section" "docs/tutorials/kubernetes-basics" }}
2018-09-14 21:47:24 +00:00
< a href = "{{ .RelPermalink }}" class = "button" id = "tryKubernetes" data-auto-burger-exclude > {{ .LinkTitle }}< / a >
{{ end }}
2018-05-05 16:00:51 +00:00
< button id = "hamburger" onclick = "kub.toggleMenu()" data-auto-burger-exclude > < div > < / div > < / button >
< / div >
< nav id = "mainNav" >
< main data-auto-burger = "primary" >
2019-02-05 16:33:23 +00:00
{{ range site.Menus.main }}
2018-09-14 21:47:24 +00:00
< div class = "nav-box" >
< h3 > < a href = "{{ .URL }}" > {{ .Title }}< / a > < / h3 >
{{ .Post }}
2018-05-05 16:00:51 +00:00
< / div >
2018-09-14 21:47:24 +00:00
{{ end }}
2018-05-05 16:00:51 +00:00
< / main >
< main data-auto-burger = "primary" >
< div class = "left" >
2018-09-14 21:47:24 +00:00
< h5 class = "github-invite" > {{ T "main_github_invite" }}< / h5 >
< a href = "https://github.com/kubernetes/kubernetes" class = "button" data-auto-burger-exclude > {{ T "main_github_view_on" }}< / a >
2018-05-05 16:00:51 +00:00
< / div >
< div class = "right" >
2018-09-14 21:47:24 +00:00
< h5 class = "github-invite" > {{ T "main_community_explore" }}< / h5 >
2018-05-05 16:00:51 +00:00
< div class = "social" >
2018-09-14 21:47:24 +00:00
< a href = "https://twitter.com/kubernetesio" class = "twitter" > < span > {{ T "community_twitter_name" }}< / span > < / a >
< a href = "https://github.com/kubernetes/kubernetes" class = "github" > < span > {{ T "community_github_name" }}< / span > < / a >
< a href = "http://slack.k8s.io/" class = "slack" > < span > {{ T "community_slack_name" }} Slack< / span > < / a >
< a href = "https://stackoverflow.com/questions/tagged/kubernetes" class = "stack-overflow" > < span > {{ T "community_stack_overflow_name" }}< / span > < / a >
< a href = "https://discuss.kubernetes.io" class = "mailing-list" > < span > {{ T "community_forum_name" }}< / span > < / a >
< a href = "https://calendar.google.com/calendar/embed?src=nt2tcnbtbied3l6gi2h29slvc0%40group.calendar.google.com" class = "calendar" > < span > {{ T "community_events_calendar" }}< / span > < / a >
2018-05-05 16:00:51 +00:00
< / div >
< / div >
< div class = "clear" style = "clear: both" > < / div >
< / main >
< / nav >
< / header >