added meta descriptions - im a fucking godHolyShit

new blog post with explanation of how to add meta description
This commit is contained in:
kurets 2023-01-04 23:09:59 +02:00
parent 9623419699
commit a64315e865
83 changed files with 486 additions and 84 deletions

View file

@ -5,10 +5,11 @@ theme = 'lugo'
pluralizelisttitles = false
[params]
showrss = true
nextprev = true
taglist = true
datesinlist = true
description = "A blog about the things I'm interested in - Japanese and posting obscure problems I've solved. Will post my takes on 神ゲー vinnies"
showrss = true
nextprev = true
taglist = true
datesinlist = true
[markup]
[markup.goldmark]

View file

@ -1,4 +1,5 @@
---
description: "A blog about the things I'm interested in - Japanese and posting obscure problems I've solved."
---
{{% center %}}
# VODORASLO

View file

@ -0,0 +1,53 @@
---
title: "Meta Description in Hugo"
date: 2023-01-04T22:52:24+02:00
draft: false
description: "This step by step guide will show you how to add meta description in your own Hugo site."
tags: ['blog']
---
# Adding meta description in Hugo
I assume you are using Luke Smith's theme - Lugo, if you are not, you'd have to find these files yourself (e.g. search using vscode).
## Setting a global meta description
1. Locate your config.toml or config.yaml file
2. Add the following line inside it
For config.toml
```toml
[params]
description = "The global meta description of your website"
```
For config.yaml
```yaml
params:
description: The global meta description of your website
```
It won't work just yet because you have update the ```baseof.html``` file.
## Updating the baseof.html file
1. Locate baseof.html
2. Add or change the meta description line with the following
```html
<meta name="description" content="{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}"/>
```
And now if you start your Hugo server locally with ```hugo serve --noHTTPCache``` and you right click on your page -> View Page Source -> Search for the meta description tag. It should match what you left in the config file.
## Replacing the global description with a custom one
1. Have a markdown file ready
2. In the preamble, add
```yaml
---
description: "Your custom description for this page"
---
```
Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!

View file

@ -3,6 +3,7 @@ title: "Yoinked some Css and updated the site"
date: 2022-12-27T14:24:24+02:00
draft: false
tags: ['updates']
description: "A tale as old as time - stealing css"
---
yoinked lukes css and updated the site, its basically his colors for the headers and my cyan anchor links.. very pretty much wow

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="">
<meta name="description" content="A blog about the things I&#39;m interested in - Japanese and posting obscure problems I&#39;ve solved. Will post my takes on 神ゲー vinnies"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
@ -17,6 +17,7 @@
<article>
<ul>
<li><time datetime="2023-01-04T22:52:24&#43;02:00">2023 Jan 04</time> &ndash; <a href="/blog/meta-description-in-hugo/">Meta Description in Hugo</a></li>
<li><time datetime="2023-01-03T22:36:03&#43;02:00">2023 Jan 03</time> &ndash; <a href="/blog/multiple-index-pages-in-hugo/">Multiple Index Pages in Hugo</a></li>
<li><time datetime="2022-12-27T14:24:24&#43;02:00">2022 Dec 27</time> &ndash; <a href="/blog/yoinked-css/">Yoinked some Css and updated the site</a></li>
<li><time datetime="2022-12-17T22:33:25&#43;02:00">2022 Dec 17</time> &ndash; <a href="/blog/pluralization-issues/">Pluralization issues (Blogs instead of Blog)</a></li>

View file

@ -5,11 +5,50 @@
<description>Recent content in Blog on vodoraslo</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 03 Jan 2023 22:36:03 +0200</lastBuildDate>
<lastBuildDate>Wed, 04 Jan 2023 22:52:24 +0200</lastBuildDate>
<atom:link href="https://vodoraslo.xyz/blog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Meta Description in Hugo</title>
<link>https://vodoraslo.xyz/blog/meta-description-in-hugo/</link>
<pubDate>Wed, 04 Jan 2023 22:52:24 +0200</pubDate>
<guid>https://vodoraslo.xyz/blog/meta-description-in-hugo/</guid>
<description>&lt;h1 id=&#34;adding-meta-description-in-hugo&#34;&gt;Adding meta description in Hugo&lt;/h1&gt;
&lt;p&gt;I assume you are using Luke Smith&amp;rsquo;s theme - Lugo, if you are not, you&amp;rsquo;d have to find these files yourself (e.g. search using vscode).&lt;/p&gt;
&lt;h2 id=&#34;setting-a-global-meta-description&#34;&gt;Setting a global meta description&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate your config.toml or config.yaml file&lt;/li&gt;
&lt;li&gt;Add the following line inside it&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For config.toml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;params&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;description&lt;/span&gt; = &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The global meta description of your website&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For config.yaml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;params&lt;/span&gt;:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;The global meta description of your website&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;It won&amp;rsquo;t work just yet because you have update the &lt;code&gt;baseof.html&lt;/code&gt; file.&lt;/p&gt;
&lt;h2 id=&#34;updating-the-baseofhtml-file&#34;&gt;Updating the baseof.html file&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate baseof.html&lt;/li&gt;
&lt;li&gt;Add or change the meta description line with the following&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&amp;lt;&lt;span style=&#34;color:#f92672&#34;&gt;meta&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;name&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;description&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;content&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&amp;#34;&lt;/span&gt;/&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And now if you start your Hugo server locally with &lt;code&gt;hugo serve --noHTTPCache&lt;/code&gt; and you right click on your page -&amp;gt; View Page Source -&amp;gt; Search for the meta description tag. It should match what you left in the config file.&lt;/p&gt;
&lt;h2 id=&#34;replacing-the-global-description-with-a-custom-one&#34;&gt;Replacing the global description with a custom one&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Have a markdown file ready&lt;/li&gt;
&lt;li&gt;In the preamble, add&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Your custom description for this page&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!&lt;/p&gt;
</description>
</item>
<item>
<title>Multiple Index Pages in Hugo</title>
<link>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</link>

View file

@ -0,0 +1,67 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Meta Description in Hugo | vodoraslo</title>
<link rel="canonical" href="https://vodoraslo.xyz/">
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This step by step guide will show you how to add meta description in your own Hugo site."/>
<meta name="keywords" content="blog">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
</head>
<body>
<main>
<header><h1 id="tag_Meta Description in Hugo">Meta Description in Hugo</h1></header>
<article>
<h1 id="adding-meta-description-in-hugo">Adding meta description in Hugo</h1>
<p>I assume you are using Luke Smith&rsquo;s theme - Lugo, if you are not, you&rsquo;d have to find these files yourself (e.g. search using vscode).</p>
<h2 id="setting-a-global-meta-description">Setting a global meta description</h2>
<ol>
<li>Locate your config.toml or config.yaml file</li>
<li>Add the following line inside it</li>
</ol>
<p>For config.toml</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-toml" data-lang="toml"><span style="display:flex;"><span>[<span style="color:#a6e22e">params</span>]
</span></span><span style="display:flex;"><span> <span style="color:#a6e22e">description</span> = <span style="color:#e6db74">&#34;The global meta description of your website&#34;</span>
</span></span></code></pre></div><p>For config.yaml</p>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span><span style="color:#f92672">params</span>:
</span></span><span style="display:flex;"><span> <span style="color:#f92672">description</span>: <span style="color:#ae81ff">The global meta description of your website</span>
</span></span></code></pre></div><p>It won&rsquo;t work just yet because you have update the <code>baseof.html</code> file.</p>
<h2 id="updating-the-baseofhtml-file">Updating the baseof.html file</h2>
<ol>
<li>Locate baseof.html</li>
<li>Add or change the meta description line with the following</li>
</ol>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-html" data-lang="html"><span style="display:flex;"><span>&lt;<span style="color:#f92672">meta</span> <span style="color:#a6e22e">name</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;description&#34;</span> <span style="color:#a6e22e">content</span><span style="color:#f92672">=</span><span style="color:#e6db74">&#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&#34;</span>/&gt;
</span></span></code></pre></div><p>And now if you start your Hugo server locally with <code>hugo serve --noHTTPCache</code> and you right click on your page -&gt; View Page Source -&gt; Search for the meta description tag. It should match what you left in the config file.</p>
<h2 id="replacing-the-global-description-with-a-custom-one">Replacing the global description with a custom one</h2>
<ol>
<li>Have a markdown file ready</li>
<li>In the preamble, add</li>
</ol>
<div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-yaml" data-lang="yaml"><span style="display:flex;"><span>---
</span></span><span style="display:flex;"><span><span style="color:#f92672">description</span>: <span style="color:#e6db74">&#34;Your custom description for this page&#34;</span>
</span></span><span style="display:flex;"><span>---
</span></span></code></pre></div><p>Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!</p>
<div id="nextprev">
<a href="/blog/multiple-index-pages-in-hugo/"><div id="prevart">Previous:<br>Multiple Index Pages in Hugo</div></a>
</div>
<div style="clear:both" class=taglist>
Tags: [<a id="tag_blog" href="https://vodoraslo.xyz/tags/blog">Blog</a>]
</div>
<br><br>
</article>
</main>
<footer>
<a href="https://vodoraslo.xyz/">Homepage</a><br><br><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>
</footer>
</body>
</html>

View file

@ -9,7 +9,7 @@
<meta name="description" content="This is how to create multiple index pages in Hugo I wanted to order Hackbook in reverse (i.e. oldest to newest) so that it&rsquo;s easier for the reader to start at the correct page.
I ran into the following problem - the default list.html does them from newest to oldest.
So I found this forum post and I created a file in the _default directory as follows:
layouts |----**_default** |-------**hackbook** |-----------**order-by-oldest.">
layouts |----**_default** |-------**hackbook** |-----------**order-by-oldest."/>
<meta name="keywords" content="blog">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
@ -127,6 +127,7 @@ enableGitInfo = true
<div id="nextprev">
<a href="/blog/yoinked-css/"><div id="prevart">Previous:<br>Yoinked some Css and updated the site</div></a>
<a href="/blog/meta-description-in-hugo/"><div id="nextart">Next:<br>Meta Description in Hugo</div></a>
</div>
<div style="clear:both" class=taglist>
Tags: [<a id="tag_blog" href="https://vodoraslo.xyz/tags/blog">Blog</a>]

View file

@ -8,7 +8,7 @@
<link rel="icon" href="/favicon.ico">
<meta name="description" content="this is my first entry and i&rsquo;m already having issues lol So I wanted to make a quick entry, see how it looks like and I stumbled upon this issue of hugo pluralzing Blog into Blogs
You can fix this in config.tom with the following line
pluralizelisttitles = false ">
pluralizelisttitles = false "/>
<meta name="keywords" content="blog">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="yoinked lukes css and updated the site, its basically his colors for the headers and my cyan anchor links.. very pretty much wow">
<meta name="description" content="A tale as old as time - stealing css"/>
<meta name="keywords" content="updates">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="">
<meta name="description" content="A blog about the things I&#39;m interested in - Japanese and posting obscure problems I&#39;ve solved. Will post my takes on 神ゲー vinnies"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -9,6 +9,45 @@
<atom:link href="https://vodoraslo.xyz/categories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Meta Description in Hugo</title>
<link>https://vodoraslo.xyz/blog/meta-description-in-hugo/</link>
<pubDate>Wed, 04 Jan 2023 22:52:24 +0200</pubDate>
<guid>https://vodoraslo.xyz/blog/meta-description-in-hugo/</guid>
<description>&lt;h1 id=&#34;adding-meta-description-in-hugo&#34;&gt;Adding meta description in Hugo&lt;/h1&gt;
&lt;p&gt;I assume you are using Luke Smith&amp;rsquo;s theme - Lugo, if you are not, you&amp;rsquo;d have to find these files yourself (e.g. search using vscode).&lt;/p&gt;
&lt;h2 id=&#34;setting-a-global-meta-description&#34;&gt;Setting a global meta description&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate your config.toml or config.yaml file&lt;/li&gt;
&lt;li&gt;Add the following line inside it&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For config.toml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;params&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;description&lt;/span&gt; = &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The global meta description of your website&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For config.yaml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;params&lt;/span&gt;:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;The global meta description of your website&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;It won&amp;rsquo;t work just yet because you have update the &lt;code&gt;baseof.html&lt;/code&gt; file.&lt;/p&gt;
&lt;h2 id=&#34;updating-the-baseofhtml-file&#34;&gt;Updating the baseof.html file&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate baseof.html&lt;/li&gt;
&lt;li&gt;Add or change the meta description line with the following&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&amp;lt;&lt;span style=&#34;color:#f92672&#34;&gt;meta&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;name&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;description&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;content&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&amp;#34;&lt;/span&gt;/&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And now if you start your Hugo server locally with &lt;code&gt;hugo serve --noHTTPCache&lt;/code&gt; and you right click on your page -&amp;gt; View Page Source -&amp;gt; Search for the meta description tag. It should match what you left in the config file.&lt;/p&gt;
&lt;h2 id=&#34;replacing-the-global-description-with-a-custom-one&#34;&gt;Replacing the global description with a custom one&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Have a markdown file ready&lt;/li&gt;
&lt;li&gt;In the preamble, add&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Your custom description for this page&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!&lt;/p&gt;
</description>
</item>
<item>
<title>Multiple Index Pages in Hugo</title>
<link>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</link>

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Click to download HackBookEasyPeasy (original pdf) EasyPeasyWay https://sites.google.com/site/hackbookeasypeasy/home HackBookEasyPeasy EasyPeasyWay https://sites.google.com/site/hackbookeasypeasy/home I am Allen Carr. I am also not Allen Carr. So yes I am not the author. I am the hack-author.
I hacked Allen Carrs book and his method of de-addiction to adapt it for PMO. Why? Because his method helped me in getting rid of cigarettes, alcohol and then PMO. Why did I hack his work? Because he is dead now.">
I hacked Allen Carrs book and his method of de-addiction to adapt it for PMO. Why? Because his method helped me in getting rid of cigarettes, alcohol and then PMO. Why did I hack his work? Because he is dead now."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This hackbook will enable you to stop PMO, immediately, painlessly, and permanently, without the need for Willpower or feeling any sense of deprivation or sacrifice. It will not judge you. It will not embarrass you. It will not put pressure on you to undergo painful measures.
That goes against everything you&rsquo;ve ever been told about PMO. But ask yourself what you&rsquo;ve been told before worked for you? If it had, you wouldn&rsquo;t be reading this site.">
That goes against everything you&rsquo;ve ever been told about PMO. But ask yourself what you&rsquo;ve been told before worked for you? If it had, you wouldn&rsquo;t be reading this site."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Perhaps you are somewhat apprehensive about reading this book. Perhaps, like the majority of PMO addicts, the mere thought of stopping fills you with panic and although you have every intention of stopping one day, it is not today.
If you are expecting me to inform you of the terrible health issues that PMO addicts risk, that they are susceptible to be affected by PIED (porn induced erectile disfunction), unreliable arousals, fading penetration, loss of interest in real partners,loss of control over themselves, loss of relationships, that it is a filthy, disgusting habit and that YOU are a stupid, spineless, weak-willed jellyfish, then I must disappoint you.">
If you are expecting me to inform you of the terrible health issues that PMO addicts risk, that they are susceptible to be affected by PIED (porn induced erectile disfunction), unreliable arousals, fading penetration, loss of interest in real partners,loss of control over themselves, loss of relationships, that it is a filthy, disgusting habit and that YOU are a stupid, spineless, weak-willed jellyfish, then I must disappoint you."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Fear that we will have to survive an indeterminate period of misery, deprivation and unsatisfied craving in order to be free. Fear that a night all by yourself or the eve of a test or exam will be miserable fighting uncontrollable impulses. Fear that we&rsquo;ll never be able to concentrate, handle stress or be as confident without our little crutch. Fear that our personality and character will change.
But most of all, the fear of &lsquo;once an addict always an addict,&rsquo; that we will never be completely free and spend the rest of our lives at odd times craving the occasional porn induced orgasm.">
But most of all, the fear of &lsquo;once an addict always an addict,&rsquo; that we will never be completely free and spend the rest of our lives at odd times craving the occasional porn induced orgasm."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="&lsquo;I&rsquo;M GOING TO CURE THE WORLD OF PMO&rsquo; I was talking to my mentor. He thought that I had flipped. Understandable if you consider that he had watched me fail on numerous attempts to quit. The most recent had been two years previously. I&rsquo;d actually survived six months of sheer purgatory before I finally succumbed and found myself clicking on stacked up tabs of porn sites. I&rsquo;m not ashamed to admit that I cried like a baby.">
<meta name="description" content="&lsquo;I&rsquo;M GOING TO CURE THE WORLD OF PMO&rsquo; I was talking to my mentor. He thought that I had flipped. Understandable if you consider that he had watched me fail on numerous attempts to quit. The most recent had been two years previously. I&rsquo;d actually survived six months of sheer purgatory before I finally succumbed and found myself clicking on stacked up tabs of porn sites. I&rsquo;m not ashamed to admit that I cried like a baby."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="You&rsquo;ve probably seen the film Sister Kenny. In case you haven&rsquo;t, it was about the time when infantile paralysis or polio was the scourge of our children. I vividly remember that the words engendered the same fear in me as the word cancer does today. The effect of polio was not only to paralyze the legs and arms but to distort the limbs. The established medical treatment was to put those limbs in irons and thus prevent the distortion.">
<meta name="description" content="You&rsquo;ve probably seen the film Sister Kenny. In case you haven&rsquo;t, it was about the time when infantile paralysis or polio was the scourge of our children. I vividly remember that the words engendered the same fear in me as the word cancer does today. The effect of polio was not only to paralyze the legs and arms but to distort the limbs. The established medical treatment was to put those limbs in irons and thus prevent the distortion."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Perhaps I should begin by describing my competence for writing this book. No, I am not a doctor or a psychiatrist; my qualifications are far more appropriate. I spent thirty years of my life as a confirmed fapper. In the later years I used porn on a daily bases to get orgasm(s).During my life I had made a great number of attempts to stop. I never got past a full week of abstinence, and I was still climbing up the wall, with an “annoying alarm clock beeping” in my head called craving.">
<meta name="description" content="Perhaps I should begin by describing my competence for writing this book. No, I am not a doctor or a psychiatrist; my qualifications are far more appropriate. I spent thirty years of my life as a confirmed fapper. In the later years I used porn on a daily bases to get orgasm(s).During my life I had made a great number of attempts to stop. I never got past a full week of abstinence, and I was still climbing up the wall, with an “annoying alarm clock beeping” in my head called craving."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The object of this book is to get you into the frame of mind in which, instead of the normal method of stopping whereby you start off with the feeling that you are climbing Mount Everest and spend the next few weeks craving and feeling deprived, you start right away with a feeling of elation, as if you had been cured of a terrible disease. From then on, the further you go through life the more you will look at this period of time and wonder how you ever had to use any porn in the first place.">
<meta name="description" content="The object of this book is to get you into the frame of mind in which, instead of the normal method of stopping whereby you start off with the feeling that you are climbing Mount Everest and spend the next few weeks craving and feeling deprived, you start right away with a feeling of elation, as if you had been cured of a terrible disease. From then on, the further you go through life the more you will look at this period of time and wonder how you ever had to use any porn in the first place."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="As I explained earlier, I got interested in this subject because of my own addiction. When I finally stopped it was like magic. When I had previously tried to stop there were weeks of black depression. There would be odd days when I was comparatively cheerful but the next day back with the depression. It was like clawing your way out of a slippery pit, you feel you are near the top, you see the sunshine and then find yourself sliding down again.">
<meta name="description" content="As I explained earlier, I got interested in this subject because of my own addiction. When I finally stopped it was like magic. When I had previously tried to stop there were weeks of black depression. There would be odd days when I was comparatively cheerful but the next day back with the depression. It was like clawing your way out of a slippery pit, you feel you are near the top, you see the sunshine and then find yourself sliding down again."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Internet porn is the most subtle, sinister trap that man and nature have combined to devise. What gets us into it in the first place? The free samples from the professionals and the amateurs (celebrities and commons) who like to share. Some of us are even warned earlier that it&rsquo;s an awful and disgusting habit with short term pleasures and long term costs but we cannot believe that they are not enjoying it.">
<meta name="description" content="Internet porn is the most subtle, sinister trap that man and nature have combined to devise. What gets us into it in the first place? The free samples from the professionals and the amateurs (celebrities and commons) who like to share. Some of us are even warned earlier that it&rsquo;s an awful and disgusting habit with short term pleasures and long term costs but we cannot believe that they are not enjoying it."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="We all start PMOing for many reasons, usually social pressures or our biological curiosity, but once we feel we are becoming hooked, why do we carry on using porn? No regular PMOer knows why he or she looks at porn. If PMOers knew the true reason, they would stop doing it. The true answer is the same for all PMOers but the variety of replies is infinite, I find this part of the consultation the most amusing and at the same time the most pathetic.">
<meta name="description" content="We all start PMOing for many reasons, usually social pressures or our biological curiosity, but once we feel we are becoming hooked, why do we carry on using porn? No regular PMOer knows why he or she looks at porn. If PMOers knew the true reason, they would stop doing it. The true answer is the same for all PMOers but the variety of replies is infinite, I find this part of the consultation the most amusing and at the same time the most pathetic."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Erotic novelty of the internet porn is a mental drug and internet porn beats anything that is known to mankind and its streaming straight to your home for free ! We are not even talking VR virtual reality here. Porn triggers the flooding of dopamine in our brain. Dopamine amps up the brain reward circuitry to produce experiences and feels of cravings and pleasure by locking themselves into receptors. More dopamine more wanting.">
<meta name="description" content="Erotic novelty of the internet porn is a mental drug and internet porn beats anything that is known to mankind and its streaming straight to your home for free ! We are not even talking VR virtual reality here. Porn triggers the flooding of dopamine in our brain. Dopamine amps up the brain reward circuitry to produce experiences and feels of cravings and pleasure by locking themselves into receptors. More dopamine more wanting."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="How or why do we start PMOing in the first place? To understand this fully you need to examine the powerful effect of the supernormal stimulus. We all tend to think we are intelligent, dominant human beings determining our paths through life. We act and act frequently when our brain reward circuit are rewarded. Nobel laureate Nikolaas Tinbergen coined the term “supranormal stimulus.” He said mammals could be tricked into preferring fake eggs and mates.">
<meta name="description" content="How or why do we start PMOing in the first place? To understand this fully you need to examine the powerful effect of the supernormal stimulus. We all tend to think we are intelligent, dominant human beings determining our paths through life. We act and act frequently when our brain reward circuit are rewarded. Nobel laureate Nikolaas Tinbergen coined the term “supranormal stimulus.” He said mammals could be tricked into preferring fake eggs and mates."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="As I explained earlier, PMOers think they do it for enjoyment, relaxation or some sort of education. In fact, this an illusion. The actual reason is the relief of withdrawal pangs. In the early days we use the porn as a curious and novel thing or even educational or as a rebel. We can take it or leave it. However, the subtle chain has started. Our subconscious mind begins to learn that internet porn and masturbation taken at certain times tends to be pleasurable.">
<meta name="description" content="As I explained earlier, PMOers think they do it for enjoyment, relaxation or some sort of education. In fact, this an illusion. The actual reason is the relief of withdrawal pangs. In the early days we use the porn as a curious and novel thing or even educational or as a rebel. We can take it or leave it. However, the subtle chain has started. Our subconscious mind begins to learn that internet porn and masturbation taken at certain times tends to be pleasurable."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="I am referring not only to the great tragedies of life but also to the minor stresses, the socializing, the telephone call, the anxieties of the housewife with noisy young children and so on. Let us use the telephone conversation as an example. For most people the telephone is slightly stressful, particularly for the businessman. Most calls aren&rsquo;t from satisfied customers or your boss congratulating you. There&rsquo;s usually some sort of aggravation - something going wrong or somebody making demands.">
<meta name="description" content="I am referring not only to the great tragedies of life but also to the minor stresses, the socializing, the telephone call, the anxieties of the housewife with noisy young children and so on. Let us use the telephone conversation as an example. For most people the telephone is slightly stressful, particularly for the businessman. Most calls aren&rsquo;t from satisfied customers or your boss congratulating you. There&rsquo;s usually some sort of aggravation - something going wrong or somebody making demands."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="As soon as you get into your bed - and if you are like many people you are already on your favorite tube site - you will probably have already forgotten about it until I reminded you. It has become second nature. Another fallacy about PMOing is that it relieves boredom. Boredom is a frame of mind. The only time that happens is when you have been deprived for a long time or are trying to cut down, or during those first few PMO sessions after a failed attempt to stop.">
<meta name="description" content="As soon as you get into your bed - and if you are like many people you are already on your favorite tube site - you will probably have already forgotten about it until I reminded you. It has become second nature. Another fallacy about PMOing is that it relieves boredom. Boredom is a frame of mind. The only time that happens is when you have been deprived for a long time or are trying to cut down, or during those first few PMO sessions after a failed attempt to stop."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Sex and masturbation do not help concentration. That is just another illusion. When you are trying to concentrate, you automatically try to avoid distractions. So when a PMOer wants to concentrate he doesn&rsquo;t even have to think about it. He automatically PMOs, partially ending the craving, gets on with the matter in hand and has already forgotten that he just PMOed. Sex in general do not help concentration. After years of masturbation your brain changes affect abilities such as assessing, planning and impulse control.">
<meta name="description" content="Sex and masturbation do not help concentration. That is just another illusion. When you are trying to concentrate, you automatically try to avoid distractions. So when a PMOer wants to concentrate he doesn&rsquo;t even have to think about it. He automatically PMOs, partially ending the craving, gets on with the matter in hand and has already forgotten that he just PMOed. Sex in general do not help concentration. After years of masturbation your brain changes affect abilities such as assessing, planning and impulse control."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Most PMOers think that PMO helps to relax them. The truth is that internet porn used in PMO acts like a chemical stimulant. The frantic search to get the fix in those dark alleys of the internet and the internal struggle to reign in the dog straining at its leash for more shocking clips does not sound much like an activity of relaxation to me.
One of the favourite PMO sessions for most is the one after a trip to a new place or after along day.">
One of the favourite PMO sessions for most is the one after a trip to a new place or after along day."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This is a misinformation that seems to make sense but then it does not. In order to have control of eating, will you eat at home before leaving to go to a restaurant or a party? This is what you are doing when you PMO before your social night. You will look tired and will not be up to your best. If you have dating jitters then work on it beforehand and then go with the flow even with some butterflies in your stomach.">
<meta name="description" content="This is a misinformation that seems to make sense but then it does not. In order to have control of eating, will you eat at home before leaving to go to a restaurant or a party? This is what you are doing when you PMO before your social night. You will look tired and will not be up to your best. If you have dating jitters then work on it beforehand and then go with the flow even with some butterflies in your stomach."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="ABSOLUTELY NOTHING! The thing that makes it difficult for us to give up is fear. The fear that we are being deprived of our pleasure or prop. The fear that certain pleasant situations will never be quite the same again. The fear of being unable to cope with stressful situations. In other words, the effect of brainwashing is to delude us into believing that sex and by extension orgasm, is a must for all human beings.">
<meta name="description" content="ABSOLUTELY NOTHING! The thing that makes it difficult for us to give up is fear. The fear that we are being deprived of our pleasure or prop. The fear that certain pleasant situations will never be quite the same again. The fear of being unable to cope with stressful situations. In other words, the effect of brainwashing is to delude us into believing that sex and by extension orgasm, is a must for all human beings."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Usually when PMOers try to stop the main reasons given are health, religion and partner stigma. Part of the brainwashing of this awful drug is the sheer slavery. Man fought hard in the last century to abolish slavery and yet the PMOer spends his life suffering self-imposed slavery. He seems to be oblivious to the fact that when he is allowed to PMO he wishes that he were a non-PMOer. With most of the masturbation we do in our lives, not only do we not enjoy them but we aren&rsquo;t even aware that we are masturbating.">
<meta name="description" content="Usually when PMOers try to stop the main reasons given are health, religion and partner stigma. Part of the brainwashing of this awful drug is the sheer slavery. Man fought hard in the last century to abolish slavery and yet the PMOer spends his life suffering self-imposed slavery. He seems to be oblivious to the fact that when he is allowed to PMO he wishes that he were a non-PMOer. With most of the masturbation we do in our lives, not only do we not enjoy them but we aren&rsquo;t even aware that we are masturbating."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="I cannot repeat too often that it is brainwashing that makes it difficult to stop PMOing. So, the more brainwashing we can dispel before we start, the easier you will find it to achieve your goal. Occasionally I get into arguments with people whom I call “confirmed PMOers.” By my definition a confirmed PMOer is somebody who doesn&rsquo;t believe PMO has any negative effect on his health (PME, PIED and hypofrontality etc.">
<meta name="description" content="I cannot repeat too often that it is brainwashing that makes it difficult to stop PMOing. So, the more brainwashing we can dispel before we start, the easier you will find it to achieve your goal. Occasionally I get into arguments with people whom I call “confirmed PMOers.” By my definition a confirmed PMOer is somebody who doesn&rsquo;t believe PMO has any negative effect on his health (PME, PIED and hypofrontality etc."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This is the area where the brainwashing is the greatest. PMOers, especially the young and single, think they are aware of the health risks. They are not. Even in my case, when I was expecting my head to explode any moment and honestly believed I was prepared to accept the consequences, I was still kidding myself. I didn&rsquo;t in those days have an app that started a red beeper to flash and sound every time my internet router hits a porn site, followed by a warning voice saying, “OK, this is the one!">
<meta name="description" content="This is the area where the brainwashing is the greatest. PMOers, especially the young and single, think they are aware of the health risks. They are not. Even in my case, when I was expecting my head to explode any moment and honestly believed I was prepared to accept the consequences, I was still kidding myself. I didn&rsquo;t in those days have an app that started a red beeper to flash and sound every time my internet router hits a porn site, followed by a warning voice saying, “OK, this is the one!"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Most PMOers are aware of the effect that this progressive process of PMO, leading to novelty and escalation seeking, has on their brains reward circuits and their sexual system. However, they are not so aware of the effect it has on their energy level.
One of the subtleties of the PMO trap is that the effects it has on us, both physical and mental, happen so gradually and imperceptibly that we are not aware of them and regard them as normal.">
One of the subtleties of the PMO trap is that the effects it has on us, both physical and mental, happen so gradually and imperceptibly that we are not aware of them and regard them as normal."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This is the worst fallacy of all about PMOing and for me it ranks with the ending of the slavery, the greatest benefit from quitting - is not to have to go through life with the permanent feelings of insecurity that PMOers suffer from.
PMOers find it very difficult to believe that masturbation to internet porn actually causes those insecure feelings you get when you are out late at night after a contentious day at home or work.">
PMOers find it very difficult to believe that masturbation to internet porn actually causes those insecure feelings you get when you are out late at night after a contentious day at home or work."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Another of the great joys of quitting porn is to be free of those sinister black shadows at the back of our minds. All PMOers know they are fools to close their minds on the ill-effects of PMO. For most of our lives PMO is automatic but the black shadows are always lurking in our subconscious minds, just beneath the surface. There are several marvellous advantages to achieve from quitting PMO.">
<meta name="description" content="Another of the great joys of quitting porn is to be free of those sinister black shadows at the back of our minds. All PMOers know they are fools to close their minds on the ill-effects of PMO. For most of our lives PMO is automatic but the black shadows are always lurking in our subconscious minds, just beneath the surface. There are several marvellous advantages to achieve from quitting PMO."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="It is an accepted fact in our society that it is very difficult to stop PMO. Even books and forums advising you how to do so usually start off by telling you how difficult it is. The truth is that it is ridiculously easy. Yes, I can understand you questioning that statement but just consider it. If your aim is to run a mile in under four minutes, that&rsquo;s difficult. You may have to undergo years of hard training and even then you may be physically incapable of doing it.">
<meta name="description" content="It is an accepted fact in our society that it is very difficult to stop PMO. Even books and forums advising you how to do so usually start off by telling you how difficult it is. The truth is that it is ridiculously easy. Yes, I can understand you questioning that statement but just consider it. If your aim is to run a mile in under four minutes, that&rsquo;s difficult. You may have to undergo years of hard training and even then you may be physically incapable of doing it."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Many PMOers resort to cutting down either as a stepping-stone towards stopping or as an attempt to control the little monster. Many recommend cutting down or a porn diet1 as a pick-me-up. Obviously, the less you PMO the better off you are but as a stepping-stone to stopping, cutting down is fatal. It is these attempts to cut down that keep us trapped all our lives.
Usually cutting down follows failed attempts to stop.">
Usually cutting down follows failed attempts to stop."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="“Just one peek is a myth you must get out of your mind:
It is just one peek that gets us started in the first place. It is just one peek to tide us over a difficult patch or on a special occasion that defeats most of our attempts to stop. It is just one peek that, when PMOers have succeeded in breaking the addiction, sends them back into the trap.">
It is just one peek that gets us started in the first place. It is just one peek to tide us over a difficult patch or on a special occasion that defeats most of our attempts to stop. It is just one peek that, when PMOers have succeeded in breaking the addiction, sends them back into the trap."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Heavy PMOers tend to envy the casual porn user. We&rsquo;ve all met these characters: Oh, I can go all week without a PMO, it really doesn&rsquo;t bother me. We think: I wish I were like that! I know this is hard to believe but no PMOer enjoys being a PMOer. Never forget:
No PMOer ever decided to become a PMOer casual or otherwise, therefore: All PMOers feel stupid, therefore: All PMOers have to lie to themselves and other people in a vain attempt to justify their stupidity.">
No PMOer ever decided to become a PMOer casual or otherwise, therefore: All PMOers feel stupid, therefore: All PMOers have to lie to themselves and other people in a vain attempt to justify their stupidity."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The YouTube PMOer should be grouped with casual PMOers but the effects of a YouTube PMOer are so insidious that it merits a separate chapter. It can lead to the breakdown of personal self control. In one case it nearly caused a split for a No-Fap forum user.
“I was three weeks into one of my failed attempts to stop. The attempt had been triggered off by my wife&rsquo;s worry about my unreliable hard-ons and lack of interest.">
“I was three weeks into one of my failed attempts to stop. The attempt had been triggered off by my wife&rsquo;s worry about my unreliable hard-ons and lack of interest."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Health of mind and body are the main reason why we should want to stop but then they always have been. We do not actually need scientific research and knowledge in brain chemistry to tell us that internet porn is addictive and can potentially shatter our lives. These bodies of ours are the most sophisticated objects on the planet and any PMOer knows instantly, from the first session, that the stimulus can go to excess and it can turn poisonous.">
<meta name="description" content="Health of mind and body are the main reason why we should want to stop but then they always have been. We do not actually need scientific research and knowledge in brain chemistry to tell us that internet porn is addictive and can potentially shatter our lives. These bodies of ours are the most sophisticated objects on the planet and any PMOer knows instantly, from the first session, that the stimulus can go to excess and it can turn poisonous."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Apart from the obvious point that as it is doing you no good, now is the right time to stop. I believe timing is important. Our society treats internet porn flippantly as a slightly distasteful habit that can not injure your health. It is not. It is drug addiction, a disease and a destroyer of relationships in society. The worst thing that happens in most PMOers lives is getting hooked on that awful addiction.">
<meta name="description" content="Apart from the obvious point that as it is doing you no good, now is the right time to stop. I believe timing is important. Our society treats internet porn flippantly as a slightly distasteful habit that can not injure your health. It is not. It is drug addiction, a disease and a destroyer of relationships in society. The worst thing that happens in most PMOers lives is getting hooked on that awful addiction."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="No! Once that little porn monster is dead and your body stops craving dopamine and the porn water slides in your brain start to fade due to lack of greasing, any remaining brainwashing will vanish and you will find yourself both physically and mentally better equipped not only to cope with the stresses and strains of life but to enjoy the good times to the full.
There is only one danger and that is the influence of those who still use sex as their lying crutch and damned pleasure.">
There is only one danger and that is the influence of those who still use sex as their lying crutch and damned pleasure."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This is another myth about PMOing spread mainly by PMOers who, when attempting to stop on the Willpower Method, substitute mental gymnastics - they propose to act -Jekyll and Hyde: “Porn is for my alter ego side and real life romance is for my relationship side.” Nothing is further from the truth. The porn waterslides - the deltaFosBs and all the brain changes are going to overrun the real life romance and will make it less desirable.">
<meta name="description" content="This is another myth about PMOing spread mainly by PMOers who, when attempting to stop on the Willpower Method, substitute mental gymnastics - they propose to act -Jekyll and Hyde: “Porn is for my alter ego side and real life romance is for my relationship side.” Nothing is further from the truth. The porn waterslides - the deltaFosBs and all the brain changes are going to overrun the real life romance and will make it less desirable."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Many PMOers, while trying to stop on the Willpower Method, attempt to increase their motivation by building up false incentives. There are many examples of this, a typical one is, “I will reward myself with a gift after no-PMO for a month.” This appears to be a logical and sensible approach but in fact it is false because any self-respecting PMOer would rather continue PMOing every day than receive a “self given gift.">
<meta name="description" content="Many PMOers, while trying to stop on the Willpower Method, attempt to increase their motivation by building up false incentives. There are many examples of this, a typical one is, “I will reward myself with a gift after no-PMO for a month.” This appears to be a logical and sensible approach but in fact it is false because any self-respecting PMOer would rather continue PMOing every day than receive a “self given gift."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This chapter contains instructions about the easy way to stop PMO. Providing you follow the instructions, you will find that stopping ranges from relatively easy to enjoyable! But remember the definition of a brunette: a girl who didn&rsquo;t read the instructions on the bottle. It is ridiculously easy to stop PMO. All you have to do is two things:
Make the decision that you are never going to PMO again. Don&rsquo;t mope about it.">
Make the decision that you are never going to PMO again. Don&rsquo;t mope about it."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="For up to three weeks after your last PMO session you may be subjected to withdrawal pangs. These consist of two quite separate factors:
The withdrawal pangs of dopamine, that empty, insecure feeling, like a hunger, which PMOers identify as a craving or “something I must to do” feeling. The psychological trigger of certain external stimuli such as a commercial, online browsing, a telephone conversation etc. It is the failure to understand and to differentiate between these two distinct factors that makes it so difficult for PMOers to achieve success on the Willpower Method and it&rsquo;s also the reason why many who do achieve it fall into the trap again.">
The withdrawal pangs of dopamine, that empty, insecure feeling, like a hunger, which PMOers identify as a craving or “something I must to do” feeling. The psychological trigger of certain external stimuli such as a commercial, online browsing, a telephone conversation etc. It is the failure to understand and to differentiate between these two distinct factors that makes it so difficult for PMOers to achieve success on the Willpower Method and it&rsquo;s also the reason why many who do achieve it fall into the trap again."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This is the undoing of many PMOers who try to stop on the Willpower Method. They will go through three or four days and then have the odd peek or a PMO or two to tide them over. They do not realize the devastating effect this has on their morale.
For most PMOers that first peek at the tube site harem was not as good as sex with a real person.">
For most PMOers that first peek at the tube site harem was not as good as sex with a real person."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The combinations of factors that will determine how easily each individual PMOer will quit are infinite. To start with, each of us has his own character, type of work, personal circumstances, timing, etc. Certain professions may make it harder than others but providing the brainwashing is removed it doesn&rsquo;t have to be so. A few individual examples will help.
It tends to be particularly difficult for members of the medical profession.">
It tends to be particularly difficult for members of the medical profession."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="There are two main reasons for failure. The first is the influence of external stimuli - a commercial, online news articles, internet browsing etc. At a weak moment or even during a social occasion somebody will get intimate with their partner. I have already dealt with this topic at length. Use that moment to remind yourself that there is no such thing as one visit or one peek. Rejoice in the fact that you have broken the chain of mental slavery.">
<meta name="description" content="There are two main reasons for failure. The first is the influence of external stimuli - a commercial, online news articles, internet browsing etc. At a weak moment or even during a social occasion somebody will get intimate with their partner. I have already dealt with this topic at length. Use that moment to remind yourself that there is no such thing as one visit or one peek. Rejoice in the fact that you have broken the chain of mental slavery."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Substitutes include restricting to porn magazines, static internet images, going on a porn-diet1 etc. DO NOT USE ANY OF THEM. They make it harder, not easier. If you do get a pang and use a substitute it will prolong the pang and make it harder. What you are really saying is, “I need to PMO to fill the void.” It will be like giving in to a hijacker or the tantrums of a child.">
<meta name="description" content="Substitutes include restricting to porn magazines, static internet images, going on a porn-diet1 etc. DO NOT USE ANY OF THEM. They make it harder, not easier. If you do get a pang and use a substitute it will prolong the pang and make it harder. What you are really saying is, “I need to PMO to fill the void.” It will be like giving in to a hijacker or the tantrums of a child."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="I have been direct in my advice so far and would ask you to treat this advice as instruction rather than suggestion. I am explicit and direct, first because there are sound, practical reasons for my advice and second, because those reasons have been backed up by thousands of case studies. On the question of whether or not to try to avoid temptation during the withdrawal period, I regret that I cannot be direct.">
<meta name="description" content="I have been direct in my advice so far and would ask you to treat this advice as instruction rather than suggestion. I am explicit and direct, first because there are sound, practical reasons for my advice and second, because those reasons have been backed up by thousands of case studies. On the question of whether or not to try to avoid temptation during the withdrawal period, I regret that I cannot be direct."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="The moment of revelation usually takes place about three weeks after stopping. The sky appears to become brighter and it is the moment when the brainwashing ends completely. When instead of telling yourself you do not need to PMO, you suddenly realize that the last thread is broken and you can enjoy the rest of your life without ever needing PMO again. It is also usually from this point that you start looking at other PMOers as objects of pity.">
<meta name="description" content="The moment of revelation usually takes place about three weeks after stopping. The sky appears to become brighter and it is the moment when the brainwashing ends completely. When instead of telling yourself you do not need to PMO, you suddenly realize that the last thread is broken and you can enjoy the rest of your life without ever needing PMO again. It is also usually from this point that you start looking at other PMOers as objects of pity."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Having decided on your timing, you are now ready to visit your harem one last time. Before you do so, check on the two essentials:
Do you feel certain of success? Have you a feeling of doom and gloom or a sense of excitement that you are about to achieve something marvelous? If you have any doubts, re-read the book first. Remember that you never decided to fall into the porn trap.">
Do you feel certain of success? Have you a feeling of doom and gloom or a sense of excitement that you are about to achieve something marvelous? If you have any doubts, re-read the book first. Remember that you never decided to fall into the porn trap."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="No PMOer, given the chance of going back to the time before he became hooked with the knowledge he has now, would opt to start. Many of the them who consult me are convinced that if I could only help them stop, they would never dream of PMOing again, and yet thousands of PMOers successfully kick the habit for many years and lead perfectly happy lives, only to get trapped once again.">
<meta name="description" content="No PMOer, given the chance of going back to the time before he became hooked with the knowledge he has now, would opt to start. Many of the them who consult me are convinced that if I could only help them stop, they would never dream of PMOing again, and yet thousands of PMOers successfully kick the habit for many years and lead perfectly happy lives, only to get trapped once again."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="This method will be pooh-poohed by the so-called experts - as I have kept it thin, deliberately, on the science side of porn addiction. This hackbook is based on a very successful technique used by Alan Carr for quitting smoking, alcohol and gambling. I have personally broken away from the prisons of cigarette, alcohol and internet porn with this technique. Id like to add here that Ive tried some of the best programmes - such as CBT, DEADS and AVERT before arriving at the EasyWay.">
<meta name="description" content="This method will be pooh-poohed by the so-called experts - as I have kept it thin, deliberately, on the science side of porn addiction. This hackbook is based on a very successful technique used by Alan Carr for quitting smoking, alcohol and gambling. I have personally broken away from the prisons of cigarette, alcohol and internet porn with this technique. Id like to add here that Ive tried some of the best programmes - such as CBT, DEADS and AVERT before arriving at the EasyWay."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="PMOers are panicking nowadays. They sense that there is a change in the way internet porn is perceived by men and women. Internet porns addictive nature is being studied by more and more people. It is now rightly regarded not as the same as old traditional porn. Its easy reach and effortless availability raises alarm even in the hearts of porn supporters. They also sense that their crusade for free speech and free thought is being hijacked by vicious elements.">
<meta name="description" content="PMOers are panicking nowadays. They sense that there is a change in the way internet porn is perceived by men and women. Internet porns addictive nature is being studied by more and more people. It is now rightly regarded not as the same as old traditional porn. Its easy reach and effortless availability raises alarm even in the hearts of porn supporters. They also sense that their crusade for free speech and free thought is being hijacked by vicious elements."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="HELP GET YOUR PMO FRIENDS TO READ THIS BOOK First study the contents of this book and try to put yourself in the place of the PMOer. Do not force him to read this book or try to stop him by telling him he is ruining his health or playing with fire. He already knows this better than you do. PMOers do not continue in it because they enjoy it or because they want to.">
<meta name="description" content="HELP GET YOUR PMO FRIENDS TO READ THIS BOOK First study the contents of this book and try to put yourself in the place of the PMOer. Do not force him to read this book or try to stop him by telling him he is ruining his health or playing with fire. He already knows this better than you do. PMOers do not continue in it because they enjoy it or because they want to."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Should I tell my wife, girlfriend and SO about my PMO? The intention here is that it would help you in quitting. I am of the solid opinion that all these are not needed. It would only reinforce your weakness against PMO.
If you slip, you will feel miserable and guilty if you are following the Willpower Method. Add to that the feeling of deceiving your loved one will definitely push you through the vicious cycle of slip-lapse-relapse.">
If you slip, you will feel miserable and guilty if you are following the Willpower Method. Add to that the feeling of deceiving your loved one will definitely push you through the vicious cycle of slip-lapse-relapse."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Follow all the instructions. Keep an open mind. Start with a feeling of elation. Ignore all advice and influences that conflict with EasyPeasyway Resist any promise of a temporary fix. Get it clear in your mind: PMO gives you no genuine pleasure or crutch; you are not making a sacrifice; there is nothing to give up and no reason to feel deprived. Don&rsquo;t wait to quit. Do it now! Make a decision never to PMO again and never question it.">
<meta name="description" content="Follow all the instructions. Keep an open mind. Start with a feeling of elation. Ignore all advice and influences that conflict with EasyPeasyway Resist any promise of a temporary fix. Get it clear in your mind: PMO gives you no genuine pleasure or crutch; you are not making a sacrifice; there is nothing to give up and no reason to feel deprived. Don&rsquo;t wait to quit. Do it now! Make a decision never to PMO again and never question it."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="“I can stop PMO, even though it appears &lsquo;hard&rsquo; to do so. Its not too hard and no matter how much trouble it takes, its worth it!” “If I keep ignoring and never giving into my powerful urges to PMO, I will make it easier and easier to resist them” “I can fully and unconditionally accept myself- yes, even with all my flaws and failings” “PMO seems to quickly &lsquo;cure&rsquo; my problems but actually makes them worse.">
<meta name="description" content="“I can stop PMO, even though it appears &lsquo;hard&rsquo; to do so. Its not too hard and no matter how much trouble it takes, its worth it!” “If I keep ignoring and never giving into my powerful urges to PMO, I will make it easier and easier to resist them” “I can fully and unconditionally accept myself- yes, even with all my flaws and failings” “PMO seems to quickly &lsquo;cure&rsquo; my problems but actually makes them worse."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="You are relaxed now and because you are so relaxed you begin to feel free from all tensions, anxiety and fear. You now realize that you are more confident and sure of yourself because you have taken the enormous first step toward helping yourself. Great!
You begin to feel this strength from within, motivating you to overcome any and every obstacle that may stand in the way of your happiness, social life and home life.">
You begin to feel this strength from within, motivating you to overcome any and every obstacle that may stand in the way of your happiness, social life and home life."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="As you go deeper and deeper relaxed all of the sounds fade away in the distance and you pay attention only to the sound of my voice. As you listen carefully to the sound of my voice, we are going to remove a number of suggestions which have been in your mind. We are going to remove them completely and as you listen carefully to them we&rsquo;re simply going to dissolve them&hellip; throw them out of your mind completely and forever&hellip; Nothing disturbs you and nothing bothers you and nothing can distract you in any way from listening to the sound of my voice&hellip; and from completely accepting everything I tell you&hellip; for everything I tell you is the absolute truth to you&hellip; and we&rsquo;re going to remove all suggestions from your mind that have been detrimental to you in the past.">
<meta name="description" content="As you go deeper and deeper relaxed all of the sounds fade away in the distance and you pay attention only to the sound of my voice. As you listen carefully to the sound of my voice, we are going to remove a number of suggestions which have been in your mind. We are going to remove them completely and as you listen carefully to them we&rsquo;re simply going to dissolve them&hellip; throw them out of your mind completely and forever&hellip; Nothing disturbs you and nothing bothers you and nothing can distract you in any way from listening to the sound of my voice&hellip; and from completely accepting everything I tell you&hellip; for everything I tell you is the absolute truth to you&hellip; and we&rsquo;re going to remove all suggestions from your mind that have been detrimental to you in the past."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="Now as you sink deeper and deeper relaxed all of the sounds fade away in the distance. You pay no attention to any other sound but the sound of my voice. You sink deeper and deeper with every breath you take. Deeper and deeper and deeper, way down, deeper and deeper relaxed.
In the past porn may have been to you something that meant life. In your mind you may have accepted a suggestion that porn saves your life from boredom or porn protects you from being injured socially, porn is good for you in some manner or another.">
In the past porn may have been to you something that meant life. In your mind you may have accepted a suggestion that porn saves your life from boredom or porn protects you from being injured socially, porn is good for you in some manner or another."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="To an individual who has had a PMO problem, porn is poison. It&rsquo;s poison in two ways. First of all it&rsquo;s poison because it breaks down the very will power, the very ego, the very faith in oneself that the individual is able to build up. And so it is a psychological poison because having once conquered the porn problem, if you ever allow it to get back into you again then you begin thinking about yourself all the thoughts that you thought about yourself before, namely, well I really am no good anyway, I really didn&rsquo;t lick it and so on.">
<meta name="description" content="To an individual who has had a PMO problem, porn is poison. It&rsquo;s poison in two ways. First of all it&rsquo;s poison because it breaks down the very will power, the very ego, the very faith in oneself that the individual is able to build up. And so it is a psychological poison because having once conquered the porn problem, if you ever allow it to get back into you again then you begin thinking about yourself all the thoughts that you thought about yourself before, namely, well I really am no good anyway, I really didn&rsquo;t lick it and so on."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="“Go inside and try in vain to have the same problem. It was a terrible problem, wasn&rsquo;t it? You want to make changes, haven&rsquo;t you?&hellip; What would it be like when you have made those changes, now? In the future as you look back and see what it was like to have had that problem&hellip; as you think about it now, if you could make this change for yourself so that you could STOP&hellip; having made that change and see yourself now.">
<meta name="description" content="“Go inside and try in vain to have the same problem. It was a terrible problem, wasn&rsquo;t it? You want to make changes, haven&rsquo;t you?&hellip; What would it be like when you have made those changes, now? In the future as you look back and see what it was like to have had that problem&hellip; as you think about it now, if you could make this change for yourself so that you could STOP&hellip; having made that change and see yourself now."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="https://sites.google.com/site/hackbookeasypeasy/home
April 2017">
April 2017"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="">
<meta name="description" content="A blog about the things I&#39;m interested in - Japanese and posting obscure problems I&#39;ve solved. Will post my takes on 神ゲー vinnies"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -10,6 +10,45 @@
<atom:link href="https://vodoraslo.xyz/hackbook/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Meta Description in Hugo</title>
<link>https://vodoraslo.xyz/blog/meta-description-in-hugo/</link>
<pubDate>Wed, 04 Jan 2023 22:52:24 +0200</pubDate>
<guid>https://vodoraslo.xyz/blog/meta-description-in-hugo/</guid>
<description>&lt;h1 id=&#34;adding-meta-description-in-hugo&#34;&gt;Adding meta description in Hugo&lt;/h1&gt;
&lt;p&gt;I assume you are using Luke Smith&amp;rsquo;s theme - Lugo, if you are not, you&amp;rsquo;d have to find these files yourself (e.g. search using vscode).&lt;/p&gt;
&lt;h2 id=&#34;setting-a-global-meta-description&#34;&gt;Setting a global meta description&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate your config.toml or config.yaml file&lt;/li&gt;
&lt;li&gt;Add the following line inside it&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For config.toml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;params&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;description&lt;/span&gt; = &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The global meta description of your website&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For config.yaml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;params&lt;/span&gt;:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;The global meta description of your website&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;It won&amp;rsquo;t work just yet because you have update the &lt;code&gt;baseof.html&lt;/code&gt; file.&lt;/p&gt;
&lt;h2 id=&#34;updating-the-baseofhtml-file&#34;&gt;Updating the baseof.html file&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate baseof.html&lt;/li&gt;
&lt;li&gt;Add or change the meta description line with the following&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&amp;lt;&lt;span style=&#34;color:#f92672&#34;&gt;meta&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;name&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;description&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;content&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&amp;#34;&lt;/span&gt;/&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And now if you start your Hugo server locally with &lt;code&gt;hugo serve --noHTTPCache&lt;/code&gt; and you right click on your page -&amp;gt; View Page Source -&amp;gt; Search for the meta description tag. It should match what you left in the config file.&lt;/p&gt;
&lt;h2 id=&#34;replacing-the-global-description-with-a-custom-one&#34;&gt;Replacing the global description with a custom one&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Have a markdown file ready&lt;/li&gt;
&lt;li&gt;In the preamble, add&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Your custom description for this page&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!&lt;/p&gt;
</description>
</item>
<item>
<title>Multiple Index Pages in Hugo</title>
<link>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</link>

View file

@ -9,7 +9,7 @@
<meta name="description" content="Obligatory Hello World! trying to see which hugo theme i like best
had some issues with papermod and their css not working so for now i&rsquo;ll use lugo
stuff i like touching grass and nature in general (wannabe farmer) にっぽんese &lsquo;ate manga &lsquo;ate anime luv vinnies and jp youtube simple as i think the css looks pretty alright
im adding this bit in just to check if the scuffed shell script i made actually works (it&rsquo;s supposed to cd into the .">
im adding this bit in just to check if the scuffed shell script i made actually works (it&rsquo;s supposed to cd into the ."/>
<meta name="keywords" content="updates">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">

View file

@ -7,7 +7,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="VODORASLO vodoraslo == seaweed Updates Blog Hackbook EasyPeasy You can contact me by email here">
<meta name="description" content="A blog about the things I&#39;m interested in - Japanese and posting obscure problems I&#39;ve solved."/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -5,11 +5,50 @@
<description>Recent content on vodoraslo</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 03 Jan 2023 22:36:03 +0200</lastBuildDate>
<lastBuildDate>Wed, 04 Jan 2023 22:52:24 +0200</lastBuildDate>
<atom:link href="https://vodoraslo.xyz/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Meta Description in Hugo</title>
<link>https://vodoraslo.xyz/blog/meta-description-in-hugo/</link>
<pubDate>Wed, 04 Jan 2023 22:52:24 +0200</pubDate>
<guid>https://vodoraslo.xyz/blog/meta-description-in-hugo/</guid>
<description>&lt;h1 id=&#34;adding-meta-description-in-hugo&#34;&gt;Adding meta description in Hugo&lt;/h1&gt;
&lt;p&gt;I assume you are using Luke Smith&amp;rsquo;s theme - Lugo, if you are not, you&amp;rsquo;d have to find these files yourself (e.g. search using vscode).&lt;/p&gt;
&lt;h2 id=&#34;setting-a-global-meta-description&#34;&gt;Setting a global meta description&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate your config.toml or config.yaml file&lt;/li&gt;
&lt;li&gt;Add the following line inside it&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For config.toml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;params&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;description&lt;/span&gt; = &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The global meta description of your website&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For config.yaml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;params&lt;/span&gt;:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;The global meta description of your website&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;It won&amp;rsquo;t work just yet because you have update the &lt;code&gt;baseof.html&lt;/code&gt; file.&lt;/p&gt;
&lt;h2 id=&#34;updating-the-baseofhtml-file&#34;&gt;Updating the baseof.html file&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate baseof.html&lt;/li&gt;
&lt;li&gt;Add or change the meta description line with the following&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&amp;lt;&lt;span style=&#34;color:#f92672&#34;&gt;meta&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;name&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;description&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;content&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&amp;#34;&lt;/span&gt;/&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And now if you start your Hugo server locally with &lt;code&gt;hugo serve --noHTTPCache&lt;/code&gt; and you right click on your page -&amp;gt; View Page Source -&amp;gt; Search for the meta description tag. It should match what you left in the config file.&lt;/p&gt;
&lt;h2 id=&#34;replacing-the-global-description-with-a-custom-one&#34;&gt;Replacing the global description with a custom one&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Have a markdown file ready&lt;/li&gt;
&lt;li&gt;In the preamble, add&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Your custom description for this page&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!&lt;/p&gt;
</description>
</item>
<item>
<title>Multiple Index Pages in Hugo</title>
<link>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</link>

View file

@ -3,18 +3,21 @@
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://vodoraslo.xyz/</loc>
<lastmod>2023-01-03T22:36:03+02:00</lastmod>
<lastmod>2023-01-04T22:52:24+02:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/tags/blog/</loc>
<lastmod>2023-01-03T22:36:03+02:00</lastmod>
<lastmod>2023-01-04T22:52:24+02:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/blog/</loc>
<lastmod>2023-01-03T22:36:03+02:00</lastmod>
<lastmod>2023-01-04T22:52:24+02:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</loc>
<lastmod>2023-01-03T22:36:03+02:00</lastmod>
<loc>https://vodoraslo.xyz/blog/meta-description-in-hugo/</loc>
<lastmod>2023-01-04T22:52:24+02:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/tags/</loc>
<lastmod>2023-01-04T22:52:24+02:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</loc>
<lastmod>2023-01-03T22:36:03+02:00</lastmod>
</url><url>
<loc>https://vodoraslo.xyz/hackbook/</loc>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="">
<meta name="description" content="A blog about the things I&#39;m interested in - Japanese and posting obscure problems I&#39;ve solved. Will post my takes on 神ゲー vinnies"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
@ -17,6 +17,7 @@
<article>
<ul>
<li><time datetime="2023-01-04T22:52:24&#43;02:00">2023 Jan 04</time> &ndash; <a href="/blog/meta-description-in-hugo/">Meta Description in Hugo</a></li>
<li><time datetime="2023-01-03T22:36:03&#43;02:00">2023 Jan 03</time> &ndash; <a href="/blog/multiple-index-pages-in-hugo/">Multiple Index Pages in Hugo</a></li>
<li><time datetime="2022-12-17T22:33:25&#43;02:00">2022 Dec 17</time> &ndash; <a href="/blog/pluralization-issues/">Pluralization issues (Blogs instead of Blog)</a></li>
</ul>

View file

@ -5,11 +5,50 @@
<description>Recent content in blog on vodoraslo</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 03 Jan 2023 22:36:03 +0200</lastBuildDate>
<lastBuildDate>Wed, 04 Jan 2023 22:52:24 +0200</lastBuildDate>
<atom:link href="https://vodoraslo.xyz/tags/blog/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Meta Description in Hugo</title>
<link>https://vodoraslo.xyz/blog/meta-description-in-hugo/</link>
<pubDate>Wed, 04 Jan 2023 22:52:24 +0200</pubDate>
<guid>https://vodoraslo.xyz/blog/meta-description-in-hugo/</guid>
<description>&lt;h1 id=&#34;adding-meta-description-in-hugo&#34;&gt;Adding meta description in Hugo&lt;/h1&gt;
&lt;p&gt;I assume you are using Luke Smith&amp;rsquo;s theme - Lugo, if you are not, you&amp;rsquo;d have to find these files yourself (e.g. search using vscode).&lt;/p&gt;
&lt;h2 id=&#34;setting-a-global-meta-description&#34;&gt;Setting a global meta description&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate your config.toml or config.yaml file&lt;/li&gt;
&lt;li&gt;Add the following line inside it&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For config.toml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;params&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;description&lt;/span&gt; = &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The global meta description of your website&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For config.yaml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;params&lt;/span&gt;:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;The global meta description of your website&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;It won&amp;rsquo;t work just yet because you have update the &lt;code&gt;baseof.html&lt;/code&gt; file.&lt;/p&gt;
&lt;h2 id=&#34;updating-the-baseofhtml-file&#34;&gt;Updating the baseof.html file&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate baseof.html&lt;/li&gt;
&lt;li&gt;Add or change the meta description line with the following&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&amp;lt;&lt;span style=&#34;color:#f92672&#34;&gt;meta&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;name&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;description&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;content&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&amp;#34;&lt;/span&gt;/&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And now if you start your Hugo server locally with &lt;code&gt;hugo serve --noHTTPCache&lt;/code&gt; and you right click on your page -&amp;gt; View Page Source -&amp;gt; Search for the meta description tag. It should match what you left in the config file.&lt;/p&gt;
&lt;h2 id=&#34;replacing-the-global-description-with-a-custom-one&#34;&gt;Replacing the global description with a custom one&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Have a markdown file ready&lt;/li&gt;
&lt;li&gt;In the preamble, add&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Your custom description for this page&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!&lt;/p&gt;
</description>
</item>
<item>
<title>Multiple Index Pages in Hugo</title>
<link>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</link>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="">
<meta name="description" content="A blog about the things I&#39;m interested in - Japanese and posting obscure problems I&#39;ve solved. Will post my takes on 神ゲー vinnies"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
@ -17,7 +17,7 @@
<article>
<ul>
<li><time datetime="2023-01-03T22:36:03&#43;02:00">2023 Jan 03</time> &ndash; <a href="/tags/blog/">blog</a></li>
<li><time datetime="2023-01-04T22:52:24&#43;02:00">2023 Jan 04</time> &ndash; <a href="/tags/blog/">blog</a></li>
<li><time datetime="2022-12-27T14:24:24&#43;02:00">2022 Dec 27</time> &ndash; <a href="/tags/updates/">updates</a></li>
</ul>

View file

@ -5,11 +5,50 @@
<description>Recent content in Tags on vodoraslo</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Tue, 03 Jan 2023 22:36:03 +0200</lastBuildDate>
<lastBuildDate>Wed, 04 Jan 2023 22:52:24 +0200</lastBuildDate>
<atom:link href="https://vodoraslo.xyz/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Meta Description in Hugo</title>
<link>https://vodoraslo.xyz/blog/meta-description-in-hugo/</link>
<pubDate>Wed, 04 Jan 2023 22:52:24 +0200</pubDate>
<guid>https://vodoraslo.xyz/blog/meta-description-in-hugo/</guid>
<description>&lt;h1 id=&#34;adding-meta-description-in-hugo&#34;&gt;Adding meta description in Hugo&lt;/h1&gt;
&lt;p&gt;I assume you are using Luke Smith&amp;rsquo;s theme - Lugo, if you are not, you&amp;rsquo;d have to find these files yourself (e.g. search using vscode).&lt;/p&gt;
&lt;h2 id=&#34;setting-a-global-meta-description&#34;&gt;Setting a global meta description&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate your config.toml or config.yaml file&lt;/li&gt;
&lt;li&gt;Add the following line inside it&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For config.toml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;params&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;description&lt;/span&gt; = &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The global meta description of your website&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For config.yaml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;params&lt;/span&gt;:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;The global meta description of your website&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;It won&amp;rsquo;t work just yet because you have update the &lt;code&gt;baseof.html&lt;/code&gt; file.&lt;/p&gt;
&lt;h2 id=&#34;updating-the-baseofhtml-file&#34;&gt;Updating the baseof.html file&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate baseof.html&lt;/li&gt;
&lt;li&gt;Add or change the meta description line with the following&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&amp;lt;&lt;span style=&#34;color:#f92672&#34;&gt;meta&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;name&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;description&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;content&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&amp;#34;&lt;/span&gt;/&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And now if you start your Hugo server locally with &lt;code&gt;hugo serve --noHTTPCache&lt;/code&gt; and you right click on your page -&amp;gt; View Page Source -&amp;gt; Search for the meta description tag. It should match what you left in the config file.&lt;/p&gt;
&lt;h2 id=&#34;replacing-the-global-description-with-a-custom-one&#34;&gt;Replacing the global description with a custom one&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Have a markdown file ready&lt;/li&gt;
&lt;li&gt;In the preamble, add&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Your custom description for this page&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!&lt;/p&gt;
</description>
</item>
<item>
<title>Multiple Index Pages in Hugo</title>
<link>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</link>

View file

@ -6,7 +6,7 @@
<link rel='alternate' type='application/rss+xml' title="vodoraslo RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel="icon" href="/favicon.ico">
<meta name="description" content="">
<meta name="description" content="A blog about the things I&#39;m interested in - Japanese and posting obscure problems I&#39;ve solved. Will post my takes on 神ゲー vinnies"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">

View file

@ -10,6 +10,45 @@
<atom:link href="https://vodoraslo.xyz/tags/updates/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Meta Description in Hugo</title>
<link>https://vodoraslo.xyz/blog/meta-description-in-hugo/</link>
<pubDate>Wed, 04 Jan 2023 22:52:24 +0200</pubDate>
<guid>https://vodoraslo.xyz/blog/meta-description-in-hugo/</guid>
<description>&lt;h1 id=&#34;adding-meta-description-in-hugo&#34;&gt;Adding meta description in Hugo&lt;/h1&gt;
&lt;p&gt;I assume you are using Luke Smith&amp;rsquo;s theme - Lugo, if you are not, you&amp;rsquo;d have to find these files yourself (e.g. search using vscode).&lt;/p&gt;
&lt;h2 id=&#34;setting-a-global-meta-description&#34;&gt;Setting a global meta description&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate your config.toml or config.yaml file&lt;/li&gt;
&lt;li&gt;Add the following line inside it&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;For config.toml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-toml&#34; data-lang=&#34;toml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;[&lt;span style=&#34;color:#a6e22e&#34;&gt;params&lt;/span&gt;]
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;description&lt;/span&gt; = &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;The global meta description of your website&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For config.yaml&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;params&lt;/span&gt;:
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#ae81ff&#34;&gt;The global meta description of your website&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;It won&amp;rsquo;t work just yet because you have update the &lt;code&gt;baseof.html&lt;/code&gt; file.&lt;/p&gt;
&lt;h2 id=&#34;updating-the-baseofhtml-file&#34;&gt;Updating the baseof.html file&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Locate baseof.html&lt;/li&gt;
&lt;li&gt;Add or change the meta description line with the following&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-html&#34; data-lang=&#34;html&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&amp;lt;&lt;span style=&#34;color:#f92672&#34;&gt;meta&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;name&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;description&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#a6e22e&#34;&gt;content&lt;/span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}&amp;#34;&lt;/span&gt;/&amp;gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And now if you start your Hugo server locally with &lt;code&gt;hugo serve --noHTTPCache&lt;/code&gt; and you right click on your page -&amp;gt; View Page Source -&amp;gt; Search for the meta description tag. It should match what you left in the config file.&lt;/p&gt;
&lt;h2 id=&#34;replacing-the-global-description-with-a-custom-one&#34;&gt;Replacing the global description with a custom one&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;Have a markdown file ready&lt;/li&gt;
&lt;li&gt;In the preamble, add&lt;/li&gt;
&lt;/ol&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f92672&#34;&gt;description&lt;/span&gt;: &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Your custom description for this page&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;---
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Following these steps would guarantee that you have a meta description for everypage with the ability for creating a custom one whenever you need it!&lt;/p&gt;
</description>
</item>
<item>
<title>Multiple Index Pages in Hugo</title>
<link>https://vodoraslo.xyz/blog/multiple-index-pages-in-hugo/</link>

View file

@ -7,7 +7,7 @@
<link rel='stylesheet' type='text/css' href='/style.css'>
{{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">
{{ end -}}
<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
<meta name="description" content="{{ if .Page.Params.description }}{{ .Page.Params.description }}{{ else if .Summary}}{{ .Summary }}{{else}}{{ .Site.Params.description}}{{ end }}"/>
{{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
{{ end -}}
<meta name="viewport" content="width=device-width, initial-scale=1">