Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rz3n/hugo-theme-freshstart.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrfranzen <rfranzen@gmail.com>2020-08-05 23:32:47 +0300
committerrfranzen <rfranzen@gmail.com>2020-08-05 23:32:47 +0300
commit833fd545de24d3120e46abb5ab1bb59b5d70b9eb (patch)
treea77cb85d959f93051471eea3ca8304396f534600
go public
-rw-r--r--LICENSE20
-rw-r--r--README.md89
-rw-r--r--archetypes/default.md2
-rw-r--r--exampleSite/config.yaml54
-rw-r--r--exampleSite/content/_index.md3
-rw-r--r--exampleSite/content/about.md25
-rw-r--r--exampleSite/content/archives.md5
-rw-r--r--exampleSite/content/homepage/about.md7
-rw-r--r--exampleSite/content/homepage/index.md3
-rw-r--r--exampleSite/content/homepage/work.md7
-rw-r--r--exampleSite/content/post/_index.md6
-rw-r--r--exampleSite/content/post/emoji-support.md46
-rw-r--r--exampleSite/content/post/markdown-syntax.md149
-rw-r--r--exampleSite/content/post/math-typesetting.md49
-rw-r--r--exampleSite/content/post/placeholder-text.md45
-rw-r--r--exampleSite/content/post/rich-content.md42
-rw-r--r--exampleSite/layouts/.gitkeep0
-rw-r--r--exampleSite/static/.gitignore0
-rw-r--r--images/screenshot.pngbin0 -> 1429351 bytes
-rw-r--r--images/tn.pngbin0 -> 650936 bytes
-rw-r--r--layouts/404.html0
-rw-r--r--layouts/_default/baseof.html14
-rw-r--r--layouts/_default/list.html2
-rw-r--r--layouts/_default/single.html6
-rw-r--r--layouts/index.html37
-rw-r--r--layouts/partials/footer.html5
-rw-r--r--layouts/partials/head.html17
-rw-r--r--layouts/partials/header.html17
-rw-r--r--static/css/main.css177
-rw-r--r--static/images/bg.jpgbin0 -> 351657 bytes
-rw-r--r--static/js/app.js61
-rw-r--r--theme.toml15
32 files changed, 903 insertions, 0 deletions
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..faff36e
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,20 @@
+The MIT License (MIT)
+
+Copyright (c) 2020 YOUR_NAME_HERE
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5e4df16
--- /dev/null
+++ b/README.md
@@ -0,0 +1,89 @@
+# freshStart
+A clear and responsive theme for [Hugo](//gohugo.io/) witch provides a dynamic environment to manage bookmarks in a clean and fast start page.
+
+
+## Demo
+* [Demo](http://themes.gohugo.io/theme/freshstart/)
+
+
+## Screenshot
+.
+
+
+## Installation
+Inside your Hugo site directory run:
+```
+$ git submodule add https://github.com/rz3n/hugo-theme-freshstart.git themes/freshstart
+```
+For more information read the official [setup guide](//gohugo.io/overview/installing/) of Hugo.
+
+
+## Configuration
+Example config.yaml:
+```
+baseURL: http://example.org/
+languageCode: en-us
+title: Your site title
+theme: freshStart
+
+params:
+ author: Your Name
+ description: A description of your site
+ favicon: /favicon.ico
+
+ searchEngines:
+ - name: Google
+ activated: true
+ icon: fab fa-google
+ url: https://google.com/search
+ - name: DuckDuckGo
+ activated: true
+ icon: fas fa-search
+ url: https://www.duckduckgo.com
+
+ bookmarks:
+ - group: dev
+ icon: fas fa-code-branch
+ items:
+ - name: cloudflare
+ url: https://cloudflare.com
+ - name: codepen.io
+ url: https://codepen.io
+ - name: github
+ icon: fab fa-github
+ url: https://github.com
+ - name: gitlab
+ icon: fab fa-gitlab
+ url: https://gitlab.com
+
+ - group: docs
+ icon: fas fa-folder-open
+ items:
+ - name: docker
+ url: https://docs.docker.com/
+
+ - name: puppet
+ url: https://puppet.com/docs/puppet/latest/
+
+ - name: terraform
+ url: https://www.terraform.io/docs/
+
+ - group: tools
+ icon: fas fa-tools
+ items:
+ - name: some site
+ url: #
+ - name: another site
+ url: #
+
+```
+
+## Sources
+* Icons from [Font Awesome](https://fontawesome.com/icons?d=gallery)
+
+
+REFERENCES:
+ https://github.com/gohugoio/hugoThemes#themetoml
+ https://github.com/spech66/bootstrap-bp-hugo-startpage
+ https://github.com/yoshiharuyamashita/blackburn
+
diff --git a/archetypes/default.md b/archetypes/default.md
new file mode 100644
index 0000000..ac36e06
--- /dev/null
+++ b/archetypes/default.md
@@ -0,0 +1,2 @@
++++
++++
diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml
new file mode 100644
index 0000000..4863ffc
--- /dev/null
+++ b/exampleSite/config.yaml
@@ -0,0 +1,54 @@
+baseURL: https://gohugo.io
+languageCode: en-us
+title: Your site title
+theme: freshstart
+
+params:
+ author: Ricardo Franzen
+ description: rfranzen.com
+ favicon: /favicon.ico
+
+ searchEngines:
+ - name: Google
+ activated: true
+ icon: fab fa-google
+ url: https://google.com/search
+ - name: DuckDuckGo
+ activated: true
+ icon: fas fa-search
+ url: https://www.duckduckgo.com
+
+ bookmarks:
+ - group: dev
+ icon: fas fa-code-branch
+ items:
+ - name: cloudflare
+ url: https://cloudflare.com
+ - name: codepen.io
+ url: https://codepen.io
+ - name: github
+ icon: fab fa-github
+ url: https://github.com
+ - name: gitlab
+ icon: fab fa-gitlab
+ url: https://gitlab.com
+
+ - group: docs
+ icon: fas fa-folder-open
+ items:
+ - name: docker
+ url: https://docs.docker.com/
+
+ - name: puppet
+ url: https://puppet.com/docs/puppet/latest/
+
+ - name: terraform
+ url: https://www.terraform.io/docs/
+
+ - group: tools
+ icon: fas fa-tools
+ items:
+ - name: some site
+ url: #
+ - name: another site
+ url: #
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md
new file mode 100644
index 0000000..ed6494b
--- /dev/null
+++ b/exampleSite/content/_index.md
@@ -0,0 +1,3 @@
++++
+author = "Hugo Authors"
++++
diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md
new file mode 100644
index 0000000..f49aec5
--- /dev/null
+++ b/exampleSite/content/about.md
@@ -0,0 +1,25 @@
++++
+title = "About"
+description = "Hugo, the world's fastest framework for building websites"
+date = "2019-02-28"
+aliases = ["about-us", "about-hugo", "contact"]
+author = "Hugo Authors"
++++
+
+Written in Go, Hugo is an open source static site generator available under the [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE) 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.
+
+Hugo makes use of a variety of open source projects including:
+
+* https://github.com/yuin/goldmark
+* https://github.com/alecthomas/chroma
+* https://github.com/muesli/smartcrop
+* https://github.com/spf13/cobra
+* https://github.com/spf13/viper
+
+Hugo is ideal for blogs, corporate websites, creative portfolios, online magazines, single page applications or even a website with thousands of pages.
+
+Hugo is for people who want to hand code their own website without worrying about setting up complicated runtimes, dependencies and databases.
+
+Websites built with Hugo are extremelly fast, secure and can be deployed anywhere including, AWS, GitHub Pages, Heroku, Netlify and any other hosting provider.
+
+Learn more and contribute on [GitHub](https://github.com/gohugoio).
diff --git a/exampleSite/content/archives.md b/exampleSite/content/archives.md
new file mode 100644
index 0000000..db16eed
--- /dev/null
+++ b/exampleSite/content/archives.md
@@ -0,0 +1,5 @@
+---
+date: 2019-05-28
+type: section
+layout: "archives"
+---
diff --git a/exampleSite/content/homepage/about.md b/exampleSite/content/homepage/about.md
new file mode 100644
index 0000000..b5d6981
--- /dev/null
+++ b/exampleSite/content/homepage/about.md
@@ -0,0 +1,7 @@
+---
+title: 'Our Difference'
+button: 'About us'
+weight: 2
+---
+
+Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Ipsum dolor sit amet, et essent mediocritatem quo.
diff --git a/exampleSite/content/homepage/index.md b/exampleSite/content/homepage/index.md
new file mode 100644
index 0000000..ca03031
--- /dev/null
+++ b/exampleSite/content/homepage/index.md
@@ -0,0 +1,3 @@
+---
+headless: true
+---
diff --git a/exampleSite/content/homepage/work.md b/exampleSite/content/homepage/work.md
new file mode 100644
index 0000000..f99bc99
--- /dev/null
+++ b/exampleSite/content/homepage/work.md
@@ -0,0 +1,7 @@
+---
+title: 'We Help Business Grow'
+button: 'Our Work'
+weight: 1
+---
+
+Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Numquam dolores mel eu, mea docendi omittantur et, mea ea duis erat. Elit melius cu ius. Per ex novum tantas putant, ei his nullam aliquam apeirian. Aeterno quaestio constituto sea an, no eum intellegat assueverit.
diff --git a/exampleSite/content/post/_index.md b/exampleSite/content/post/_index.md
new file mode 100644
index 0000000..8a084d9
--- /dev/null
+++ b/exampleSite/content/post/_index.md
@@ -0,0 +1,6 @@
++++
+aliases = ["posts", "articles", "blog", "showcase", "docs"]
+title = "Posts"
+author = "Hugo Authors"
+tags = ["index"]
++++
diff --git a/exampleSite/content/post/emoji-support.md b/exampleSite/content/post/emoji-support.md
new file mode 100644
index 0000000..dc3589a
--- /dev/null
+++ b/exampleSite/content/post/emoji-support.md
@@ -0,0 +1,46 @@
++++
+author = "Hugo Authors"
+title = "Emoji Support"
+date = "2019-03-05"
+description = "Guide to emoji usage in Hugo"
+tags = [
+ "emoji",
+]
++++
+
+Emoji can be enabled in a Hugo project in a number of ways.
+<!--more-->
+The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes).
+
+To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.
+
+<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>
+
+The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes.
+
+***
+
+**N.B.** 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.
+
+{{< highlight html >}}
+.emoji {
+ font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
+}
+{{< /highlight >}}
+
+{{< css.inline >}}
+<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>
+{{< /css.inline >}}
diff --git a/exampleSite/content/post/markdown-syntax.md b/exampleSite/content/post/markdown-syntax.md
new file mode 100644
index 0000000..2aa35e1
--- /dev/null
+++ b/exampleSite/content/post/markdown-syntax.md
@@ -0,0 +1,149 @@
++++
+author = "Hugo Authors"
+title = "Markdown Syntax Guide"
+date = "2019-03-11"
+description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements."
+tags = [
+ "markdown",
+ "css",
+ "html",
+ "themes",
+]
+categories = [
+ "themes",
+ "syntax",
+]
+series = ["Themes Guide"]
+aliases = ["migrate-from-jekyl"]
++++
+
+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.
+<!--more-->
+
+## Headings
+
+The following HTML `<h1>`—`<h6>` elements represent six levels of section headings. `<h1>` is the highest section level while `<h6>` is the lowest.
+
+# H1
+## H2
+### H3
+#### H4
+##### H5
+###### H6
+
+## Paragraph
+
+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.
+
+Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.
+
+## Blockquotes
+
+The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations.
+
+#### Blockquote without attribution
+
+> Tiam, ad mint andaepu dandae nostion secatur sequo quae.
+> **Note** that you can use *Markdown syntax* within a blockquote.
+
+#### Blockquote with attribution
+
+> Don't communicate by sharing memory, share memory by communicating.<br>
+> — <cite>Rob Pike[^1]</cite>
+
+[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015.
+
+## Tables
+
+Tables aren't part of the core Markdown spec, but Hugo supports supports them out-of-the-box.
+
+ Name | Age
+--------|------
+ Bob | 27
+ Alice | 23
+
+#### Inline Markdown within tables
+
+| Italics | Bold | Code |
+| -------- | -------- | ------ |
+| *italics* | **bold** | `code` |
+
+## Code Blocks
+
+#### Code block with backticks
+
+```html
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>Example HTML5 Document</title>
+</head>
+<body>
+ <p>Test</p>
+</body>
+</html>
+```
+
+#### Code block indented with four spaces
+
+ <!doctype html>
+ <html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <title>Example HTML5 Document</title>
+ </head>
+ <body>
+ <p>Test</p>
+ </body>
+ </html>
+
+#### Code block with Hugo's internal highlight shortcode
+{{< highlight html >}}
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>Example HTML5 Document</title>
+</head>
+<body>
+ <p>Test</p>
+</body>
+</html>
+{{< /highlight >}}
+
+## List Types
+
+#### Ordered List
+
+1. First item
+2. Second item
+3. Third item
+
+#### Unordered List
+
+* List item
+* Another item
+* And another item
+
+#### Nested list
+
+* Fruit
+ * Apple
+ * Orange
+ * Banana
+* Dairy
+ * Milk
+ * Cheese
+
+## Other Elements — abbr, sub, sup, kbd, mark
+
+<abbr title="Graphics Interchange Format">GIF</abbr> is a bitmap image format.
+
+H<sub>2</sub>O
+
+X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>
+
+Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
+
+Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms, and other small creatures.
diff --git a/exampleSite/content/post/math-typesetting.md b/exampleSite/content/post/math-typesetting.md
new file mode 100644
index 0000000..48fdc79
--- /dev/null
+++ b/exampleSite/content/post/math-typesetting.md
@@ -0,0 +1,49 @@
+---
+author: Hugo Authors
+title: Math Typesetting
+date: 2019-03-08
+description: A brief guide to setup KaTeX
+math: true
+---
+
+Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.
+<!--more-->
+
+In this example we will be using [KaTeX](https://katex.org/)
+
+- Create a partial under `/layouts/partials/math.html`
+- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally.
+- Include the partial in your templates like so:
+
+```bash
+{{ if or .Params.math .Site.Params.math }}
+{{ partial "math.html" . }}
+{{ end }}
+```
+
+- To enable KaTex globally set the parameter `math` to `true` in a project's configuration
+- To enable KaTex on a per page basis include the parameter `math: true` in content files
+
+**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html)
+
+{{< math.inline >}}
+{{ if or .Page.Params.math .Site.Params.math }}
+<!-- KaTeX -->
+<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css" integrity="sha384-zB1R0rpPzHqg7Kpt0Aljp8JPLqbXI3bhnPWROx27a9N0Ll6ZP/+DiW/UqRcLbRjq" crossorigin="anonymous">
+<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js" integrity="sha384-y23I5Q6l+B6vatafAwxRu/0oK/79VlbSz7Q9aiSZUvyWYIYsd+qj+o24G5ZU2zJz" crossorigin="anonymous"></script>
+<script defer src="https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/contrib/auto-render.min.js" integrity="sha384-kWPLUVMOks5AQFrykwIup5lo0m3iMkkHrD0uJ4H5cjeGihAutqP0yW0J6dpFiVkI" crossorigin="anonymous" onload="renderMathInElement(document.body);"></script>
+{{ end }}
+{{</ math.inline >}}
+
+### Examples
+
+{{< math.inline >}}
+<p>
+Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)
+</p>
+{{</ math.inline >}}
+
+Block math:
+$$
+ \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
+$$
diff --git a/exampleSite/content/post/placeholder-text.md b/exampleSite/content/post/placeholder-text.md
new file mode 100644
index 0000000..9ed5f69
--- /dev/null
+++ b/exampleSite/content/post/placeholder-text.md
@@ -0,0 +1,45 @@
++++
+author = "Hugo Authors"
+title = "Placeholder Text"
+date = "2019-03-09"
+description = "Lorem Ipsum Dolor Si Amet"
+tags = [
+ "markdown",
+ "text",
+]
++++
+
+Lorem est tota propiore conpellat pectoribus de pectora summo. <!--more-->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.
+
+1. Exierant elisi ambit vivere dedere
+2. Duce pollice
+3. Eris modo
+4. Spargitque ferrea quos palude
+
+Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis.
+
+1. Comas hunc haec pietate fetum procerum dixit
+2. Post torum vates letum Tiresia
+3. Flumen querellas
+4. Arcanaque montibus omnes
+5. Quidem et
+
+# Vagus elidunt
+
+<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>
+
+[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon)
+
+## Mane refeci capiebant unda mulcebat
+
+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. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis.
+
+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.
+
+Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* 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 **parte**.
+
+{{< css.inline >}}
+<style>
+.canon { background: white; width: 100%; height: auto; }
+</style>
+{{< /css.inline >}}
diff --git a/exampleSite/content/post/rich-content.md b/exampleSite/content/post/rich-content.md
new file mode 100644
index 0000000..5ff41d7
--- /dev/null
+++ b/exampleSite/content/post/rich-content.md
@@ -0,0 +1,42 @@
++++
+author = "Hugo Authors"
+title = "Rich Content"
+date = "2019-03-10"
+description = "A brief description of Hugo Shortcodes"
+tags = [
+ "shortcodes",
+ "privacy",
+]
++++
+
+Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugo-s-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds.
+<!--more-->
+---
+
+## Instagram Simple Shortcode
+
+{{< instagram_simple BGvuInzyFAe hidecaption >}}
+
+<br>
+
+---
+
+## YouTube Privacy Enhanced Shortcode
+
+{{< youtube ZJthWmvUzzc >}}
+
+<br>
+
+---
+
+## Twitter Simple Shortcode
+
+{{< twitter_simple 1085870671291310081 >}}
+
+<br>
+
+---
+
+## Vimeo Simple Shortcode
+
+{{< vimeo_simple 48912912 >}}
diff --git a/exampleSite/layouts/.gitkeep b/exampleSite/layouts/.gitkeep
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/exampleSite/layouts/.gitkeep
diff --git a/exampleSite/static/.gitignore b/exampleSite/static/.gitignore
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/exampleSite/static/.gitignore
diff --git a/images/screenshot.png b/images/screenshot.png
new file mode 100644
index 0000000..f3f6e6b
--- /dev/null
+++ b/images/screenshot.png
Binary files differ
diff --git a/images/tn.png b/images/tn.png
new file mode 100644
index 0000000..c7a8ae2
--- /dev/null
+++ b/images/tn.png
Binary files differ
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/layouts/404.html
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
new file mode 100644
index 0000000..498a116
--- /dev/null
+++ b/layouts/_default/baseof.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
+ {{- partial "head.html" . -}}
+
+ <body onload="init()">
+ {{- partial "header.html" . -}}
+
+ <main>
+ {{- block "main" . }}{{- end }}
+ </main>
+
+ {{- partial "footer.html" . -}}
+ </body>
+</html>
diff --git a/layouts/_default/list.html b/layouts/_default/list.html
new file mode 100644
index 0000000..f319bf9
--- /dev/null
+++ b/layouts/_default/list.html
@@ -0,0 +1,2 @@
+{{ define "main" }}
+{{ end }} \ No newline at end of file
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
new file mode 100644
index 0000000..ac282c3
--- /dev/null
+++ b/layouts/_default/single.html
@@ -0,0 +1,6 @@
+{{ define "title" }}
+ {{ .Title }} &ndash; {{ .Site.Title }}
+{{ end }}
+
+{{ define "main" }}
+{{ end }} \ No newline at end of file
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..01664de
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,37 @@
+{{ define "main" }}
+
+{{ if .Site.Params.searchEngines }}
+ <section class="search">
+ <h3>search</h3>
+ <div class="searchbox">
+ {{ range .Site.Params.searchEngines }}
+ {{ if .activated }}
+ <form autocomplete="off" method="get" action="{{ .url }}">
+ <i class="{{ .icon }}"></i>
+ <input type="text" name="q">
+ </form>
+ {{ end }}
+ {{ end }}
+ </div>
+ </section>
+{{ end }}
+
+
+<section class="cards">
+ {{ range .Site.Params.bookmarks }}
+ <div class="card">
+ <h3><i class="{{ .icon }}"></i> {{ .group }} </h3>
+ <ul>
+ {{ range .items }}
+ {{ if .icon }}
+ <li><a href="{{ .url }}"><i class="{{ .icon }}"></i> {{ .name }}</a></li>
+ {{ else }}
+ <li><a href="{{ .url }}">{{ .name }}</a></li>
+ {{ end }}
+ {{ end }}
+ </ul>
+ </div>
+ {{ end }}
+</section>
+
+{{ end }} \ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..35dfe13
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,5 @@
+<!--
+<footer>
+
+</footer>
+--> \ No newline at end of file
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
new file mode 100644
index 0000000..fa08993
--- /dev/null
+++ b/layouts/partials/head.html
@@ -0,0 +1,17 @@
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="referrer" content="strict-origin" />
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+ <title>{{ if .IsHome }}{{ .Title }}{{ else }}{{ .Title }} &middot; {{ .Site.Title }}{{ end }}</title>
+ {{ if .Site.Params.name }}<meta name="author" content="{{ .Site.Params.name }}" />{{ end }}
+ {{ if .Site.Params.description }}<meta name="description" content="{{ .Site.Params.description }}" />{{ end }}
+ {{ if .Site.Params.favicon }} <link rel="icon" href="{{ .Site.Params.favicon }}" /> {{ end }}
+
+ <script src="/js/app.js"></script>
+ <script
+ src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
+
+ <link rel="stylesheet" href="/css/main.css" />
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
+</head>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
new file mode 100644
index 0000000..0af473c
--- /dev/null
+++ b/layouts/partials/header.html
@@ -0,0 +1,17 @@
+
+<header>
+ <div class="datetime">
+ <div class="time">
+ <i class="far fa-clock"></i>&nbsp;
+ <span class="time-hours"></span> :
+ <span class="time-minutes"></span> :
+ <span class="time-seconds"></span>
+ </div>
+ <div class="date">
+ <i class="far fa-calendar"></i>&nbsp;
+ <span class="date-day"></span> .
+ <span class="date-month"></span> .
+ <span class="date-year"></span>
+ </div>
+ </div>
+</header>
diff --git a/static/css/main.css b/static/css/main.css
new file mode 100644
index 0000000..0345fad
--- /dev/null
+++ b/static/css/main.css
@@ -0,0 +1,177 @@
+/* --------------------------
+ * global
+*/
+
+* {
+ color: rgb(200, 200, 200);
+ margin: 0;
+ padding: 0;
+}
+
+body {
+ background: url(/images/bg.jpg) top fixed no-repeat;
+ background-size: cover;
+ content-visibility: auto;
+ font-size: 16px;
+ font-family: system-ui, sans-serif;
+ font-weight: 400;
+}
+
+a:link, a:active, a:hover { text-decoration: none; }
+
+h3 {
+ font-size: 1rem;
+}
+
+@media screen and (min-width: 320px) {
+ html {
+ font-size: calc(16px + 6 * ((100vw - 320px) / 680));
+ }
+}
+@media screen and (min-width: 1000px) {
+ html {
+ font-size: 22px;
+ }
+}
+
+
+/* --------------------------
+ * efects
+*/
+.clearfix:after {
+ clear: both;
+ content: " ";
+ display: block;
+ font-size: 0;
+ height: 0;
+ visibility: hidden;
+}
+
+.shadow { box-shadow: 10px 20px 50px 10px #000; }
+
+
+/* --------------------------
+ * header
+*/
+header {
+ backdrop-filter: blur(.2rem);
+ background-color: rgba(0,0,0, 0.5);
+ font-size: 1rem;
+ padding: 0.5rem;
+}
+header nav {
+ width: fit-content;
+}
+header nav ul {
+ display: flex;
+ flex-wrap: nowrap;
+ list-style: none;
+}
+header nav ul li {
+ margin: 0.1rem 0.3rem;
+}
+
+.datetime {
+ display: flex;
+ flex-direction: row-reverse;
+ font-size: 0.7rem;
+ text-align: center;
+}
+.date {
+ padding: 0 0.5rem;
+ border-right: solid 1px;
+ width: fit-content;
+}
+
+.time {
+ padding: 0 0.5rem;
+ width: fit-content;
+}
+
+
+/* --------------------------
+ * search
+*/
+.search {
+ backdrop-filter: blur(.1rem);
+ background-color: rgba(30, 30, 30, 0.7);
+ border-radius: 2rem;
+ margin: 3rem auto;
+ padding: 1rem;
+ text-align: center;
+ width: 30vw;
+}
+.searchbox {
+ display: flex;
+ flex-direction: column;
+}
+.searchbox form {
+ padding: 0.5rem;
+}
+.searchbox input {
+ background: none;
+ border: 0;
+ border-bottom: solid 3px #f44336;
+ line-height: 26px;
+ padding: 4px;
+ width: 70%;
+}
+
+
+/* --------------------------
+ * cards
+*/
+.cards {
+ display: grid;
+ font-size: 0.7rem;
+ grid-gap: 1rem;
+ grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
+ margin: 0 10rem;
+}
+
+.card {
+ backdrop-filter: blur(.2rem);
+ background-color: rgba(30, 30, 30, 0.7);
+ border-radius: 1rem;
+ margin: 1em;
+ padding: 1rem;
+}
+
+.card:hover h3 i {
+ color: rgb(244, 67, 54);
+ transition: all .4s linear;
+}
+
+.card h3 {
+ text-transform: lowercase;
+ text-align: center;
+ margin: 0 0 0.5rem 0;
+}
+
+.card ul {
+ list-style: none;
+ column-gap: 0.3rem;
+ columns: 4 100px;
+
+}
+
+.card ul li {
+ margin: 0.2rem;
+ width: max-content;
+ height: max-content;
+}
+
+.card ul li * {
+ color: rgb(200, 200, 200);
+ transition: all .3s linear;
+}
+
+.card ul li:hover * {
+ color: #f44336;
+}
+
+.card ul li::first-letter,
+.card ul li i {
+ color: #f44336;
+ font-weight: bold;
+}
diff --git a/static/images/bg.jpg b/static/images/bg.jpg
new file mode 100644
index 0000000..f5fe679
--- /dev/null
+++ b/static/images/bg.jpg
Binary files differ
diff --git a/static/js/app.js b/static/js/app.js
new file mode 100644
index 0000000..7bd0920
--- /dev/null
+++ b/static/js/app.js
@@ -0,0 +1,61 @@
+function init() {
+ initClock();
+ loadLists();
+}
+
+function initClock() {
+ var today = new Date();
+ var h = today.getHours();
+ var m = today.getMinutes();
+ var s = today.getSeconds();
+ var dd = today.getDate();
+ var mm = today.getMonth() + 1; //January is 0!
+ var yyyy = today.getFullYear();
+
+ if (dd < 10)
+ dd = '0' + dd
+ if (mm < 10)
+ mm = '0' + mm
+ if (h < 10)
+ h = '0' + h
+ if (m < 10)
+ m = '0' + m
+ if (s < 10)
+ s = '0' + s
+
+ $(".time-hours").html(h);
+ $(".time-minutes").html(m);
+ $(".time-seconds").html(s);
+ $(".date-day").html(dd);
+ $(".date-month").html(mm);
+ $(".date-year").html(yyyy);
+
+ if (h < 12) {
+ $(".greetings-title").html("Good Morning");
+ } else if (h >= 12 && h < 19) {
+ $(".greetings-title").html("Good Afternoon");
+ } else {
+ $(".greetings-title").html("Good Evening");
+ }
+
+ var t = setTimeout(initClock, 500);
+}
+
+function loadLists() {
+ var into = $('#result');
+
+ function fileRetrieved(contents) {
+ var lines = contents.split('\n');
+ for (var i = 0; i < lines.length; i += 1) {
+ createListElement(lines[i]);
+ }
+ }
+
+ function createListElement(text) {
+ var el = $('<li></li>').html(text);
+ el.appendTo(into);
+ }
+
+ var text = $('#text').html();
+ fileRetrieved(text);
+} \ No newline at end of file
diff --git a/theme.toml b/theme.toml
new file mode 100644
index 0000000..16802a8
--- /dev/null
+++ b/theme.toml
@@ -0,0 +1,15 @@
+# theme.toml template for a Hugo theme
+# See https://github.com/gohugoio/hugoThemes#themetoml for an example
+
+name = "freshStart"
+license = "MIT"
+licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE"
+description = "Start Page theme for Hugo"
+homepage = "https://github.com/rz3n/hugo-theme-freshstart"
+tags = ["start-page", "fast", "single-page", "responsive", "simple", "clean", "one-page", "light"]
+features = ["responsive"]
+min_version = "0.48.0"
+
+[author]
+ name = "Ricardo Franzen"
+ homepage = "https://rfranzen.com"