diff --git a/starters/minimal/assets/media/hello.jpg b/starters/minimal/assets/media/hello.jpg deleted file mode 100644 index 58fe7ef4..00000000 Binary files a/starters/minimal/assets/media/hello.jpg and /dev/null differ diff --git a/starters/minimal/assets/media/space.jpg b/starters/minimal/assets/media/space.jpg new file mode 100644 index 00000000..169d53bd Binary files /dev/null and b/starters/minimal/assets/media/space.jpg differ diff --git a/starters/minimal/config/_default/params.yaml b/starters/minimal/config/_default/params.yaml index 660e3946..f05933c4 100644 --- a/starters/minimal/config/_default/params.yaml +++ b/starters/minimal/config/_default/params.yaml @@ -86,7 +86,7 @@ features: category: '' category_id: '' search: - provider: wowchemy + provider: '' algolia: app_id: '' api_key: '' diff --git a/starters/minimal/content/_index.md b/starters/minimal/content/_index.md new file mode 100644 index 00000000..a1a76e7f --- /dev/null +++ b/starters/minimal/content/_index.md @@ -0,0 +1,27 @@ +--- +# Leave the homepage title empty to use the site title +title: +date: 2022-10-24 +type: landing +sections: + - block: about.avatar + content: + # Choose a user profile to display (a folder name within `content/authors/`) + username: admin + text: |- + 👋 Hi, there! I'm **Alice**, a machine learning researcher at Netflix. + {style="font-size: 1.2rem; background: #FFB76B; background: linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;"} + design: + background: + color: black + text_color_light: true + image: + # Add your image background to `assets/media/`. + filename: space.jpg + filters: + brightness: 0.4 + size: cover + position: center + parallax: false + css_class: d-flex fullscreen align-items-center +--- diff --git a/starters/minimal/content/home/index.md b/starters/minimal/content/home/index.md deleted file mode 100644 index a00b5e58..00000000 --- a/starters/minimal/content/home/index.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -# Files in this folder represent a Widget Page (homepage) -type: widget_page - -# Homepage is headless, other widget pages are not. -headless: true ---- diff --git a/starters/minimal/content/home/intro.md b/starters/minimal/content/home/intro.md deleted file mode 100644 index 9880c972..00000000 --- a/starters/minimal/content/home/intro.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -# Use the Intro widget of the Blog template -widget: about.avatar - -# This file represents a page section. -headless: true - -# Order that this section will appear in. -weight: 10 - -author: admin -design: - # Choose how many columns the section has. Valid values: 1 or 2. - columns: '1' - background: - # Apply a background color, gradient, or image. - # Uncomment (by removing `#`) an option to apply it. - # Choose a light or dark text color by setting `text_color_light`. - # Any HTML color name or Hex value is valid. - color: black - # gradient_start: DarkGreen - # gradient_end: ForestGreen - image: hello.jpg # Name of image in `static/media/`. - image_darken: 0.4 - image_size: cover - image_position: right - image_parallax: true - text_color_light: true - css_class: d-flex fullscreen align-items-center ---- - -👋 Hi, there! I'm **Alice**, a machine learning researcher at Netflix. -{style="font-size: 1.2rem; background: #FFB76B; background: linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent;"} diff --git a/starters/minimal/go.mod b/starters/minimal/go.mod index 2e3002ff..35e8ff3f 100644 --- a/starters/minimal/go.mod +++ b/starters/minimal/go.mod @@ -4,5 +4,6 @@ go 1.15 require ( github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify v1.0.0 // indirect - github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.6.0 // indirect + github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms v1.0.0 // indirect + github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 v5.7.1-0.20221024214304-ad466232017f )