<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recipes on</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/</link><description>Recent content in Recipes on</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><lastBuildDate>Mon, 20 Apr 2020 11:52:49 +0200</lastBuildDate><atom:link href="https://docs-gethyas-test-nine.vercel.app/docs/recipes/index.xml" rel="self" type="application/rss+xml"/><item><title>Project Configuration</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/project-configuration/</link><pubDate>Mon, 21 Sep 2020 12:19:02 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/project-configuration/</guid><description>.. ├── _default/ │ ├── config.toml │ ├── menus.toml │ └── params.toml ├── production/ ├── staging/ └── postcss.config.js See also the Hugo docs: Configure Hugo.
Set configuration params.toml Meta data See also: SEO
Homepage title = &amp;quot;Hyas&amp;quot; titleSeparator = &amp;quot;-&amp;quot; titleAddition = &amp;quot;Modern Documentation Theme&amp;quot; description = &amp;quot;Hyas is a Hugo theme helping you build modern documentation websites that are secure, fast, and SEO-ready — by default.&amp;quot; Open Graph + Twitter Cards images = [&amp;quot;hyas.</description></item><item><title>Archetypes</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/archetypes/</link><pubDate>Mon, 21 Sep 2020 13:58:42 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/archetypes/</guid><description>.. ├── blog.md ├── default.md └── docs.md See also the Hugo docs: Archetypes.
Customize archetypes blog.md --- title: &amp;quot;{{ replace .Name &amp;quot;-&amp;quot; &amp;quot; &amp;quot; | title }}&amp;quot; description: &amp;quot;&amp;quot; lead: &amp;quot;&amp;quot; date: {{ .Date }} lastmod: {{ .Date }} draft: true weight: 50 images: [&amp;quot;{{ .Name | urlize }}.jpg&amp;quot;] contributors: [] --- {{&amp;lt; img src=&amp;quot;{{ .Name | urlize }}.jpg&amp;quot; alt=&amp;quot;{{ replace .Name &amp;quot;-&amp;quot; &amp;quot; &amp;quot; | title }}&amp;quot; caption=&amp;quot;{{ replace .</description></item><item><title>Pages</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/pages/</link><pubDate>Mon, 23 Nov 2020 11:55:16 +0100</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/pages/</guid><description>.. ├── blog/ │ ├── say-hello-to-hyas/ │ │ ├── index.md │ │ └── say-hello-to-hyas.png │ └── _index.md ├── about/ │ └── index.md ├── contributors/ │ ├── henk-verlinde/ │ │ └── _index.md │ └── _index.md ├── docs/ │ ├── help/ │ │ ├── _index.md │ │ └── faq.md │ ├── prologue/ │ │ ├── _index.md │ │ ├── commands.md │ │ └── introduction.md │ └── _index.md └── _index.md See also the Hugo docs: Content Organization.</description></item><item><title>Layouts</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/layouts/</link><pubDate>Mon, 21 Sep 2020 14:13:01 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/layouts/</guid><description>.. ├── _default/ │ ├── baseof.html │ ├── list.html │ └── single.html ├── blog/ │ └── single.html ├── categories/ │ ├── list.html │ └── terms.html ├── partials/ │ ├── content/ │ ├── footer/ │ │ ├── footer.html │ │ └── script-footer.html │ ├── head/ │ │ ├── favicons.html │ │ ├── head.html │ │ ├── opengraph.html │ │ ├── resource-hints.html │ │ ├── script-header.html │ │ ├── seo.html │ │ ├── structured-data.</description></item><item><title>Menus</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/menus/</link><pubDate>Mon, 23 Nov 2020 11:55:36 +0100</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/menus/</guid><description>See also the Hugo docs: Menus.
./config/_default/menus.toml Add to main menu [[main]] name = &amp;quot;Docs&amp;quot; url = &amp;quot;/docs/prologue/introduction/&amp;quot; weight = 10 [[main]] name = &amp;quot;Blog&amp;quot; url = &amp;quot;/blog/&amp;quot; weight = 20 Add to social menu 👉 Hyas uses Feather Icons [[social]] name = &amp;quot;Twitter&amp;quot; pre = &amp;quot;&amp;lt;svg xmlns=\&amp;quot;http://www.w3.org/2000/svg\&amp;quot; width=\&amp;quot;20\&amp;quot; height=\&amp;quot;20\&amp;quot; viewBox=\&amp;quot;0 0 24 24\&amp;quot; fill=\&amp;quot;none\&amp;quot; stroke=\&amp;quot;currentColor\&amp;quot; stroke-width=\&amp;quot;2\&amp;quot; stroke-linecap=\&amp;quot;round\&amp;quot; stroke-linejoin=\&amp;quot;round\&amp;quot; class=\&amp;quot;feather feather-twitter\&amp;quot;&amp;gt;&amp;lt;path d=\&amp;quot;M23 3a10.9 10.9 0 0 1-3.14 1.</description></item><item><title>Images</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/images/</link><pubDate>Mon, 23 Nov 2020 11:53:06 +0100</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/images/</guid><description>.. ├── blog/ │ ├── say-hello-to-hyas/ │ │ ├── index.md │ │ └── say-hello-to-hyas.png │ └── _index.md └── _index.md See also the Hugo docs: Page Bundles
Add a small image Using img, src, and data-src.
💡 Valid image formats are: jpg, png, tiff, bmp, and gif. Add a small image in your page bundle to your page using shortcode img-simple.
Example {{&amp;lt; img-simple src=&amp;quot;square.png&amp;quot; alt=&amp;quot;Square&amp;quot; class=&amp;quot;border-0 rounded-circle&amp;quot; &amp;gt;}} Will be processed into:</description></item><item><title>Assets</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/assets/</link><pubDate>Mon, 21 Sep 2020 14:41:53 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/assets/</guid><description>.. ├── fonts/ ├── images/ ├── js/ │ ├── vendor/ │ ├── app.js │ └── index.js ├── lambda/ └── scss/ ├── common/ ├── components/ ├── layouts/ ├── vendor/ └── app.scss See also the Hugo docs: Hugo Pipes.
Customize Hyas SCSS 👉 Set variables in `./assets/scss/common/_variables.scss`. See also the Bootstrap code: Variables.
./assets/scss/app.scss Customize Hyas JS ./assets/js/app.js Add a Lambda function See also: Functions
Example ./assets/lambda/hi-from-lambda.js exports.</description></item><item><title>Deployment</title><link>https://docs-gethyas-test-nine.vercel.app/docs/recipes/deployment/</link><pubDate>Mon, 20 Apr 2020 12:46:25 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/recipes/deployment/</guid><description>Deploy to Netlify See Netlify.
Deploy to other hosts See the Hugo Docs: Hosting &amp;amp; Deployment.</description></item></channel></rss>