<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Reference Guides on</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/</link><description>Recent content in Reference Guides on</description><generator>Hugo -- gohugo.io</generator><language>en-US</language><lastBuildDate>Mon, 20 Apr 2020 11:52:58 +0200</lastBuildDate><atom:link href="https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/index.xml" rel="self" type="application/rss+xml"/><item><title>Security</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/security/</link><pubDate>Thu, 17 Sep 2020 13:48:09 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/security/</guid><description>See also Mozilla Observatory: Scan Results for hyas.netlify.app
Netlify See also the Netlify website: Security at Netlify.
Security Headers ./layouts/index.headers excerpt:
/* X-Content-Type-Options: nosniff X-XSS-Protection: 1; mode=block Content-Security-Policy: default-src 'none'; manifest-src 'self'; connect-src 'self'; font-src 'self'; img-src 'self'; script-src 'self'; style-src 'self' X-Frame-Options: SAMEORIGIN Referrer-Policy: strict-origin See also: Headers.
Content Security Policy 💡 Laboratory is an experimental Firefox extension that helps you generate a Content Security Policy (CSP) header for your website.</description></item><item><title>Performance</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/performance/</link><pubDate>Thu, 17 Sep 2020 15:37:44 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/performance/</guid><description>See also Google Lighthouse: Scan Results for hyas.netlify.app
Unused CSS removal ./config/postcss.config.js:
const autoprefixer = require('autoprefixer'); const purgecss = require('@fullhuman/postcss-purgecss'); const whitelister = require('purgecss-whitelister'); module.exports = { plugins: [ autoprefixer(), purgecss({ content: [ './layouts/**/*.html', './content/**/*.md', ], whitelist: [ 'lazyloaded', ...whitelister([ './assets/scss/components/_syntax.scss', './assets/scss/components/_code.scss', ]), ], }), ], } See also the PurgeCSS docs: Configuration, and the Purgecss Whitelister Readme.
Asset minification Hyas uses Hugo to minify CSS, JS and HTML.</description></item><item><title>SEO</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/seo/</link><pubDate>Fri, 18 Sep 2020 14:25:19 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/seo/</guid><description>./config/_default/params.toml
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; See also: The Document Title element
Open Graph + Twitter Cards images = [&amp;quot;hyas.png&amp;quot;] twitterSite = &amp;quot;henkverlinde&amp;quot; twitterCreator = &amp;quot;henkverlinde&amp;quot; facebookAuthor = &amp;quot;verlinde.henk&amp;quot; facebookPublisher = &amp;quot;verlinde.henk&amp;quot; ogLocale = &amp;quot;en_US&amp;quot; See also: The Open Graph protocol and Cards</description></item><item><title>Development Tools</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/development-tools/</link><pubDate>Mon, 21 Sep 2020 14:26:38 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/development-tools/</guid><description/></item><item><title>Bootstrap</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/bootstrap/</link><pubDate>Mon, 21 Sep 2020 16:00:43 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/bootstrap/</guid><description/></item><item><title>Netlify</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/netlify/</link><pubDate>Mon, 21 Sep 2020 15:58:12 +0200</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/netlify/</guid><description>. ├── assets/ │ └── lambda/ ├── layouts/ │ ├── index.headers │ └── index.redirects └── netlify.toml See also the Hugo Docs: Host on Netlify.
Functions Functions in ./assets/lambda/ are compiled on build to ./functions/.
See also the Netlify docs: Functions overview
Redirects ./layouts/index.redirects is converted on build to ./public/_redirects.
{{ range $pages := .Site.Pages -}} {{ range .Aliases -}} {{ . }} {{ $pages.RelPermalink -}} {{ end -}} {{ end -}} See also the Netlify docs: Redirects and rewrites</description></item><item><title>Page Layouts</title><link>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/page-layouts/</link><pubDate>Tue, 10 Nov 2020 11:38:43 +0100</pubDate><guid>https://docs-gethyas-test-nine.vercel.app/docs/reference-guides/page-layouts/</guid><description>Default structure See also: ./layouts/_default/baseof.html
Sections See also the Bootstrap documentation: Layout
Components See the Bootstrap documentation: Components
Landing page The homepage and 404 page have a landing page layout.
Example ./layouts/index.html excerpt:
{{ define &amp;quot;sidebar-prefooter&amp;quot; }} &amp;lt;section class=&amp;quot;section section-sm&amp;quot;&amp;gt; &amp;lt;div class=&amp;quot;container&amp;quot;&amp;gt; &amp;lt;div class=&amp;quot;row justify-content-center text-center mt-lg-3&amp;quot;&amp;gt; &amp;lt;div class=&amp;quot;col-lg-5&amp;quot;&amp;gt; &amp;lt;h2 class=&amp;quot;h4&amp;quot;&amp;gt;Full text search&amp;lt;/h2&amp;gt; &amp;lt;p&amp;gt;Search your Hyas site with FlexSearch. Easily customize index settings and search options to your liking.&amp;lt;/p&amp;gt; &amp;lt;/div&amp;gt; &amp;lt;div class=&amp;quot;col-lg-5&amp;quot;&amp;gt; &amp;lt;h2 class=&amp;quot;h4&amp;quot;&amp;gt;Page layouts&amp;lt;/h2&amp;gt; &amp;lt;p&amp;gt;Build pages with a landing page, blog, or documentation layout.</description></item></channel></rss>