Compare commits

...

9 commits

Author SHA1 Message Date
Lukas Joswiak 4ddf2e9b5d Rebase 2021-09-13 23:43:04 -07:00
Lukas Joswiak 4f9a391eb8 Don't use Jekyll when building page 2021-09-13 23:38:07 -07:00
Lukas Joswiak 72dc723bae Fix base URL 2021-09-13 23:24:29 -07:00
Lukas Joswiak 83b24a2349 Add example site 2021-09-13 23:24:29 -07:00
Lukas Joswiak d712622d17 GitHub pages test 2021-09-13 23:24:29 -07:00
Lukas Joswiak 9decabbbad Fix timestamp render issue for low width screens
The font-size rule specified with ems was recursively applying to the
<time> child, causing the date itself to be even smaller. I noticied
this in Safari on iOS.
2021-09-13 23:21:48 -07:00
Lukas Joswiak 0386588b47 Update default font to use newer system fonts 2021-09-13 22:16:00 -07:00
Lukas Joswiak d338b2e824 Update demo URL 2021-08-20 21:29:49 -07:00
Lukas Joswiak b2941c2fcf
Add taxonomies (#18)
https://gohugo.io/content-management/taxonomies/
2021-04-18 18:11:40 -07:00
45 changed files with 2121 additions and 11 deletions

0
.nojekyll Normal file
View file

View file

@ -1,6 +1,6 @@
# Etch
Etch is a simple, responsive theme for [Hugo](https://gohugo.io) with a focus on writing. A live demo is available at https://themes.gohugo.io/theme/etch/.
Etch is a simple, responsive theme for [Hugo](https://gohugo.io) with a focus on writing. A live demo is available at https://lukasjoswiak.github.io/etch/.
<img src="https://raw.githubusercontent.com/LukasJoswiak/etch/master/images/screenshot_small.png" alt="screenshot" width="545px">

View file

@ -8,6 +8,8 @@ html {
body {
color: #ebebeb;
background: #121212;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
header#banner a {

View file

@ -9,7 +9,7 @@ html {
body {
font-size: 16px;
font-size: 1.6rem;
font-family: 'Helvetica Neue', 'Arial', sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
color: #313a3d;
width: 100%;
margin: 0 auto;
@ -139,10 +139,11 @@ main#content header#post-header h1 {
display: block;
font-size: 23px;
font-size: 2.3rem;
font-weight: 600;
line-height: 1.15;
}
main#content header#post-header div {
main#content header#post-header > div {
display: block;
font-size: 0.85em;
color: #767676;

View file

@ -27,8 +27,8 @@ main#content ul#posts {
/* single.html styles */
main#content header#post-header h1 {
font-size: 26px;
font-size: 2.6rem;
font-size: 24px;
font-size: 2.4rem;
}
main#content img {

49
docs/about/index.html Normal file
View file

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>About</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<article>
<header id="post-header">
<h1>About</h1>
<div></div>
</header><p>Written in Go, Hugo is an open source static site generator available under the <a href="https://github.com/gohugoio/hugo/blob/master/LICENSE">Apache Licence 2.0.</a> Hugo supports TOML, YAML and JSON data file types, Markdown and HTML content files and uses shortcodes to add rich content. Other notable features are taxonomies, multilingual mode, image processing, custom output formats, HTML/CSS/JS minification and support for Sass SCSS workflows.</p>
<p>Hugo makes use of a variety of open source projects including:</p>
<ul>
<li><a href="https://github.com/yuin/goldmark">https://github.com/yuin/goldmark</a></li>
<li><a href="https://github.com/alecthomas/chroma">https://github.com/alecthomas/chroma</a></li>
<li><a href="https://github.com/muesli/smartcrop">https://github.com/muesli/smartcrop</a></li>
<li><a href="https://github.com/spf13/cobra">https://github.com/spf13/cobra</a></li>
<li><a href="https://github.com/spf13/viper">https://github.com/spf13/viper</a></li>
</ul>
<p>Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.</p>
<p>Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.</p>
<p>Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.</p>
<p>Learn more and contribute on <a href="https://github.com/gohugoio">GitHub</a>.</p>
</article>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/categories/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Categories</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>Categories</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/categories/syntax/">
syntax
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/categories/themes/">
themes
<small><time>Mar 11, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/categories/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Categories on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/categories/</link>
<description>Recent content in Categories on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/categories/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/categories/syntax/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>syntax</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>syntax</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>syntax on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/categories/syntax/</link>
<description>Recent content in syntax on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/categories/syntax/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/categories/themes/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>themes</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>themes</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>themes on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/categories/themes/</link>
<description>Recent content in themes on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/categories/themes/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

1
docs/css/style.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Emoji Support</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<article>
<header id="post-header">
<h1>Emoji Support</h1>
<div>
<time>March 5, 2019</time>
</div>
</header><p>Emoji can be enabled in a Hugo project in a number of ways.</p>
<p>The <a href="https://gohugo.io/functions/emojify/"><code>emojify</code></a> function can be called directly in templates or <a href="https://gohugo.io/templates/shortcode-templates/#inline-shortcodes">Inline Shortcodes</a>.</p>
<p>To enable emoji globally, set <code>enableEmoji</code> to <code>true</code> in your sites <a href="https://gohugo.io/getting-started/configuration/">configuration</a> and then you can type emoji shorthand codes directly in content files; e.g.</p>
<p><span class="nowrap"><span class="emojify">🙈</span> <code>:see_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙉</span> <code>:hear_no_evil:</code></span> <span class="nowrap"><span class="emojify">🙊</span> <code>:speak_no_evil:</code></span></p>
<br>
<p>The <a href="http://www.emoji-cheat-sheet.com/">Emoji cheat sheet</a> is a useful reference for emoji shorthand codes.</p>
<hr>
<p><strong>N.B.</strong> The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g.</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-html" data-lang="html">.emoji {
font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
}</code></pre></div>
<style>
.emojify {
font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,Android Emoji,EmojiSymbols;
font-size: 2rem;
vertical-align: middle;
}
@media screen and (max-width:650px) {
.nowrap {
display: block;
margin: 25px 0;
}
}
</style></article>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

65
docs/index.html Normal file
View file

@ -0,0 +1,65 @@
<!DOCTYPE html>
<html><head>
<meta name="generator" content="Hugo 0.87.0" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Home</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<p>This is some info about me.</p>
<h3>Posts</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/rich-content/">
Rich Content
<small><time>Mar 10, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/placeholder-text/">
Placeholder Text
<small><time>Mar 9, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/emoji-support/">
Emoji Support
<small><time>Mar 5, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Home on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/</link>
<description>Recent content in Home on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,171 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Markdown Syntax Guide</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<article>
<header id="post-header">
<h1>Markdown Syntax Guide</h1>
<div>
<time>March 11, 2019</time>
</div>
</header><p>This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.</p>
<h2 id="headings">Headings</h2>
<p>The following HTML <code>&lt;h1&gt;</code><code>&lt;h6&gt;</code> elements represent six levels of section headings. <code>&lt;h1&gt;</code> is the highest section level while <code>&lt;h6&gt;</code> is the lowest.</p>
<h1 id="h1">H1</h1>
<h2 id="h2">H2</h2>
<h3 id="h3">H3</h3>
<h4 id="h4">H4</h4>
<h5 id="h5">H5</h5>
<h6 id="h6">H6</h6>
<h2 id="paragraph">Paragraph</h2>
<p>Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.</p>
<p>Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.</p>
<h2 id="blockquotes">Blockquotes</h2>
<p>The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a <code>footer</code> or <code>cite</code> element, and optionally with in-line changes such as annotations and abbreviations.</p>
<h4 id="blockquote-without-attribution">Blockquote without attribution</h4>
<blockquote>
<p>Tiam, ad mint andaepu dandae nostion secatur sequo quae.
<strong>Note</strong> that you can use <em>Markdown syntax</em> within a blockquote.</p>
</blockquote>
<h4 id="blockquote-with-attribution">Blockquote with attribution</h4>
<blockquote>
<p>Don&rsquo;t communicate by sharing memory, share memory by communicating.</p>
<cite>Rob Pike<sup id="fnref:1"><a href="#fn:1" class="footnote-ref" role="doc-noteref">1</a></sup></cite></p>
</blockquote>
<h2 id="tables">Tables</h2>
<p>Tables aren&rsquo;t part of the core Markdown spec, but Hugo supports supports them out-of-the-box.</p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bob</td>
<td>27</td>
</tr>
<tr>
<td>Alice</td>
<td>23</td>
</tr>
</tbody>
</table>
<h4 id="inline-markdown-within-tables">Inline Markdown within tables</h4>
<table>
<thead>
<tr>
<th>Inline   </th>
<th>Markdown   </th>
<th>In   </th>
<th>Table</th>
</tr>
</thead>
<tbody>
<tr>
<td><em>italics</em></td>
<td><strong>bold</strong></td>
<td><del>strikethrough</del>   </td>
<td><code>code</code></td>
</tr>
</tbody>
</table>
<h2 id="code-blocks">Code Blocks</h2>
<h4 id="code-block-with-backticks">Code block with backticks</h4>
<pre><code>html
&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;title&gt;Example HTML5 Document&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt;Test&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre><h4 id="code-block-indented-with-four-spaces">Code block indented with four spaces</h4>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;UTF-8&quot;&gt;
&lt;title&gt;Example HTML5 Document&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt;Test&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>
<h4 id="code-block-with-hugos-internal-highlight-shortcode">Code block with Hugo&rsquo;s internal highlight shortcode</h4>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-html" data-lang="html"><span class="cp">&lt;!DOCTYPE html&gt;</span>
<span class="p">&lt;</span><span class="nt">html</span> <span class="na">lang</span><span class="o">=</span><span class="s">&#34;en&#34;</span><span class="p">&gt;</span>
<span class="p">&lt;</span><span class="nt">head</span><span class="p">&gt;</span>
<span class="p">&lt;</span><span class="nt">meta</span> <span class="na">charset</span><span class="o">=</span><span class="s">&#34;UTF-8&#34;</span><span class="p">&gt;</span>
<span class="p">&lt;</span><span class="nt">title</span><span class="p">&gt;</span>Example HTML5 Document<span class="p">&lt;/</span><span class="nt">title</span><span class="p">&gt;</span>
<span class="p">&lt;/</span><span class="nt">head</span><span class="p">&gt;</span>
<span class="p">&lt;</span><span class="nt">body</span><span class="p">&gt;</span>
<span class="p">&lt;</span><span class="nt">p</span><span class="p">&gt;</span>Test<span class="p">&lt;/</span><span class="nt">p</span><span class="p">&gt;</span>
<span class="p">&lt;/</span><span class="nt">body</span><span class="p">&gt;</span>
<span class="p">&lt;/</span><span class="nt">html</span><span class="p">&gt;</span></code></pre></div>
<h2 id="list-types">List Types</h2>
<h4 id="ordered-list">Ordered List</h4>
<ol>
<li>First item</li>
<li>Second item</li>
<li>Third item</li>
</ol>
<h4 id="unordered-list">Unordered List</h4>
<ul>
<li>List item</li>
<li>Another item</li>
<li>And another item</li>
</ul>
<h4 id="nested-list">Nested list</h4>
<ul>
<li>Item</li>
</ul>
<ol>
<li>First Sub-item</li>
<li>Second Sub-item</li>
</ol>
<h2 id="other-elements--abbr-sub-sup-kbd-mark">Other Elements — abbr, sub, sup, kbd, mark</h2>
<p><abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.</p>
<p>H<sub>2</sub>O</p>
<p>X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup></p>
<p>Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.</p>
<p>Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.</p>
<section class="footnotes" role="doc-endnotes">
<hr>
<ol>
<li id="fn:1" role="doc-endnote">
<p>The above quote is excerpted from Rob Pike&rsquo;s <a href="https://www.youtube.com/watch?v=PAAkCSZUG1c">talk</a> during Gopherfest, November 18, 2015.&#160;<a href="#fnref:1" class="footnote-backref" role="doc-backlink">&#x21a9;&#xfe0e;</a></p>
</li>
</ol>
</section></article>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</title><link rel="canonical" href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://lukasjoswiak.github.io/etch/markdown-syntax-guide/" /></head></html>

View file

@ -0,0 +1,77 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Placeholder Text</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<article>
<header id="post-header">
<h1>Placeholder Text</h1>
<div>
<time>March 9, 2019</time>
</div>
</header><p>Lorem est tota propiore conpellat pectoribus de
pectora summo.</p>
<p>Redit teque digerit hominumque toris verebor lumina non cervice
subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc
caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis
lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum.</p>
<ol>
<li>Exierant elisi ambit vivere dedere</li>
<li>Duce pollice</li>
<li>Eris modo</li>
<li>Spargitque ferrea quos palude</li>
</ol>
<p>Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus
silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria
tractus malis.</p>
<ol>
<li>Comas hunc haec pietate fetum procerum dixit</li>
<li>Post torum vates letum Tiresia</li>
<li>Flumen querellas</li>
<li>Arcanaque montibus omnes</li>
<li>Quidem et</li>
</ol>
<h1 id="vagus-elidunt">Vagus elidunt</h1>
<p><svg class="canon" xmlns="http://www.w3.org/2000/svg" overflow="visible" viewBox="0 0 496 373" height="373" width="496"><g fill="none"><path stroke="#000" stroke-width=".75" d="M.599 372.348L495.263 1.206M.312.633l494.95 370.853M.312 372.633L247.643.92M248.502.92l246.76 370.566M330.828 123.869V1.134M330.396 1.134L165.104 124.515"></path><path stroke="#ED1C24" stroke-width=".75" d="M275.73 41.616h166.224v249.05H275.73zM54.478 41.616h166.225v249.052H54.478z"></path><path stroke="#000" stroke-width=".75" d="M.479.375h495v372h-495zM247.979.875v372"></path><ellipse cx="498.729" cy="177.625" rx=".75" ry="1.25"></ellipse><ellipse cx="247.229" cy="377.375" rx=".75" ry="1.25"></ellipse></g></svg></p>
<p><a href="https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon">The Van de Graaf Canon</a></p>
<h2 id="mane-refeci-capiebant-unda-mulcebat">Mane refeci capiebant unda mulcebat</h2>
<p>Victa caducifer, malo vulnere contra
dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere
furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. <strong>Faces illo pepulere</strong> tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.</p>
<p>Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli
Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare
Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert
ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae
vulnus haerentia iuste et exercebat, sui et.</p>
<p>Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel <strong>mitis temploque</strong> vocatus, inque alis, <em>oculos nomen</em> non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem
Propoetides <strong>parte</strong>.</p>
<style>
.canon { background: white; width: 100%; height: auto;}
</style></article>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/posts/index.html Normal file
View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/posts/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Posts</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content"><h3>Posts</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/rich-content/">
Rich Content
<small><time>Mar 10, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/placeholder-text/">
Placeholder Text
<small><time>Mar 9, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/emoji-support/">
Emoji Support
<small><time>Mar 5, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/posts/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/posts/</link>
<description>Recent content in Posts on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,113 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Rich Content</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<article>
<header id="post-header">
<h1>Rich Content</h1>
<div>
<time>March 10, 2019</time>
</div>
</header><p>Hugo ships with several <a href="https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes">Built-in Shortcodes</a> for rich content, along with a <a href="https://gohugo.io/about/hugo-and-gdpr/">Privacy Config</a> and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.</p>
<hr>
<h2 id="youtube-privacy-enhanced-shortcode">YouTube Privacy Enhanced Shortcode</h2>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://www.youtube.com/embed/ZJthWmvUzzc" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" allowfullscreen title="YouTube Video"></iframe>
</div>
<br>
<hr>
<h2 id="twitter-simple-shortcode">Twitter Simple Shortcode</h2>
<style type="text/css">
.twitter-tweet {
font: 14px/1.45 -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
border-left: 4px solid #2b7bb9;
padding-left: 1.5em;
color: #555;
}
.twitter-tweet a {
color: #2b7bb9;
text-decoration: none;
}
blockquote.twitter-tweet a:hover,
blockquote.twitter-tweet a:focus {
text-decoration: underline;
}
</style>
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">“In addition to being more logical, asymmetry has the advantage that its complete appearance is far more optically effective than symmetry.”<br>— Jan Tschichold <a href="https://t.co/gcv7SrhvJb">pic.twitter.com/gcv7SrhvJb</a></p>&mdash; Graphic Design History (@DesignReviewed) <a href="https://twitter.com/DesignReviewed/status/1085870671291310081?ref_src=twsrc%5Etfw">January 17, 2019</a></blockquote>
<br>
<hr>
<h2 id="vimeo-simple-shortcode">Vimeo Simple Shortcode</h2>
<style>
.__h_video {
position: relative;
padding-bottom: 56.23%;
height: 0;
overflow: hidden;
width: 100%;
background: #000;
}
.__h_video img {
width: 100%;
height: auto;
color: #000;
}
.__h_video .play {
height: 72px;
width: 72px;
left: 50%;
top: 50%;
margin-left: -36px;
margin-top: -36px;
position: absolute;
cursor: pointer;
}
</style>
<div class="s_video_simple __h_video">
<a href="https://vimeo.com/4.8912912e&#43;07" rel="noopener" target="_blank">
<img src="https://i.vimeocdn.com/video/337401969_640" srcset="https://i.vimeocdn.com/video/337401969_640 1x, https://i.vimeocdn.com/video/337401969_640 2x" alt="Sing Jan Swing - Kinetic Type">
<div class="play"><svg version="1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 61 61"><circle cx="30.5" cy="30.5" r="30.5" opacity=".8" fill="#000"></circle><path d="M25.3 19.2c-2.1-1.2-3.8-.2-3.8 2.2v18.1c0 2.4 1.7 3.4 3.8 2.2l16.6-9.1c2.1-1.2 2.1-3.2 0-4.4l-16.6-9z" fill="#fff"></path></svg></div></a></div></article>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

61
docs/sitemap.xml Normal file
View file

@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://lukasjoswiak.github.io/etch/categories/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/css/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/html/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/markdown/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/posts/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/categories/syntax/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/themes/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/categories/themes/</loc>
<lastmod>2019-03-11T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/privacy/</loc>
<lastmod>2019-03-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/rich-content/</loc>
<lastmod>2019-03-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/shortcodes/</loc>
<lastmod>2019-03-10T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/placeholder-text/</loc>
<lastmod>2019-03-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/text/</loc>
<lastmod>2019-03-09T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/tags/emoji/</loc>
<lastmod>2019-03-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/emoji-support/</loc>
<lastmod>2019-03-05T00:00:00+00:00</lastmod>
</url><url>
<loc>https://lukasjoswiak.github.io/etch/about/</loc>
</url>
</urlset>

42
docs/tags/css/index.html Normal file
View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/css/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>css</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>css</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/tags/css/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>css on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/css/</link>
<description>Recent content in css on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/css/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/emoji/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>emoji</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>emoji</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/emoji-support/">
Emoji Support
<small><time>Mar 5, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/tags/emoji/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>emoji on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/emoji/</link>
<description>Recent content in emoji on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Tue, 05 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/emoji/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

42
docs/tags/html/index.html Normal file
View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/html/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>html</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>html</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/tags/html/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>html on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/html/</link>
<description>Recent content in html on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/html/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

91
docs/tags/index.html Normal file
View file

@ -0,0 +1,91 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>Tags</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>Tags</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/css/">
css
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/html/">
html
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/markdown/">
markdown
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/themes/">
themes
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/privacy/">
privacy
<small><time>Mar 10, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/shortcodes/">
shortcodes
<small><time>Mar 10, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/text/">
text
<small><time>Mar 9, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/tags/emoji/">
emoji
<small><time>Mar 5, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/tags/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Tags on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/</link>
<description>Recent content in Tags on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,49 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/markdown/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>markdown</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>markdown</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
<li>
<a href="https://lukasjoswiak.github.io/etch/placeholder-text/">
Placeholder Text
<small><time>Mar 9, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>markdown on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/markdown/</link>
<description>Recent content in markdown on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/markdown/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/privacy/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>privacy</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>privacy</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/rich-content/">
Rich Content
<small><time>Mar 10, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>privacy on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/privacy/</link>
<description>Recent content in privacy on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Sun, 10 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/privacy/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/shortcodes/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>shortcodes</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>shortcodes</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/rich-content/">
Rich Content
<small><time>Mar 10, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>shortcodes on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/shortcodes/</link>
<description>Recent content in shortcodes on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Sun, 10 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/shortcodes/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

42
docs/tags/text/index.html Normal file
View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/text/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>text</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>text</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/placeholder-text/">
Placeholder Text
<small><time>Mar 9, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

62
docs/tags/text/index.xml Normal file
View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>text on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/text/</link>
<description>Recent content in text on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Sat, 09 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/text/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Your site description">
<link rel="shortcut icon" href="https://lukasjoswiak.github.io/etch/favicon.ico">
<link rel="alternate" type="application/rss+xml" href="https://lukasjoswiak.github.io/etch/tags/themes/index.xml" title="Website Name">
<link rel="stylesheet" href="/etch/css/style.min.css">
<title>themes</title>
</head>
<body><header id="banner">
<h2><a href="https://lukasjoswiak.github.io/etch/">Website Name</a></h2>
<nav>
<ul>
<li>
<a href="/etch/" title="posts">posts</a>
</li><li>
<a href="/etch/about/" title="about">about</a>
</li>
</ul>
</nav>
</header>
<main id="content">
<h3>themes</h3>
<ul id="posts">
<li>
<a href="https://lukasjoswiak.github.io/etch/markdown-syntax-guide/">
Markdown Syntax Guide
<small><time>Mar 11, 2019</time></small>
</a>
</li>
</ul>
</main><footer id="footer">
Copyright © 2020 Your Name
</footer>
</body>
</html>

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>themes on Website Name</title>
<link>https://lukasjoswiak.github.io/etch/tags/themes/</link>
<description>Recent content in themes on Website Name</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-US</language>
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
<atom:link href="https://lukasjoswiak.github.io/etch/tags/themes/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Markdown Syntax Guide</title>
<link>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</link>
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/markdown-syntax-guide/</guid>
<description>&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;</description>
</item>
<item>
<title>Rich Content</title>
<link>https://lukasjoswiak.github.io/etch/rich-content/</link>
<pubDate>Sun, 10 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/rich-content/</guid>
<description>&lt;p&gt;Hugo ships with several &lt;a href=&#34;https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes&#34;&gt;Built-in Shortcodes&lt;/a&gt; for rich content, along with a &lt;a href=&#34;https://gohugo.io/about/hugo-and-gdpr/&#34;&gt;Privacy Config&lt;/a&gt; and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.&lt;/p&gt;</description>
</item>
<item>
<title>Placeholder Text</title>
<link>https://lukasjoswiak.github.io/etch/placeholder-text/</link>
<pubDate>Sat, 09 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/placeholder-text/</guid>
<description>&lt;p&gt;Lorem est tota propiore conpellat pectoribus de
pectora summo.&lt;/p&gt;</description>
</item>
<item>
<title>Emoji Support</title>
<link>https://lukasjoswiak.github.io/etch/emoji-support/</link>
<pubDate>Tue, 05 Mar 2019 00:00:00 +0000</pubDate>
<guid>https://lukasjoswiak.github.io/etch/emoji-support/</guid>
<description>&lt;p&gt;Emoji can be enabled in a Hugo project in a number of ways.&lt;/p&gt;</description>
</item>
</channel>
</rss>

6
layouts/_default/li.html Normal file
View file

@ -0,0 +1,6 @@
<li>
<a href="{{ .Permalink }}">
{{ .Title }}
<small><time>{{ .Date.Format "Jan 2, 2006" }}</time></small>
</a>
</li>

View file

@ -0,0 +1,8 @@
{{ define "main" }}
<h3>{{ .Title }}</h3>
<ul id="posts">
{{- range .Pages }}
{{ .Render "li" }}
{{- end }}
</ul>
{{ end }}

View file

@ -1,11 +1,6 @@
<h3>Posts</h3>
<ul id="posts">
{{- range where site.RegularPages "Type" "in" site.Params.mainSections }}
<li>
<a href="{{ .Permalink }}">
{{ .Title }}
<small><time>{{ .Date.Format "Jan 2, 2006" }}</time></small>
</a>
</li>
{{ .Render "li" }}
{{- end }}
</ul>

View file

@ -3,6 +3,7 @@ license = "MIT"
licenselink = "https://github.com/LukasJoswiak/etch/blob/master/LICENSE"
description = "Lightweight Hugo theme with a focus on content"
homepage = "https://github.com/LukasJoswiak/etch"
demosite = "https://lukasjoswiak.github.io/etch/"
tags = ["simple", "minimal", "clean", "fast", "blog", "responsive", "dark mode", "privacy"]
features = ["fast", "blog", "syntax highlighting", "dark mode"]
min_version = "0.41"