Skip to content

Commit

Permalink
Merge pull request #4492 from tstromberg/netlify
Browse files Browse the repository at this point in the history
Add basic hugo & netlify website structure
  • Loading branch information
tstromberg authored Jun 15, 2019
2 parents a92bd97 + a56b3b5 commit eba3879
Show file tree
Hide file tree
Showing 7 changed files with 6,220 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "site/themes/hugo-whisper-theme"]
path = site/themes/hugo-whisper-theme
url = https://github.com/jugglerx/hugo-whisper-theme.git
6 changes: 6 additions & 0 deletions site/archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

48 changes: 48 additions & 0 deletions site/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
title = "minikube"
baseURL = "https://minikube.sigs.k8s.io"
languageCode = "en-us"

# code highlighting
pygmentsCodeFences = true
pygmentsCodefencesGuessSyntax = true
pygmentsUseClasses = true


# unused
disableKinds = ["taxonomy", "taxonomyTerm"]

themesDir = "themes"
theme = "hugo-whisper-theme"

[[menu.main]]
name = "Home"
url = "/"
weight = 1

[[menu.main]]
name = "Docs"
url = "/docs/"
weight = 2

[params]
google_analytics_id=""
homepage_button_link = '/docs'
homepage_button_text = 'Read The Docs'
homepage_intro = 'minikube implements a local Kubernetes cluster on macOS, Linux, and Windows.'
homepage_image = 'https://github.com/kubernetes/minikube/raw/master/images/start.jpg'

[params.homepage_meta_tags]
meta_description = "minikube desc"
meta_og_title = "minikube"
meta_og_type = "website"
meta_og_url = "https://minikube.sigs.k8s.io"
meta_og_image = "https://raw.githubusercontent.com/JugglerX/hugo-whisper-theme/master/images/tn.png"

[params.logo]
mobile = "https://github.com/kubernetes/minikube/raw/master/images/logo/logo.png"
standard = "https://github.com/kubernetes/minikube/raw/master/images/logo/logo.png"





10 changes: 10 additions & 0 deletions site/content/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: "minikube"
date: 2019-06-15T09:19:25+08:00
draft: true
---

minikube implements a local Kubernetes cluster on macOS, Linux, and Windows.

This is just a test website.

Loading

0 comments on commit eba3879

Please sign in to comment.