Refer to [page resources](https://gohugo.io/content-management/page-resources/) and [page bundles](https://gohugo.io/content-management/page-bundles/) for more information.
Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within a callout works with this kind of content.
{{</* /callout */>}}
```
{{<calloutcontext="info"icon="info-circle">}}
Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so that you can see how spacing within a callout works with this kind of content.
{{</callout>}}
### Title
```md
{{</* callout context="info" title="Callout title" */>}} This is an info callout. Example text to show it in action. {{</* /callout */>}}
```
{{<calloutcontext="info"title="Callout title">}} This is an info callout. Example text to show it in action. {{</callout>}}
```md
{{</* callout context="info" title="Callout title" icon="info-circle" */>}} This is an info callout. Example text to show it in action. {{</* /callout */>}}
```
{{<calloutcontext="info"title="Callout title"icon="info-circle">}} This is an info callout. Example text to show it in action. {{</callout>}}
### Inline code
{{<calloutcontext="light"icon="info-circle">}}
You can change the commands in the scripts section of `./package.json`.
{{</callout>}}
{{<calloutcontext="warning"icon="info-circle">}}
You can change the commands in the scripts section of `./package.json`.
{{</callout>}}
{{<calloutcontext="danger"icon="info-circle">}}
You can change the commands in the scripts section of `./package.json`.
{{</callout>}}
{{<calloutcontext="info"icon="info-circle">}}
You can change the commands in the scripts section of `./package.json`.
This Boolean attribute indicates whether the details — that is, the contents of the <details> element — are currently visible. The details are shown when this attribute exists, or hidden when this attribute is absent. By default this attribute is absent which means the details are not visible.
{{</* /details */>}}
```
{{<details"Startinopenstate"open>}}
This Boolean attribute indicates whether the details — that is, the contents of the `<details>` element — are currently visible. The details are shown when this attribute exists, or hidden when this attribute is absent. By default this attribute is absent which means the details are not visible.
{{</details>}}
## Tabs
````md
{{</* tabs "create-new-site" */>}}
{{</* tab "npm" */>}}
```bash
npm create hyas@latest
```
{{</* /tab */>}}
{{</* tab "pnpm" */>}}
```bash
pnpm create hyas@latest
```
{{</* /tab */>}}
{{</* tab "Yarn" */>}}
```bash
yarn create hyas
```
{{</* /tab */>}}
{{</* /tabs */>}}
````
{{<callouticon="info-circle">}}
The selected tab is remembered in and across pages.
{{</callout>}}
Run the following command in your terminal to start our handy install wizard, `create-hyas`.
{{<tabs"create-new-site">}}
{{<tab"npm">}}
```bash
npm create hyas@latest
```
{{</tab>}}
{{<tab"pnpm">}}
```bash
pnpm create hyas@latest
```
{{</tab>}}
{{<tab"Yarn">}}
```bash
yarn create hyas
```
{{</tab>}}
{{</tabs>}}
`cd` into your new project directory to begin using Hyas. Install your dependencies before continuing.