Commit c8c403db authored by Henk Verlinde's avatar Henk Verlinde
Browse files

docs: update content

parent 888a78a2
Loading
Loading
Loading
Loading
+0 −18
Original line number Diff line number Diff line
@@ -4,24 +4,6 @@
  identifier = "prologue"
  url = "/docs/prologue/"

[[docs]]
  name = "Basic Hyas"
  weight = 20
  identifier = "basic-hyas"
  url = "/docs/basic-hyas/"

[[docs]]
  name = "Core Hyas"
  weight = 30
  identifier = "core-hyas"
  url = "/docs/core-hyas/"

[[docs]]
  name = "Guides"
  weight = 40
  identifier = "guides"
  url = "/docs/guides/"

[[docs]]
  name = "Help"
  weight = 50

content/docs/basic-hyas/_index.md

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
---
title: "Basic Hyas"
description: "Basic Hyas."
lead: ""
date: 2020-04-20T11:52:49+02:00
lastmod: 2020-04-20T11:52:49+02:00
draft: false
images: []
---
+0 −53
Original line number Diff line number Diff line
---
title: "Archetypes"
description: ""
lead: ""
date: 2020-09-21T13:58:42+02:00
lastmod: 2020-09-21T13:58:42+02:00
draft: false
images: []
menu: 
  docs:
    parent: "basic-hyas"
weight: 130
toc: true
---

```bash
..
├── blog.md
└── default.md
```

See also the Hugo docs: [Archetypes](https://gohugo.io/content-management/archetypes/).

## blog.md

```md
---
title: "{{ replace .Name "-" " " | title }}"
description: ""
excerpt: ""
date: {{ .Date }}
lastmod: {{ .Date }}
draft: true
weight: 50
images: ["{{ .Name | urlize }}.jpg"]
categories: [""]
---

{{</* img src="{{ .Name | urlize }}.jpg" alt="{{ replace .Name "-" " " | title }}" caption="{{ replace .Name "-" " " | title }}" class="wide" */>}}
```

## default.md

```md
---
title: "{{ replace .Name "-" " " | title }}"
description: ""
date: {{ .Date }}
lastmod: {{ .Date }}
draft: true
images: []
---
```

content/docs/basic-hyas/assets.md

deleted100644 → 0
+0 −32
Original line number Diff line number Diff line
---
title: "Assets"
description: ""
lead: ""
date: 2020-09-21T14:41:53+02:00
lastmod: 2020-09-21T14:41:53+02:00
draft: false
images: []
menu: 
  docs:
    parent: "basic-hyas"
weight: 140
toc: true
---

```bash
..
├── fonts/
├── images/
├── js/
│   ├── vendor/
│   └── app.js
├── lambda/
└── scss/
    ├── common/
    ├── components/
    ├── layouts/
    ├── vendor/
    └── app.scss
```

See also the Hugo docs: [Hugo Pipes](https://gohugo.io/hugo-pipes/).
+0 −34
Original line number Diff line number Diff line
---
title: "Deployment"
description: "Deployment Hyas."
lead: "Hyas is optimized for deployment to Netlify, but you can use any other static web host if you prefer."
date: 2020-04-20T12:46:25+02:00
lastmod: 2020-04-20T12:46:25+02:00
draft: false
images: []
menu: 
  docs:
    parent: "basic-hyas"
weight: 160
toc: true
---

```bash
yarn build
```

## Netlify

See also: [Netlify]({{< ref "netlify" >}}).

### Netlify Drop

Netlify Drop lets you deploy a website with simply drag & drop.

- Run `yarn build` in your project folder.
- This will generate a `public` folder where your generated site is located.
- Visit [Netlify Drop](https://app.netlify.com/drop) and drop the `public` folder there.

## Other hosting options

See the Hugo Docs: [Hosting & Deployment](https://gohugo.io/hosting-and-deployment/).
Loading