Switched theme for caffeinated.blog site from indigo to anatole
@ -3,3 +3,4 @@ title: "{{ replace .Name "-" " " | title }}"
|
|||||||
date: {{ .Date }}
|
date: {{ .Date }}
|
||||||
draft: true
|
draft: true
|
||||||
---
|
---
|
||||||
|
|
||||||
|
135
config.toml
@ -1,42 +1,101 @@
|
|||||||
baseURL = "https://caffeinated.blog/"
|
baseURL = "https://example.com"
|
||||||
title = "Caffeinated Blog"
|
languageCode = "en"
|
||||||
copyright = "Copyright © 2021, Glenn Rice"
|
DefaultContentLanguage = "en"
|
||||||
languageCode = "en-US"
|
title = "Website of Jane Doe"
|
||||||
theme = "indigo"
|
theme = "anatole"
|
||||||
paginate = 3
|
summarylength = 10
|
||||||
|
enableEmoji = true
|
||||||
|
enableRobotsTXT = true
|
||||||
|
|
||||||
|
# Enable Disqus
|
||||||
|
#disqusShortname = ""
|
||||||
|
|
||||||
|
# Google Analytics
|
||||||
|
#googleAnalytics = "UA-123-45"
|
||||||
|
|
||||||
|
# Syntax highlighting
|
||||||
|
pygmentsUseClasses = true
|
||||||
|
pygmentsCodeFences = true
|
||||||
|
pygmentsCodefencesGuessSyntax = true
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
Author = "Glenn Rice"
|
title = "Caffeinated"
|
||||||
Description = "Description of website for head meta tag"
|
author = "Glenn"
|
||||||
Subtitle = "A bit of personal space for writing"
|
#copyright = "2020-2021"
|
||||||
Avatar = "images/myAvatar.svg"
|
description = "A bit of personal space for writing"
|
||||||
Biography = "A short description, a few sentences describing the author. Set the 'ShowBio' parameter to false to hide this."
|
profilePicture = "images/site-logo.png"
|
||||||
ShowBio = false
|
keywords = ""
|
||||||
PermalinkText = "🔗"
|
favicon = "favicons/"
|
||||||
|
# example ["css/custom.css"]
|
||||||
|
customCss = []
|
||||||
|
# example ["js/custom.js"]
|
||||||
|
customJs = []
|
||||||
|
mainSections = ["post"]
|
||||||
|
images = ["images/site-feature-image.png"]
|
||||||
|
doNotLoadAnimations = false
|
||||||
|
# Form Spree Contact Form
|
||||||
|
#contactFormAction = "https://formspree.io/f/your-form-hash-here"
|
||||||
|
# Google Site Verify
|
||||||
|
#googleSiteVerify = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
|
||||||
|
# indexDateFormat = "Mon, Jan 2, 2006"
|
||||||
|
# listDateFormat = "Jan 2"
|
||||||
|
# singleDateFormat = "Mon, Jan 2, 2006"
|
||||||
|
|
||||||
# Contact/social-network identifiers for social icons
|
[params.simpleAnalytics]
|
||||||
#EmailAddress = "email.address@example.com"
|
# enable = true
|
||||||
#FacebookUser = "FacebookUserName"
|
# customurl = "https://analytics.example.com"
|
||||||
#FlickrUser = "FlickrUserName"
|
|
||||||
GitHubUser = "glennrice"
|
|
||||||
#GitLabUser = "GitLabUserName"
|
|
||||||
#GlitchUser = "GlitchUserName"
|
|
||||||
KeybaseUser = "glennr"
|
|
||||||
#LinkedInUser = "LinkedInUserName"
|
|
||||||
#MediumUser = "MediumUserName"
|
|
||||||
MicroBlogUser = "glennr"
|
|
||||||
#RedditUser = "RedditUserName"
|
|
||||||
#StackOverflowUser = "StackOverflowUserName"
|
|
||||||
#TumblrUser = "TumblrUserName"
|
|
||||||
#TwitterUser = "TwitterUserName"
|
|
||||||
|
|
||||||
# These are parameters used for indieweb identity. You should set these along
|
## Math settings
|
||||||
# with the above email/social network parameters.
|
[params.math]
|
||||||
[params.indieWeb]
|
enable = false # options: true, false. Enable math support globally, default: false. You can always enable math on per page.
|
||||||
#EmailAddress = "email.address@example.com"
|
use = "katex" # options: "katex", "mathjax". default is "katex".
|
||||||
#FlickrUser = "FlickrUserName"
|
|
||||||
GitHubUser = "glennrice"
|
## Social links
|
||||||
#TwitterUser = "TwitterUserName"
|
# use 'fab' when brand icons, use 'fas' when standard solid icons.
|
||||||
MicroBlogUser = "glennr"
|
[[params.socialIcons]]
|
||||||
Country = "Australia"
|
icon = "fab fa-linkedin"
|
||||||
#City = "CityName"
|
title = "Linkedin"
|
||||||
|
url = "https://de.linkedin.com/"
|
||||||
|
|
||||||
|
[[params.socialIcons]]
|
||||||
|
icon = "fab fa-github"
|
||||||
|
title = "GitHub"
|
||||||
|
url = "https://github.com/lxndrblz/anatole/"
|
||||||
|
|
||||||
|
[[params.socialIcons]]
|
||||||
|
icon = "fab fa-instagram"
|
||||||
|
title = "instagram"
|
||||||
|
url = "https://www.instagram.com/"
|
||||||
|
|
||||||
|
[[params.socialIcons]]
|
||||||
|
icon = "fas fa-envelope"
|
||||||
|
title = "e-mail"
|
||||||
|
url = "mailto:mail@alexbilz.com"
|
||||||
|
|
||||||
|
## Menu items
|
||||||
|
|
||||||
|
[menu]
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Home"
|
||||||
|
identifier = "home"
|
||||||
|
weight = 100
|
||||||
|
url = "/"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Posts"
|
||||||
|
weight = 200
|
||||||
|
identifier = "posts"
|
||||||
|
url = "/post/"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "About"
|
||||||
|
weight = 300
|
||||||
|
identifier = "about"
|
||||||
|
url = "/about/"
|
||||||
|
|
||||||
|
[[menu.main]]
|
||||||
|
name = "Contact"
|
||||||
|
weight = 400
|
||||||
|
identifier = "contact"
|
||||||
|
url = "/contact/"
|
||||||
|
24
content/_index.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
+++
|
||||||
|
author = "Hugo Authors"
|
||||||
|
+++
|
||||||
|
|
||||||
|
<!--
|
||||||
|
This file is left intentionally empty by default to be backward compatible with initial theme setup.
|
||||||
|
|
||||||
|
Although the theme has advanced a little bit and it now allows to specify the content on the main page (even if the list of posts/articles is not intended).
|
||||||
|
This can be:
|
||||||
|
- with the list of posts/articles (default: `mainSections = ["post"]) or
|
||||||
|
- without the list of posts/articles (by setting `mainSections = [""]`)
|
||||||
|
|
||||||
|
Markdown supported, ie:
|
||||||
|
|
||||||
|
```
|
||||||
|
# Welcome
|
||||||
|
|
||||||
|
- Hugo :rocket:
|
||||||
|
- Hugo theme :rocket:
|
||||||
|
|
||||||
|
Don't forget to check the README.md file!
|
||||||
|
```
|
||||||
|
|
||||||
|
-->
|
@ -1,13 +1,25 @@
|
|||||||
---
|
+++
|
||||||
title: "About The Theme"
|
title = "About"
|
||||||
menu: "main"
|
description = "Hugo, the world's fastest framework for building websites"
|
||||||
draft: false
|
date = "2019-02-28"
|
||||||
---
|
aliases = ["about-us", "about-hugo", "contact"]
|
||||||
|
author = "Hugo Authors"
|
||||||
|
+++
|
||||||
|
|
||||||
Indigo is a lightweight theme for [Hugo][hugo] with [IndieWeb][indieweb] features baked in. It's great for longer-form blogging, placing its focus on distraction-free reading and beautiful typefaces.
|
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.
|
||||||
|
|
||||||
Read more about the theme [here][intro].
|
Hugo makes use of a variety of open source projects including:
|
||||||
|
|
||||||
[hugo]: https://gohugo.io
|
* https://github.com/yuin/goldmark
|
||||||
[indieweb]: https://indieweb.org/
|
* https://github.com/alecthomas/chroma
|
||||||
[intro]: /post/introducing-indigo
|
* 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).
|
||||||
|
@ -1,9 +0,0 @@
|
|||||||
---
|
|
||||||
title: "Adding Page Items"
|
|
||||||
menu: "main"
|
|
||||||
draft: false
|
|
||||||
---
|
|
||||||
|
|
||||||
Indigo supports adding a simple navigation-style menu items across the top of the site. To do so, simply add a `menu: "main"` entry in your page's front matter (TOML format shown).
|
|
||||||
|
|
||||||
If no date is included in the front matter, then the published date won't be shown (as in this page).
|
|
5
content/archives.md
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
date: 2019-05-28
|
||||||
|
type: section
|
||||||
|
layout: "archives"
|
||||||
|
---
|
7
content/contact.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
author: Hugo Authors
|
||||||
|
title: Contact
|
||||||
|
date: 2019-03-08
|
||||||
|
description: Contact Page
|
||||||
|
contact: true
|
||||||
|
---
|
@ -2,6 +2,19 @@
|
|||||||
title: "Online With Hugo"
|
title: "Online With Hugo"
|
||||||
date: 2021-02-02T22:53:29+10:00
|
date: 2021-02-02T22:53:29+10:00
|
||||||
draft: false
|
draft: false
|
||||||
|
tags: [
|
||||||
|
"newbeginnings",
|
||||||
|
]
|
||||||
|
categories: [
|
||||||
|
"blogging",
|
||||||
|
]
|
||||||
|
thumbnail: "/images/2021/danielle-macinnes-coffee-begin-unsplash.jpg"
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
As part of wanting to go through and reorganise my various sites and blogs, so I (once again) have a place to write again, I have switched over to Hugo as my content system. I have just spun up a new web host with Apache and Git to automatically pull site changes from the repo and publish them. It's all working beautifully so far.
|
As part of wanting to go through and reorganise my various sites and blogs, so I (once again) have a place to write again, I have switched over to Hugo as my content system. I have just spun up a new web host with Apache and Git to automatically pull site changes from the repo and publish them. It's all working beautifully so far.
|
||||||
|
|
||||||
|
----
|
||||||
|
|
||||||
|
Photo by [Danielle MacInnes](https://unsplash.com/@dsmacinnes?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText) on [Unsplash](https://unsplash.com/s/photos/new-start?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText)
|
||||||
|
6
content/post/_index.md
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
+++
|
||||||
|
aliases = ["posts", "articles", "blog", "showcase", "docs"]
|
||||||
|
title = "Posts"
|
||||||
|
author = "Hugo Authors"
|
||||||
|
tags = ["index"]
|
||||||
|
+++
|
48
footer.html
@ -1,48 +0,0 @@
|
|||||||
<!-- Footer content -->
|
|
||||||
{{ if .Site.Params.ShowBio }}
|
|
||||||
<div class="h-card">
|
|
||||||
<img class="u-photo" src="{{ .Site.Params.Avatar | absURL }}" />
|
|
||||||
<div class="card-content">
|
|
||||||
<h2 class="card-name"><a class="p-name u-url" href="{{ .Site.BaseURL }}" rel="me">{{ .Site.Params.Author }}</a></h2>
|
|
||||||
<p class="card-subhead">
|
|
||||||
<span class="p-locality">{{ .Site.Params.IndieWeb.City }}</span>,
|
|
||||||
<span class="p-country-name">{{ .Site.Params.IndieWeb.Country }}</span><br />
|
|
||||||
<a class="u-email" href="mailto:{{ .Site.Params.IndieWeb.EmailAddress }}">Email me</a>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<p class="p-note">{{ .Site.Params.Biography }}</p>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
<div id="footer">
|
|
||||||
{{ if or (.NextPage) (.PrevPage) }}
|
|
||||||
<nav id="article-skip">
|
|
||||||
<div class="next">
|
|
||||||
{{ if and (.NextPage) (not .Params.Menu) }}
|
|
||||||
<a alt="Newer article" href="{{ .NextPage.Permalink }}">← Newer</a>
|
|
||||||
{{ else }}
|
|
||||||
<p> </p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
<div class="top">
|
|
||||||
<a alt="Top of page" href="#">Top</a>
|
|
||||||
</div>
|
|
||||||
<div class="prev">
|
|
||||||
{{ if and (.PrevPage) (not .Params.Menu) }}
|
|
||||||
<a alt="Older article" href="{{ .PrevPage.Permalink }}">Older →</a>
|
|
||||||
{{ else }}
|
|
||||||
<p> </p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
{{ end }}
|
|
||||||
{{ partial "social.html" . }}
|
|
||||||
{{ with .Site.Copyright }}
|
|
||||||
<p class="copyright">
|
|
||||||
{{ . }}
|
|
||||||
</p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<!-- Close the body/html document -->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,50 +0,0 @@
|
|||||||
<!-- Footer content -->
|
|
||||||
{{ if .Site.Params.ShowBio }}
|
|
||||||
<div class="h-card">
|
|
||||||
<img class="u-photo" src="{{ .Site.Params.Avatar | absURL }}" />
|
|
||||||
<div class="card-content">
|
|
||||||
<h2 class="card-name"><a class="p-name u-url" href="{{ .Site.BaseURL }}" rel="me">{{ .Site.Params.Author }}</a></h2>
|
|
||||||
<p class="card-subhead">
|
|
||||||
<span class="p-locality">{{ .Site.Params.IndieWeb.City }}</span>,
|
|
||||||
<span class="p-country-name">{{ .Site.Params.IndieWeb.Country }}</span><br />
|
|
||||||
<a class="u-email" href="mailto:{{ .Site.Params.IndieWeb.EmailAddress }}">Email me</a>
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<p class="p-note">{{ .Site.Params.Biography }}</p>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
<div id="footer">
|
|
||||||
{{ if or (.NextPage) (.PrevPage) }}
|
|
||||||
<nav id="article-skip">
|
|
||||||
<div class="next">
|
|
||||||
{{ if and (.NextPage) (not .Params.Menu) }}
|
|
||||||
<a alt="Newer article" href="{{ .NextPage.Permalink }}">← Newer</a>
|
|
||||||
{{ else }}
|
|
||||||
<p> </p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
<div class="top">
|
|
||||||
<a alt="Top of page" href="#">Top</a>
|
|
||||||
</div>
|
|
||||||
<div class="prev">
|
|
||||||
{{ if and (.PrevPage) (not .Params.Menu) }}
|
|
||||||
<a alt="Older article" href="{{ .PrevPage.Permalink }}">Older →</a>
|
|
||||||
{{ else }}
|
|
||||||
<p> </p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
{{ end }}
|
|
||||||
{{ partial "social.html" . }}
|
|
||||||
{{ with .Site.Copyright }}
|
|
||||||
<p class="copyright">
|
|
||||||
{{ . }}
|
|
||||||
</p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
<!-- Cloudflare Web Analytics -->
|
|
||||||
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "7b36ad5d27814467a62fe8eb6bbad21b"}'></script>
|
|
||||||
<!-- End Cloudflare Web Analytics -->
|
|
||||||
<!-- Close the body/html document -->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,20 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="{{ .Site.LanguageCode }}">
|
|
||||||
{{ partial "head.html" . }}
|
|
||||||
<body>
|
|
||||||
<div id="sitelogo">
|
|
||||||
<a class="glyph" alt="Home" href="{{ .Site.BaseURL }}"><img src={{ "images/site-logo.png" | absURL }} alt="Site Logo" height="64px" width="64px"></a>
|
|
||||||
</div>
|
|
||||||
<header>
|
|
||||||
{{ partial "pagenav.html" . }}
|
|
||||||
{{ if not .IsPage }}
|
|
||||||
<div id="site-header">
|
|
||||||
<h1>{{ .Site.Title }}</h1>
|
|
||||||
{{ with .Site.Params.subtitle }}
|
|
||||||
<p>
|
|
||||||
{{ . }}
|
|
||||||
</p>
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
||||||
</header>
|
|
243
public/404.html
@ -1,116 +1,177 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en" data-theme=""><head>
|
||||||
<head>
|
<title> Glenn | 404 Page not found </title>
|
||||||
<meta charset="utf-8">
|
|
||||||
|
|
||||||
<title>404 Page not found | Caffeinated Blog</title>
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
<meta name="description" content="Description of website for head meta tag">
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
<meta name="author" content="">
|
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href=https://caffeinated.blog/apple-touch-icon.png>
|
<link rel="stylesheet"
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href=https://caffeinated.blog/favicon-32x32.png>
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href=https://caffeinated.blog/favicon-16x16.png>
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
<link rel="manifest" href=https://caffeinated.blog/site.webmanifest>
|
crossorigin="anonymous"
|
||||||
<link rel="mask-icon" href=https://caffeinated.blog/safari-pinned-tab.svg color="#00416a">
|
type="text/css">
|
||||||
<meta name="msapplication-TileColor" content="#00aba9">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/404.html">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="me" href="https://github.com/glennrice">
|
|
||||||
|
|
||||||
<link rel="me" href="https://micro.blog/glennr">
|
|
||||||
|
|
||||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/fonts.css />
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/style.css />
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
|
<meta name="twitter:title" content="404 Page not found"/>
|
||||||
|
<meta name="twitter:description" content="A bit of personal space for writing"/>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
<body>
|
<div class="logo-title">
|
||||||
<div id="sitelogo">
|
<div class="title">
|
||||||
<a class="glyph" alt="Home" href="https://caffeinated.blog/"><img src=https://caffeinated.blog/images/site-logo.svg alt="Site Logo" height="64px" width="64px"></a>
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
</div>
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
<header>
|
<div class="description">
|
||||||
<nav>
|
<p>A bit of personal space for writing</p>
|
||||||
|
</div>
|
||||||
<div id="page-nav">
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="https://caffeinated.blog/">Home</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
<div class="page-nav-item">
|
<li>
|
||||||
<a href="/about/">
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
<span>About The Theme</span>
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</li>
|
||||||
|
|
||||||
<div class="page-nav-item">
|
<li>
|
||||||
<a href="/adding-menu-items/">
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
<span>Adding Page Items</span>
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</div>
|
||||||
<h1 class="post-title">404</h1>
|
<div class="main">
|
||||||
</header>
|
<div class="page-top animated fadeInDown ">
|
||||||
<div id="content">
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
<section>
|
<span aria-hidden="true"></span>
|
||||||
<h2>Whoops.</h2>
|
<span aria-hidden="true"></span>
|
||||||
<p>
|
<span aria-hidden="true"></span>
|
||||||
The page you were looking for doesn't exist. Would you like to <a href="https://caffeinated.blog/">go to the home page</a>?
|
</a>
|
||||||
</p>
|
<ul class="nav" id="navMenu">
|
||||||
</section>
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
|
<div class="content">
|
||||||
|
<div class="page_404">
|
||||||
|
<h1>404</h1>
|
||||||
|
<h2>Page Not Found</h2>
|
||||||
|
<p>Sorry, this page does not exist.</p>
|
||||||
|
<p>You can head back to <a href="https://example.com">homepage</a>.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
<div id="footer">
|
|
||||||
|
|
||||||
<aside id="social">
|
|
||||||
<div id="social-icons">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="GitHub profile" href="https://github.com/glennrice"><img src=https://caffeinated.blog/icons/github.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Keybase profile" href="https://keybase.io/glennr"><img src=https://caffeinated.blog/icons/keybase.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/glennr"><img src=https://caffeinated.blog/icons/microblog.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
<p class="copyright">
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
Copyright © 2021, Glenn Rice
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
</p>
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "7b36ad5d27814467a62fe8eb6bbad21b"}'></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
|
||||||
|
</html>
|
||||||
|
1
public/about-hugo/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://example.com/about/</title><link rel="canonical" href="https://example.com/about/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://example.com/about/" /></head></html>
|
1
public/about-us/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://example.com/about/</title><link rel="canonical" href="https://example.com/about/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://example.com/about/" /></head></html>
|
@ -1,146 +1,203 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en" data-theme=""><head>
|
||||||
<head>
|
<title> Glenn | About </title>
|
||||||
<meta charset="utf-8">
|
|
||||||
|
|
||||||
<title>About The Theme | Caffeinated Blog</title>
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
<meta name="description" content="Description of website for head meta tag">
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
<meta name="author" content="">
|
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href=https://caffeinated.blog/apple-touch-icon.png>
|
<link rel="stylesheet"
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href=https://caffeinated.blog/favicon-32x32.png>
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href=https://caffeinated.blog/favicon-16x16.png>
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
<link rel="manifest" href=https://caffeinated.blog/site.webmanifest>
|
crossorigin="anonymous"
|
||||||
<link rel="mask-icon" href=https://caffeinated.blog/safari-pinned-tab.svg color="#00416a">
|
type="text/css">
|
||||||
<meta name="msapplication-TileColor" content="#00aba9">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/about/">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="me" href="https://github.com/glennrice">
|
|
||||||
|
|
||||||
<link rel="me" href="https://micro.blog/glennr">
|
|
||||||
|
|
||||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/fonts.css />
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/style.css />
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
|
<meta name="twitter:title" content="About"/>
|
||||||
|
<meta name="twitter:description" content="Hugo, the world's fastest framework for building websites"/>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
<body>
|
<div class="logo-title">
|
||||||
<div id="sitelogo">
|
<div class="title">
|
||||||
<a class="glyph" alt="Home" href="https://caffeinated.blog/"><img src=https://caffeinated.blog/images/site-logo.png alt="Site Logo" height="64px" width="64px"></a>
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
</div>
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
<header>
|
<div class="description">
|
||||||
<nav>
|
<p>A bit of personal space for writing</p>
|
||||||
|
</div>
|
||||||
<div id="page-nav">
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="https://caffeinated.blog/">Home</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/about/">
|
|
||||||
|
|
||||||
<span>About The Theme</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/adding-menu-items/">
|
|
||||||
|
|
||||||
<span>Adding Page Items</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
<ul class="social-links">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="content">
|
|
||||||
<article class="h-entry">
|
|
||||||
<header>
|
|
||||||
<h1 class="post-title p-name">About The Theme</h1>
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
</header>
|
<li><a
|
||||||
<section class="content e-content">
|
href="/post/"
|
||||||
<p>Indigo is a lightweight theme for <a href="https://gohugo.io">Hugo</a> with <a href="https://indieweb.org/">IndieWeb</a> features baked in. It’s great for longer-form blogging, placing its focus on distraction-free reading and beautiful typefaces.</p>
|
|
||||||
<p>Read more about the theme <a href="/post/introducing-indigo">here</a>.</p>
|
title="">Posts</a></li>
|
||||||
|
|
||||||
</section>
|
|
||||||
<footer>
|
|
||||||
<a class="permalink u-url" href="https://caffeinated.blog/about/">🔗</a>
|
|
||||||
|
|
||||||
</footer>
|
<li><a class="current"
|
||||||
</article>
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
<div id="footer">
|
<div class="content">
|
||||||
|
<div class="post animated fadeInDown ">
|
||||||
<nav id="article-skip">
|
<div class="post-content">
|
||||||
<div class="next">
|
|
||||||
|
<div class="post-title">
|
||||||
<p> </p>
|
<h3>About</h3>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<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>
|
||||||
|
</div>
|
||||||
|
<div class="post-footer">
|
||||||
|
<div class="info">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="top">
|
|
||||||
<a alt="Top of page" href="#">Top</a>
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="prev">
|
|
||||||
|
|
||||||
<p> </p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<aside id="social">
|
|
||||||
<div id="social-icons">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="GitHub profile" href="https://github.com/glennrice"><img src=https://caffeinated.blog/icons/github.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Keybase profile" href="https://keybase.io/glennr"><img src=https://caffeinated.blog/icons/keybase.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/glennr"><img src=https://caffeinated.blog/icons/microblog.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
<p class="copyright">
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
Copyright © 2021, Glenn Rice
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
</p>
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "7b36ad5d27814467a62fe8eb6bbad21b"}'></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
|
||||||
|
</html>
|
||||||
|
@ -1,146 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
|
|
||||||
<title>Adding Page Items | Caffeinated Blog</title>
|
|
||||||
<meta name="description" content="Description of website for head meta tag">
|
|
||||||
<meta name="author" content="">
|
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href=https://caffeinated.blog/apple-touch-icon.png>
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href=https://caffeinated.blog/favicon-32x32.png>
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href=https://caffeinated.blog/favicon-16x16.png>
|
|
||||||
<link rel="manifest" href=https://caffeinated.blog/site.webmanifest>
|
|
||||||
<link rel="mask-icon" href=https://caffeinated.blog/safari-pinned-tab.svg color="#00416a">
|
|
||||||
<meta name="msapplication-TileColor" content="#00aba9">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="me" href="https://github.com/glennrice">
|
|
||||||
|
|
||||||
<link rel="me" href="https://micro.blog/glennr">
|
|
||||||
|
|
||||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/fonts.css />
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/style.css />
|
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div id="sitelogo">
|
|
||||||
<a class="glyph" alt="Home" href="https://caffeinated.blog/"><img src=https://caffeinated.blog/images/site-logo.png alt="Site Logo" height="64px" width="64px"></a>
|
|
||||||
</div>
|
|
||||||
<header>
|
|
||||||
<nav>
|
|
||||||
|
|
||||||
<div id="page-nav">
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="https://caffeinated.blog/">Home</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/about/">
|
|
||||||
|
|
||||||
<span>About The Theme</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/adding-menu-items/">
|
|
||||||
|
|
||||||
<span>Adding Page Items</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div id="content">
|
|
||||||
<article class="h-entry">
|
|
||||||
<header>
|
|
||||||
<h1 class="post-title p-name">Adding Page Items</h1>
|
|
||||||
|
|
||||||
|
|
||||||
</header>
|
|
||||||
<section class="content e-content">
|
|
||||||
<p>Indigo supports adding a simple navigation-style menu items across the top of the site. To do so, simply add a <code>menu: "main"</code> entry in your page’s front matter (TOML format shown).</p>
|
|
||||||
<p>If no date is included in the front matter, then the published date won’t be shown (as in this page).</p>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
<footer>
|
|
||||||
<a class="permalink u-url" href="https://caffeinated.blog/adding-menu-items/">🔗</a>
|
|
||||||
|
|
||||||
</footer>
|
|
||||||
</article>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
|
|
||||||
<nav id="article-skip">
|
|
||||||
<div class="next">
|
|
||||||
|
|
||||||
<p> </p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<div class="top">
|
|
||||||
<a alt="Top of page" href="#">Top</a>
|
|
||||||
</div>
|
|
||||||
<div class="prev">
|
|
||||||
|
|
||||||
<p> </p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<aside id="social">
|
|
||||||
<div id="social-icons">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="GitHub profile" href="https://github.com/glennrice"><img src=https://caffeinated.blog/icons/github.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Keybase profile" href="https://keybase.io/glennr"><img src=https://caffeinated.blog/icons/keybase.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/glennr"><img src=https://caffeinated.blog/icons/microblog.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
<p class="copyright">
|
|
||||||
Copyright © 2021, Glenn Rice
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "7b36ad5d27814467a62fe8eb6bbad21b"}'></script>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 3.1 KiB |
190
public/archives/index.html
Normal file
@ -0,0 +1,190 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" data-theme=""><head>
|
||||||
|
<title> Glenn </title>
|
||||||
|
|
||||||
|
|
||||||
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/archives/">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
|
<meta name="twitter:title" content=""/>
|
||||||
|
<meta name="twitter:description" content=""/>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
|
<div class="logo-title">
|
||||||
|
<div class="title">
|
||||||
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
|
<div class="description">
|
||||||
|
<p>A bit of personal space for writing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
|
<div class="content">
|
||||||
|
<div class="post animated fadeInDown ">
|
||||||
|
<div class="post-content">
|
||||||
|
|
||||||
|
<div class="post-title">
|
||||||
|
<h3></h3>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="post-footer">
|
||||||
|
<div class="info">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
1
public/articles/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://example.com/post/</title><link rel="canonical" href="https://example.com/post/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://example.com/post/" /></head></html>
|
1
public/blog/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://example.com/post/</title><link rel="canonical" href="https://example.com/post/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://example.com/post/" /></head></html>
|
@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<browserconfig>
|
|
||||||
<msapplication>
|
|
||||||
<tile>
|
|
||||||
<square150x150logo src="/mstile-150x150.png"/>
|
|
||||||
<TileColor>#00aba9</TileColor>
|
|
||||||
</tile>
|
|
||||||
</msapplication>
|
|
||||||
</browserconfig>
|
|
189
public/categories/blogging/index.html
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" data-theme=""><head>
|
||||||
|
<title> Glenn | blogging </title>
|
||||||
|
|
||||||
|
|
||||||
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/categories/blogging/">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="https://example.com/categories/blogging/index.xml" title="Website of Jane Doe" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
|
<meta name="twitter:title" content="blogging"/>
|
||||||
|
<meta name="twitter:description" content="A bit of personal space for writing"/>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
|
<div class="logo-title">
|
||||||
|
<div class="title">
|
||||||
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
|
<div class="description">
|
||||||
|
<p>A bit of personal space for writing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
|
<div class="content">
|
||||||
|
<div class="archive animated fadeInDown ">
|
||||||
|
<ul class="list-with-title">
|
||||||
|
|
||||||
|
<div class="listing-title">2021</div>
|
||||||
|
|
||||||
|
<ul class="listing">
|
||||||
|
<div class="listing-item">
|
||||||
|
<div class="listing-post"><a href="https://example.com/post/2021/02/online-with-hugo/" title="Online With Hugo">Online With Hugo</a>
|
||||||
|
<div class="post-time"><span class="date"> Feb 2
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
24
public/categories/blogging/index.xml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>blogging on Website of Jane Doe</title>
|
||||||
|
<link>https://example.com/categories/blogging/</link>
|
||||||
|
<description>Recent content in blogging on Website of Jane Doe</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Tue, 02 Feb 2021 22:53:29 +1000</lastBuildDate>
|
||||||
|
|
||||||
|
<atom:link href="https://example.com/categories/blogging/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Online With Hugo</title>
|
||||||
|
<link>https://example.com/post/2021/02/online-with-hugo/</link>
|
||||||
|
<pubDate>Tue, 02 Feb 2021 22:53:29 +1000</pubDate>
|
||||||
|
|
||||||
|
<guid>https://example.com/post/2021/02/online-with-hugo/</guid>
|
||||||
|
<description>As part of wanting to go through and reorganise my various sites and blogs, so I (once again) have a place to write again, I have switched over to Hugo as my content system.</description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
@ -1,126 +1,189 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en" data-theme=""><head>
|
||||||
<head>
|
<title> Glenn | Categories </title>
|
||||||
<meta charset="utf-8">
|
|
||||||
|
|
||||||
<title>Categories | Caffeinated Blog</title>
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
<meta name="description" content="Description of website for head meta tag">
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
<meta name="author" content="">
|
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href=https://caffeinated.blog/apple-touch-icon.png>
|
<link rel="stylesheet"
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href=https://caffeinated.blog/favicon-32x32.png>
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href=https://caffeinated.blog/favicon-16x16.png>
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
<link rel="manifest" href=https://caffeinated.blog/site.webmanifest>
|
crossorigin="anonymous"
|
||||||
<link rel="mask-icon" href=https://caffeinated.blog/safari-pinned-tab.svg color="#00416a">
|
type="text/css">
|
||||||
<meta name="msapplication-TileColor" content="#00aba9">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/categories/">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="https://example.com/categories/index.xml" title="Website of Jane Doe" />
|
||||||
|
|
||||||
|
|
||||||
<link rel="me" href="https://github.com/glennrice">
|
|
||||||
|
|
||||||
<link rel="me" href="https://micro.blog/glennr">
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/fonts.css />
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/style.css />
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="twitter:title" content="Categories"/>
|
||||||
|
<meta name="twitter:description" content="A bit of personal space for writing"/>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
<body>
|
<div class="logo-title">
|
||||||
<div id="sitelogo">
|
<div class="title">
|
||||||
<a class="glyph" alt="Home" href="https://caffeinated.blog/"><img src=https://caffeinated.blog/images/site-logo.png alt="Site Logo" height="64px" width="64px"></a>
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
</div>
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
<header>
|
<div class="description">
|
||||||
<nav>
|
<p>A bit of personal space for writing</p>
|
||||||
|
|
||||||
<div id="page-nav">
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="https://caffeinated.blog/">Home</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/about/">
|
|
||||||
|
|
||||||
<span>About The Theme</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/adding-menu-items/">
|
|
||||||
|
|
||||||
<span>Adding Page Items</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div id="site-header">
|
|
||||||
<h1>Caffeinated Blog</h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
A bit of personal space for writing
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
</header>
|
<li>
|
||||||
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
<h2>
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
<span class="list-heading-type">categories:</span>
|
</a>
|
||||||
<span class="list-heading-tag">Categories</span>
|
</li>
|
||||||
</h2>
|
|
||||||
|
<li>
|
||||||
<div id="content">
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
<div id="footer">
|
<div class="content">
|
||||||
|
<div class="archive animated fadeInDown ">
|
||||||
<aside id="social">
|
<ul class="list-with-title">
|
||||||
<div id="social-icons">
|
|
||||||
|
<div class="listing-title">2021</div>
|
||||||
|
|
||||||
|
<ul class="listing">
|
||||||
|
<div class="listing-item">
|
||||||
<div class="icon-24x24">
|
<div class="listing-post"><a href="https://example.com/categories/blogging/" title="blogging">blogging</a>
|
||||||
<a class="glyph" alt="GitHub profile" href="https://github.com/glennrice"><img src=https://caffeinated.blog/icons/github.svg height="24px" width="24px"></a>
|
<div class="post-time"><span class="date"> Feb 2
|
||||||
</div>
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Keybase profile" href="https://keybase.io/glennr"><img src=https://caffeinated.blog/icons/keybase.svg height="24px" width="24px"></a>
|
</ul>
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/glennr"><img src=https://caffeinated.blog/icons/microblog.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
<p class="copyright">
|
|
||||||
Copyright © 2021, Glenn Rice
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "7b36ad5d27814467a62fe8eb6bbad21b"}'></script>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
|
||||||
|
</html>
|
||||||
|
@ -1,15 +1,24 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Categories on Caffeinated Blog</title>
|
<title>Categories on Website of Jane Doe</title>
|
||||||
<link>https://caffeinated.blog/categories/</link>
|
<link>https://example.com/categories/</link>
|
||||||
<description>Recent content in Categories on Caffeinated Blog</description>
|
<description>Recent content in Categories on Website of Jane Doe</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-US</language>
|
<language>en</language>
|
||||||
<copyright>Copyright © 2021, Glenn Rice</copyright>
|
<lastBuildDate>Tue, 02 Feb 2021 22:53:29 +1000</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://caffeinated.blog/categories/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://example.com/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>blogging</title>
|
||||||
|
<link>https://example.com/categories/blogging/</link>
|
||||||
|
<pubDate>Tue, 02 Feb 2021 22:53:29 +1000</pubDate>
|
||||||
|
|
||||||
|
<guid>https://example.com/categories/blogging/</guid>
|
||||||
|
<description></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
@ -1,183 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
|
|
||||||
<title>meta | Caffeinated Blog</title>
|
|
||||||
<meta name="description" content="Description of website for head meta tag">
|
|
||||||
<meta name="author" content="">
|
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href=https://caffeinated.blog/apple-touch-icon.png>
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href=https://caffeinated.blog/favicon-32x32.png>
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href=https://caffeinated.blog/favicon-16x16.png>
|
|
||||||
<link rel="manifest" href=https://caffeinated.blog/site.webmanifest>
|
|
||||||
<link rel="mask-icon" href=https://caffeinated.blog/safari-pinned-tab.svg color="#00416a">
|
|
||||||
<meta name="msapplication-TileColor" content="#00aba9">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="me" href="https://github.com/glennrice">
|
|
||||||
|
|
||||||
<link rel="me" href="https://micro.blog/glennr">
|
|
||||||
|
|
||||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/fonts.css />
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/style.css />
|
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div id="sitelogo">
|
|
||||||
<a class="glyph" alt="Home" href="https://caffeinated.blog/"><img src=https://caffeinated.blog/images/site-logo.png alt="Site Logo" height="64px" width="64px"></a>
|
|
||||||
</div>
|
|
||||||
<header>
|
|
||||||
<nav>
|
|
||||||
|
|
||||||
<div id="page-nav">
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="https://caffeinated.blog/">Home</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/about/">
|
|
||||||
|
|
||||||
<span>About The Theme</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/adding-menu-items/">
|
|
||||||
|
|
||||||
<span>Adding Page Items</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div id="site-header">
|
|
||||||
<h1>Caffeinated Blog</h1>
|
|
||||||
|
|
||||||
<p>
|
|
||||||
A bit of personal space for writing
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<h2>
|
|
||||||
<span class="list-heading-type">categories:</span>
|
|
||||||
<span class="list-heading-tag">meta</span>
|
|
||||||
</h2>
|
|
||||||
|
|
||||||
<div id="content">
|
|
||||||
|
|
||||||
<article>
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<h2 class="list-title"><a href="https://caffeinated.blog/post/introducing-indigo/">Introducing Indigo</a></h2>
|
|
||||||
|
|
||||||
<p class="list-post-date">
|
|
||||||
<time datetime="2018-10-01T09:00:00-04:00">
|
|
||||||
1 October, 2018 at 09:00 -0400
|
|
||||||
</time>
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<div>
|
|
||||||
Indigo is a lightweight theme for Hugo with IndieWeb features baked in. It’s great for longer-form blogging, placing its focus on distraction-free reading and beautiful typefaces.
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p><a class="read-more" href="https://caffeinated.blog/post/introducing-indigo/">Read more →</a></p>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
<article>
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<h2 class="list-title"><a href="https://caffeinated.blog/post/featured-typefaces/">Featured Typefaces</a></h2>
|
|
||||||
|
|
||||||
<p class="list-post-date">
|
|
||||||
<time datetime="2018-10-01T08:30:00-04:00">
|
|
||||||
1 October, 2018 at 08:30 -0400
|
|
||||||
</time>
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<div>
|
|
||||||
Indigo uses a combination of three beautiful typefaces to render your words.
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p><a class="read-more" href="https://caffeinated.blog/post/featured-typefaces/">Read more →</a></p>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
<article>
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<h2 class="list-title"><a href="https://caffeinated.blog/post/author-bios/">Author Bios</a></h2>
|
|
||||||
|
|
||||||
<p class="list-post-date">
|
|
||||||
<time datetime="2018-10-01T08:00:00-04:00">
|
|
||||||
1 October, 2018 at 08:00 -0400
|
|
||||||
</time>
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<div>
|
|
||||||
The bottom of every page in the theme can optionally show a short biography of the site author, including a profile picture, email link, and location.
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p><a class="read-more" href="https://caffeinated.blog/post/author-bios/">Read more →</a></p>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
|
|
||||||
<aside id="social">
|
|
||||||
<div id="social-icons">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="GitHub profile" href="https://github.com/glennrice"><img src=https://caffeinated.blog/icons/github.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Keybase profile" href="https://keybase.io/glennr"><img src=https://caffeinated.blog/icons/keybase.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/glennr"><img src=https://caffeinated.blog/icons/microblog.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
<p class="copyright">
|
|
||||||
Copyright © 2021, Glenn Rice
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -1,43 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
||||||
<channel>
|
|
||||||
<title>meta on Caffeinated Blog</title>
|
|
||||||
<link>https://caffeinated.blog/categories/meta/</link>
|
|
||||||
<description>Recent content in meta on Caffeinated Blog</description>
|
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
|
||||||
<language>en-US</language>
|
|
||||||
<copyright>Copyright © 2021, Glenn Rice</copyright>
|
|
||||||
<lastBuildDate>Mon, 01 Oct 2018 09:00:00 -0400</lastBuildDate>
|
|
||||||
|
|
||||||
<atom:link href="https://caffeinated.blog/categories/meta/index.xml" rel="self" type="application/rss+xml" />
|
|
||||||
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Introducing Indigo</title>
|
|
||||||
<link>https://caffeinated.blog/post/introducing-indigo/</link>
|
|
||||||
<pubDate>Mon, 01 Oct 2018 09:00:00 -0400</pubDate>
|
|
||||||
|
|
||||||
<guid>https://caffeinated.blog/post/introducing-indigo/</guid>
|
|
||||||
<description><p>Indigo is a lightweight theme for <a href="https://gohugo.io">Hugo</a> with <a href="https://indieweb.org">IndieWeb</a> features baked in. It&rsquo;s great for longer-form blogging, placing its focus on distraction-free reading and beautiful typefaces.</p></description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Featured Typefaces</title>
|
|
||||||
<link>https://caffeinated.blog/post/featured-typefaces/</link>
|
|
||||||
<pubDate>Mon, 01 Oct 2018 08:30:00 -0400</pubDate>
|
|
||||||
|
|
||||||
<guid>https://caffeinated.blog/post/featured-typefaces/</guid>
|
|
||||||
<description><p>Indigo uses a combination of three beautiful typefaces to render your words.</p></description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
<item>
|
|
||||||
<title>Author Bios</title>
|
|
||||||
<link>https://caffeinated.blog/post/author-bios/</link>
|
|
||||||
<pubDate>Mon, 01 Oct 2018 08:00:00 -0400</pubDate>
|
|
||||||
|
|
||||||
<guid>https://caffeinated.blog/post/author-bios/</guid>
|
|
||||||
<description><p>The bottom of every page in the theme can optionally show a short biography of the site author, including a profile picture, email link, and location.</p></description>
|
|
||||||
</item>
|
|
||||||
|
|
||||||
</channel>
|
|
||||||
</rss>
|
|
@ -1 +0,0 @@
|
|||||||
<!DOCTYPE html><html><head><title>https://example.com/categories/</title><link rel="canonical" href="https://example.com/categories/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://example.com/categories/" /></head></html>
|
|
189
public/categories/syntax/index.html
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" data-theme=""><head>
|
||||||
|
<title> Glenn | syntax </title>
|
||||||
|
|
||||||
|
|
||||||
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/categories/syntax/">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="https://example.com/categories/syntax/index.xml" title="Website of Jane Doe" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
|
<meta name="twitter:title" content="syntax"/>
|
||||||
|
<meta name="twitter:description" content="A bit of personal space for writing"/>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
|
<div class="logo-title">
|
||||||
|
<div class="title">
|
||||||
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
|
<div class="description">
|
||||||
|
<p>A bit of personal space for writing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
|
<div class="content">
|
||||||
|
<div class="archive animated fadeInDown ">
|
||||||
|
<ul class="list-with-title">
|
||||||
|
|
||||||
|
<div class="listing-title">2019</div>
|
||||||
|
|
||||||
|
<ul class="listing">
|
||||||
|
<div class="listing-item">
|
||||||
|
<div class="listing-post"><a href="https://example.com/post/markdown-syntax/" title="Markdown Syntax Guide">Markdown Syntax Guide</a>
|
||||||
|
<div class="post-time"><span class="date"> Mar 11
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
24
public/categories/syntax/index.xml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?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 of Jane Doe</title>
|
||||||
|
<link>https://example.com/categories/syntax/</link>
|
||||||
|
<description>Recent content in syntax on Website of Jane Doe</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
|
||||||
|
|
||||||
|
<atom:link href="https://example.com/categories/syntax/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Markdown Syntax Guide</title>
|
||||||
|
<link>https://example.com/post/markdown-syntax/</link>
|
||||||
|
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>https://example.com/post/markdown-syntax/</guid>
|
||||||
|
<description><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></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
189
public/categories/themes/index.html
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" data-theme=""><head>
|
||||||
|
<title> Glenn | themes </title>
|
||||||
|
|
||||||
|
|
||||||
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/categories/themes/">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="https://example.com/categories/themes/index.xml" title="Website of Jane Doe" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
|
<meta name="twitter:title" content="themes"/>
|
||||||
|
<meta name="twitter:description" content="A bit of personal space for writing"/>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
|
<div class="logo-title">
|
||||||
|
<div class="title">
|
||||||
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
|
<div class="description">
|
||||||
|
<p>A bit of personal space for writing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
|
<div class="content">
|
||||||
|
<div class="archive animated fadeInDown ">
|
||||||
|
<ul class="list-with-title">
|
||||||
|
|
||||||
|
<div class="listing-title">2019</div>
|
||||||
|
|
||||||
|
<ul class="listing">
|
||||||
|
<div class="listing-item">
|
||||||
|
<div class="listing-post"><a href="https://example.com/post/markdown-syntax/" title="Markdown Syntax Guide">Markdown Syntax Guide</a>
|
||||||
|
<div class="post-time"><span class="date"> Mar 11
|
||||||
|
</span></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
24
public/categories/themes/index.xml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
<?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 of Jane Doe</title>
|
||||||
|
<link>https://example.com/categories/themes/</link>
|
||||||
|
<description>Recent content in themes on Website of Jane Doe</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<lastBuildDate>Mon, 11 Mar 2019 00:00:00 +0000</lastBuildDate>
|
||||||
|
|
||||||
|
<atom:link href="https://example.com/categories/themes/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
|
<item>
|
||||||
|
<title>Markdown Syntax Guide</title>
|
||||||
|
<link>https://example.com/post/markdown-syntax/</link>
|
||||||
|
<pubDate>Mon, 11 Mar 2019 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>https://example.com/post/markdown-syntax/</guid>
|
||||||
|
<description><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></description>
|
||||||
|
</item>
|
||||||
|
|
||||||
|
</channel>
|
||||||
|
</rss>
|
209
public/contact/index.html
Normal file
@ -0,0 +1,209 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" data-theme=""><head>
|
||||||
|
<title> Glenn | Contact </title>
|
||||||
|
|
||||||
|
|
||||||
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/contact/">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
|
<meta name="twitter:title" content="Contact"/>
|
||||||
|
<meta name="twitter:description" content="Contact Page"/>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
|
<div class="logo-title">
|
||||||
|
<div class="title">
|
||||||
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
|
<div class="description">
|
||||||
|
<p>A bit of personal space for writing</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/"
|
||||||
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
<li><a class="current"
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<li class="theme-switch-item">
|
||||||
|
<a class="theme-switch" title="Switch Theme">
|
||||||
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
|
<div class="content">
|
||||||
|
<div class="post animated fadeInDown ">
|
||||||
|
<div class="post-content">
|
||||||
|
|
||||||
|
<div class="post-title">
|
||||||
|
<h3>Contact</h3>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="contact-form">
|
||||||
|
<form class="form-style" method="POST" action="" data-toggle="validator">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<input class="field-style field-full" type="text" name="username" id="username" placeholder="Name" required>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<input class="field-style field-full" type="email" id="email" name="email" placeholder="Email" required>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<textarea class="field-style" name="message" id="message" rows="6" placeholder=""></textarea>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<input class="field-style" type="submit" value="Send"></input>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="post-footer">
|
||||||
|
<div class="info">
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
@ -1,72 +0,0 @@
|
|||||||
@font-face {
|
|
||||||
font-family: 'Fira Code';
|
|
||||||
src: url('../fonts/FiraCode-Regular.eot');
|
|
||||||
src: url('../fonts/FiraCode-Regular.eot?#iefix') format('embedded-opentype'),
|
|
||||||
url('../fonts/FiraCode-Regular.woff2') format('woff2'),
|
|
||||||
url('../fonts/FiraCode-Regular.woff') format('woff'),
|
|
||||||
url('../fonts/FiraCode-Regular.ttf') format('truetype');
|
|
||||||
font-weight: 400;
|
|
||||||
font-style: normal;
|
|
||||||
font-display: fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Charter';
|
|
||||||
src: url('../fonts/charter_regular-webfont.eot');
|
|
||||||
src: url('../fonts/charter_regular-webfont.eot?#iefix') format('embedded-opentype'),
|
|
||||||
url('../fonts/charter_regular-webfont.woff') format('woff'),
|
|
||||||
url('../fonts/charter_regular-webfont.ttf') format('truetype');
|
|
||||||
font-display: fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Charter';
|
|
||||||
src: url('../fonts/charter_bold-webfont.eot');
|
|
||||||
src: url('../fonts/charter_bold-webfont.eot?#iefix') format('embedded-opentype'),
|
|
||||||
url('../fonts/charter_bold-webfont.woff') format('woff'),
|
|
||||||
url('../fonts/charter_bold-webfont.ttf') format('truetype');
|
|
||||||
font-weight: bold;
|
|
||||||
font-display: fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Charter';
|
|
||||||
src: url('../fonts/charter_italic-webfont.eot');
|
|
||||||
src: url('../fonts/charter_italic-webfont.eot?#iefix') format('embedded-opentype'),
|
|
||||||
url('../fonts/charter_italic-webfont.woff') format('woff'),
|
|
||||||
url('../fonts/charter_italic-webfont.ttf') format('truetype');
|
|
||||||
font-style: italic;
|
|
||||||
font-display: fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Charter';
|
|
||||||
src: url('../fonts/charter_bold_italic-webfont.eot');
|
|
||||||
src: url('../fonts/charter_bold_italic-webfont.eot?#iefix') format('embedded-opentype'),
|
|
||||||
url('../fonts/charter_bold_italic-webfont.woff') format('woff'),
|
|
||||||
url('../fonts/charter_bold_italic-webfont.ttf') format('truetype');
|
|
||||||
font-style: italic;
|
|
||||||
font-weight: bold;
|
|
||||||
font-display: fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Fira Sans';
|
|
||||||
src: url('../fonts/FiraSans-Book.eot');
|
|
||||||
src: url('../fonts/FiraSans-Book.eot?#iefix') format('embedded-opentype'),
|
|
||||||
url('../fonts/FiraSans-Book.woff2') format('woff2'),
|
|
||||||
url('../fonts/FiraSans-Book.woff') format('woff'),
|
|
||||||
url('../fonts/FiraSans-Book.ttf') format('truetype');
|
|
||||||
font-display: fallback;
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: 'Fira Sans';
|
|
||||||
src: url('../fonts/FiraSans-Bold.eot');
|
|
||||||
src: url('../fonts/FiraSans-Bold.eot?#iefix') format('embedded-opentype'),
|
|
||||||
url('../fonts/FiraSans-Bold.woff2') format('woff2'),
|
|
||||||
url('../fonts/FiraSans-Bold.woff') format('woff'),
|
|
||||||
url('../fonts/FiraSans-Bold.ttf') format('truetype');
|
|
||||||
font-weight: bold;
|
|
||||||
font-display: fallback;
|
|
||||||
}
|
|
@ -1,464 +0,0 @@
|
|||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background-color: #f8f8f8;
|
|
||||||
color: #3f3f3f;
|
|
||||||
font-family: "Charter", Times, "Times New Roman", serif;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Desktop styles */
|
|
||||||
@media only screen and (min-width: 860px) {
|
|
||||||
div#sitelogo {
|
|
||||||
margin-left: -96px;
|
|
||||||
position: fixed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (min-width: 768px) {
|
|
||||||
body {
|
|
||||||
max-width: 800px;
|
|
||||||
font-size: 1.3em;
|
|
||||||
width: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
code,
|
|
||||||
pre {
|
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
|
||||||
font-size: x-large;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-24x24:hover {
|
|
||||||
background-color: #f8f8f8;
|
|
||||||
border-top: 2px solid #00416a;
|
|
||||||
padding-top: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-content {
|
|
||||||
margin-left: 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* High-DPI mobile styles */
|
|
||||||
@media only screen and (max-width: 768px) {
|
|
||||||
body {
|
|
||||||
font-size: 1em;
|
|
||||||
max-width: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
|
||||||
font-size: x-large;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-content {
|
|
||||||
margin-left: 25px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Low-DPI mobile styles */
|
|
||||||
@media only screen and (max-width: 414px) {
|
|
||||||
body {
|
|
||||||
font-size: 1.2em;
|
|
||||||
max-width: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
|
||||||
font-size: x-large;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-content {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#sitelogo {
|
|
||||||
margin: 16px auto 0 auto;
|
|
||||||
width: 64px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.glyph:hover {
|
|
||||||
background-color: #f8f8f8;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-weight: bold;
|
|
||||||
margin-top: 2em;
|
|
||||||
padding-top: 0.15em;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: #00416a;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:visited {
|
|
||||||
color: #316586;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover {
|
|
||||||
background-color: #00416a;
|
|
||||||
color: #dee5e9;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1.post-title {
|
|
||||||
border-top: 2px solid #3f3f3f;
|
|
||||||
font-size: 2.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2.list-title > a {
|
|
||||||
color: #00416a;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2.list-title > a:visited {
|
|
||||||
color: #316586;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2.list-title > a:hover {
|
|
||||||
background-color: #f8f8f8;
|
|
||||||
color: #7b9cb0;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.read-more {
|
|
||||||
font-family: "Fira Sans";
|
|
||||||
font-size: smaller;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
section.content {
|
|
||||||
line-height: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.post-date {
|
|
||||||
background-color: #00416a;
|
|
||||||
color: #dee5e9;
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: smaller;
|
|
||||||
margin: 0 0 2.5em 0;
|
|
||||||
padding: 0.25em 0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.p-author {
|
|
||||||
color: #dee5e9;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2.list-title {
|
|
||||||
margin: 2em 0 0 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
p.list-post-date {
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: smaller;
|
|
||||||
margin: 1em 0 1.5em 0;
|
|
||||||
padding: 0;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
#footer {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyright {
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: smaller;
|
|
||||||
margin-top: 2em;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.h-card {
|
|
||||||
box-shadow: 0 5px 5px #ccc;
|
|
||||||
margin: 100px auto;
|
|
||||||
min-height: 150px;
|
|
||||||
padding: 25px;
|
|
||||||
width: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
img.u-photo {
|
|
||||||
width: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-content {
|
|
||||||
display: inline-block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-name {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.card-subhead {
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: smaller;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
|
||||||
color: #00416a;
|
|
||||||
background-color: #dee5e9;
|
|
||||||
border-left: 25px solid #00416a;
|
|
||||||
line-height: 1.25em;
|
|
||||||
margin: 2em auto;
|
|
||||||
padding: 1% 5%;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
background-color: #dee5e9;
|
|
||||||
color: #00416a;
|
|
||||||
font-family: "Fira Code", "Courier New", Courier, monospace;
|
|
||||||
padding: 0.1em 0.2em 0.1em 0.2em;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
background-color: #dee5e9;
|
|
||||||
border: 1px solid #ccc;
|
|
||||||
border-radius: 5px;
|
|
||||||
font-size: 0.8em;
|
|
||||||
margin: 2em auto;
|
|
||||||
overflow-x: scroll;
|
|
||||||
padding: 1em;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
hr.post-underline {
|
|
||||||
border: 0;
|
|
||||||
border-top: 1px solid #ccc;
|
|
||||||
display: block;
|
|
||||||
height: 1px;
|
|
||||||
padding: 0;
|
|
||||||
margin: 2em auto;
|
|
||||||
width: 75%;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.permalink {
|
|
||||||
border-radius: 100%;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.post-tag {
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: small;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.post-tag {
|
|
||||||
background-color: #dee5e9;
|
|
||||||
border: 1px solid #7b9cb0;
|
|
||||||
border-radius: 5px;
|
|
||||||
color: #316586;
|
|
||||||
padding: 0.15em 0.3em 0.1em 0.3em;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.post-tag:hover {
|
|
||||||
background-color: #7b9cb0;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list-heading-type {
|
|
||||||
font-size: large;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
.list-heading-tag {
|
|
||||||
background-color: #dee5e9;
|
|
||||||
border: 1px solid #7b9cb0;
|
|
||||||
border-radius: 5px;
|
|
||||||
color: #316586;
|
|
||||||
font-size: large;
|
|
||||||
font-weight: 100;
|
|
||||||
padding: 0.25em 0.5em;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#site-header {
|
|
||||||
border-top: 5px solid #3f3f3f;
|
|
||||||
border-bottom: 2px solid #3f3f3f;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#site-header > h1 {
|
|
||||||
font-size: 2.5em;
|
|
||||||
line-height: 1em;
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#site-header > p {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#page-nav,
|
|
||||||
#pagination {
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: smaller;
|
|
||||||
line-height: 1em;
|
|
||||||
margin: 1.5em 0 2.5em 0;
|
|
||||||
padding: 0;
|
|
||||||
text-align: center;
|
|
||||||
text-transform: uppercase;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
#page-nav {
|
|
||||||
align-items: flex-start;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.page-nav-item,
|
|
||||||
div.page-nav-spacer {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.page-nav-item > a {
|
|
||||||
color: #00416a;
|
|
||||||
display: block;
|
|
||||||
text-decoration: none;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.page-nav-item > a:hover {
|
|
||||||
background-color: #00416a;
|
|
||||||
color: #dee5e9;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#pagination {
|
|
||||||
display: inline-block;
|
|
||||||
margin: 3.5em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.pagination-item:hover {
|
|
||||||
background-color: #00416a;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.pagination-item,
|
|
||||||
div.pagination-item-spacer {
|
|
||||||
display: inline-block;
|
|
||||||
float: left;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
width: 20%;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.pagination-item > a {
|
|
||||||
color: #00416a;
|
|
||||||
display: block;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.pagination-item > a:hover {
|
|
||||||
color: #dee5e9;
|
|
||||||
}
|
|
||||||
|
|
||||||
aside#social {
|
|
||||||
border-top: 2px solid #3f3f3f;
|
|
||||||
display: flex;
|
|
||||||
height: 48px;
|
|
||||||
margin: 0 auto;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
div#social-icons {
|
|
||||||
align-items: center;
|
|
||||||
display: flex;
|
|
||||||
flex-basis: 414px;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
height: 24px;
|
|
||||||
justify-content: space-between;
|
|
||||||
margin-top: 20px;
|
|
||||||
max-width: 414px;
|
|
||||||
min-width: 288px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-24x24 {
|
|
||||||
height: 24px;
|
|
||||||
width: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
nav#article-skip {
|
|
||||||
align-items: flex-start;
|
|
||||||
border-top: 1px solid #dee5e9;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
font-family: "Fira Sans", Helvetica, Arial, sans-serif;
|
|
||||||
font-size: smaller;
|
|
||||||
justify-content: space-around;
|
|
||||||
line-height: 1em;
|
|
||||||
margin: 5em 0 0 0;
|
|
||||||
padding: 0;
|
|
||||||
text-align: center;
|
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
|
||||||
|
|
||||||
.next,
|
|
||||||
.prev,
|
|
||||||
.top {
|
|
||||||
flex: 0 1 auto;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0.5em;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.next {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
.prev {
|
|
||||||
text-align: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.top {
|
|
||||||
border-left: 1px solid #dee5e9;
|
|
||||||
border-right: 1px solid #dee5e9;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.next > p,
|
|
||||||
div.prev > p {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.next > a,
|
|
||||||
div.prev > a,
|
|
||||||
div.top > a {
|
|
||||||
color: #00416a;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.next > a:hover,
|
|
||||||
div.prev > a:hover,
|
|
||||||
div.top > a:hover {
|
|
||||||
background-color: #00416a;
|
|
||||||
color: #dee5e9;
|
|
||||||
}
|
|
1
public/docs/index.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<!DOCTYPE html><html><head><title>https://example.com/post/</title><link rel="canonical" href="https://example.com/post/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://example.com/post/" /></head></html>
|
Before Width: | Height: | Size: 753 B |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
@ -1,5 +0,0 @@
|
|||||||
Charter License
|
|
||||||
|
|
||||||
This is a copy of the Charter fonts which Bitstream contributed to the X consortium. This is the original notice included with the fonts:
|
|
||||||
|
|
||||||
(c) Copyright 1989-1992, Bitstream Inc., Cambridge, MA. You are hereby granted permission under all Bitstream propriety rights to use, copy, modify, sublicense, sell, and redistribute the 4 Bitstream Charter (r) Type 1 outline fonts and the 4 Courier Type 1 outline fonts for any purpose and without restriction; provided, that this notice is left intact on all copies of such fonts and that Bitstream’s trademark is acknowledged as shown below on all unmodified copies of the 4 Charter Type 1 fonts. BITSTREAM CHARTER is a registered trademark of Bitstream Inc.
|
|
@ -1,102 +0,0 @@
|
|||||||
Copyright (c) 2014, Nikita Prokopov http://tonsky.me
|
|
||||||
with Reserved Font Name Fira Code.
|
|
||||||
|
|
||||||
Copyright (c) 2014, Mozilla Foundation https://mozilla.org/
|
|
||||||
with Reserved Font Name Fira Sans.
|
|
||||||
|
|
||||||
Copyright (c) 2014, Mozilla Foundation https://mozilla.org/
|
|
||||||
with Reserved Font Name Fira Mono.
|
|
||||||
|
|
||||||
Copyright (c) 2014, Telefonica S.A.
|
|
||||||
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@ -1,96 +0,0 @@
|
|||||||
https://bboxtype.com/downloads/Fira/OFL.txt
|
|
||||||
|
|
||||||
Digitized data copyright 2012-2018 for FiraGO: Carrois Corporate GbR and HERE Europe B.V. All rights reserved.
|
|
||||||
Digitized data copyright 2012-2018 for Fira Sans up to version 4.3: The Mozilla Foundation, Telefonica S.A., Carrois Corporate GbR and bBox Type GmbH.
|
|
||||||
|
|
||||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
||||||
This license is copied below, and is also available with a FAQ at:
|
|
||||||
http://scripts.sil.org/OFL
|
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------
|
|
||||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
||||||
-----------------------------------------------------------
|
|
||||||
|
|
||||||
PREAMBLE
|
|
||||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
||||||
development of collaborative font projects, to support the font creation
|
|
||||||
efforts of academic and linguistic communities, and to provide a free and
|
|
||||||
open framework in which fonts may be shared and improved in partnership
|
|
||||||
with others.
|
|
||||||
|
|
||||||
The OFL allows the licensed fonts to be used, studied, modified and
|
|
||||||
redistributed freely as long as they are not sold by themselves. The
|
|
||||||
fonts, including any derivative works, can be bundled, embedded,
|
|
||||||
redistributed and/or sold with any software provided that any reserved
|
|
||||||
names are not used by derivative works. The fonts and derivatives,
|
|
||||||
however, cannot be released under any other type of license. The
|
|
||||||
requirement for fonts to remain under this license does not apply
|
|
||||||
to any document created using the fonts or their derivatives.
|
|
||||||
|
|
||||||
DEFINITIONS
|
|
||||||
"Font Software" refers to the set of files released by the Copyright
|
|
||||||
Holder(s) under this license and clearly marked as such. This may
|
|
||||||
include source files, build scripts and documentation.
|
|
||||||
|
|
||||||
"Reserved Font Name" refers to any names specified as such after the
|
|
||||||
copyright statement(s).
|
|
||||||
|
|
||||||
"Original Version" refers to the collection of Font Software components as
|
|
||||||
distributed by the Copyright Holder(s).
|
|
||||||
|
|
||||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
||||||
or substituting -- in part or in whole -- any of the components of the
|
|
||||||
Original Version, by changing formats or by porting the Font Software to a
|
|
||||||
new environment.
|
|
||||||
|
|
||||||
"Author" refers to any designer, engineer, programmer, technical
|
|
||||||
writer or other person who contributed to the Font Software.
|
|
||||||
|
|
||||||
PERMISSION & CONDITIONS
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
|
||||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
||||||
redistribute, and sell modified and unmodified copies of the Font
|
|
||||||
Software, subject to the following conditions:
|
|
||||||
|
|
||||||
1) Neither the Font Software nor any of its individual components,
|
|
||||||
in Original or Modified Versions, may be sold by itself.
|
|
||||||
|
|
||||||
2) Original or Modified Versions of the Font Software may be bundled,
|
|
||||||
redistributed and/or sold with any software, provided that each copy
|
|
||||||
contains the above copyright notice and this license. These can be
|
|
||||||
included either as stand-alone text files, human-readable headers or
|
|
||||||
in the appropriate machine-readable metadata fields within text or
|
|
||||||
binary files as long as those fields can be easily viewed by the user.
|
|
||||||
|
|
||||||
3) No Modified Version of the Font Software may use the Reserved Font
|
|
||||||
Name(s) unless explicit written permission is granted by the corresponding
|
|
||||||
Copyright Holder. This restriction only applies to the primary font name as
|
|
||||||
presented to the users.
|
|
||||||
|
|
||||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
||||||
Software shall not be used to promote, endorse or advertise any
|
|
||||||
Modified Version, except to acknowledge the contribution(s) of the
|
|
||||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
||||||
permission.
|
|
||||||
|
|
||||||
5) The Font Software, modified or unmodified, in part or in whole,
|
|
||||||
must be distributed entirely under this license, and must not be
|
|
||||||
distributed under any other license. The requirement for fonts to
|
|
||||||
remain under this license does not apply to any document created
|
|
||||||
using the Font Software.
|
|
||||||
|
|
||||||
TERMINATION
|
|
||||||
This license becomes null and void if any of the above conditions are
|
|
||||||
not met.
|
|
||||||
|
|
||||||
DISCLAIMER
|
|
||||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
||||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
||||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
||||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
||||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
||||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
||||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
||||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
||||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path style="fill:#3f3f3f" d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"/></svg>
|
|
Before Width: | Height: | Size: 595 B |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path style="fill:#3f3f3f" d="M448 56.7v398.5c0 13.7-11.1 24.7-24.7 24.7H309.1V306.5h58.2l8.7-67.6h-67v-43.2c0-19.6 5.4-32.9 33.5-32.9h35.8v-60.5c-6.2-.8-27.4-2.7-52.2-2.7-51.6 0-87 31.5-87 89.4v49.9h-58.4v67.6h58.4V480H24.7C11.1 480 0 468.9 0 455.3V56.7C0 43.1 11.1 32 24.7 32h398.5c13.7 0 24.8 11.1 24.8 24.7z"/></svg>
|
|
Before Width: | Height: | Size: 382 B |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path style="fill:#3f3f3f" d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM144.5 319c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5zm159 0c-35.1 0-63.5-28.4-63.5-63.5s28.4-63.5 63.5-63.5 63.5 28.4 63.5 63.5-28.4 63.5-63.5 63.5z"/></svg>
|
|
Before Width: | Height: | Size: 400 B |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><path style="fill:#3f3f3f" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path style="fill:#3f3f3f" d="M29.782 199.732L256 493.714 8.074 309.699c-6.856-5.142-9.712-13.996-7.141-21.993l28.849-87.974zm75.405-174.806c-3.142-8.854-15.709-8.854-18.851 0L29.782 199.732h131.961L105.187 24.926zm56.556 174.806L256 493.714l94.257-293.982H161.743zm349.324 87.974l-28.849-87.974L256 493.714l247.926-184.015c6.855-5.142 9.711-13.996 7.141-21.993zm-85.404-262.78c-3.142-8.854-15.709-8.854-18.851 0l-56.555 174.806h131.961L425.663 24.926z"/></svg>
|
|
Before Width: | Height: | Size: 523 B |
Before Width: | Height: | Size: 13 KiB |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 412.3 512"><path style="fill:#3f3f3f" d="M177.2 430.9c0 9.8-8 17.8-17.8 17.8s-17.8-8-17.8-17.8 8-17.8 17.8-17.8c9.8-.1 17.8 7.9 17.8 17.8zM270 413c-9.8 0-17.8 8-17.8 17.8s8 17.8 17.8 17.8 17.8-8 17.8-17.8-8-17.8-17.8-17.8zm142.3-36c0 38.9-7.6 73.9-22.2 103h-27.3c23.5-38.7 30.5-94.8 22.4-134.3-16.1 29.5-52.1 38.6-85.9 28.8-127.8-37.5-192.5 19.7-234.6 50.3l18.9-59.3-39.9 42.3c4.8 26.7 15.7 51.3 31.2 72.3H46.1c-9.7-15.8-17.2-33-22.2-51.3L.1 454c0-74.9-5.5-147.6 61.5-215.2 20.2-20.4 43.7-36.2 69.1-46.7-6.8-13.5-9.5-29.2-7.8-46l-19.9-1.2c-17.9-1.1-31.6-16.5-30.6-34.4v-.1L74 84.2c1.1-17.1 15.4-30.6 32.5-30.6 1.3 0-.3-.1 28.2 1.7 13.9.8 21.5 9.8 22.8 11.4 7.1-10.4 14.5-20.5 24.6-34.5l20.6 12.1c-13.6 29-9.1 36.2-9 36.3 3.9 0 13.9-.5 32.4 5.7C246 92.9 262 107 271 126c.4.9 15.5 29 1.2 62.6 19 6.1 51.3 19.9 82.4 51.8 36.6 37.6 57.7 87.4 57.7 136.6zM128 122.3c3.2-10 7.7-19.7 13.1-29.4.1-2 2.2-13.1-7.8-13.8-28.5-1.8-26.3-1.6-26.7-1.6-4.6 0-8.3 3.5-8.6 8.1l-1.6 26.2c-.3 4.7 3.4 8.8 8.1 9.1l23.5 1.4zm25.8 61.8c5.6 9.4 14.1 16.1 22.3 20 0-21.2 28.5-41.9 52.8-17.5l8.4 10.3c20.8-18.8 19.4-45.3 12.1-60.9-13.8-29.1-46.9-32-54.3-31.7-10.3.4-19.7-5.4-23.7-15.3-13.7 21.2-37.2 62.5-17.6 95.1zm82.9 68.4L217 268.6c-1.9 1.6-2.2 4.4-.6 6.3l8.9 10.9c1 1.2 3.8 2.7 6.3.6l19.6-16 5.5 6.8c4.9 6 13.8-1.4 9-7.3-63.6-78.3-41.5-51.1-55.3-68.1-4.7-6-13.9 1.4-9 7.3 1.9 2.3 18.4 22.6 19.8 24.3l-9.6 7.9c-4.6 3.8 2.6 13.3 7.4 9.4l9.7-8 8 9.8zm118.4 25.7c-16.9-23.7-42.6-46.7-73.4-60.4-7.9-3.5-15-6.1-22.9-8.6-2 2.2-4.1 4.3-6.4 6.2l31.9 39.2c10.4 12.7 8.5 31.5-4.2 41.9-1.3 1.1-13.1 10.7-29 4.9-2.9 2.3-10.1 9.9-22.2 9.9-8.6 0-16.6-3.8-22.1-10.5l-8.9-10.9c-6.3-7.8-7.9-17.9-5-26.8-8.2-9.9-8.3-21.3-4.6-30-7.2-1.3-26.7-6.2-42.7-21.4-55.8 20.7-88 64.4-101.3 91.2-14.9 30.2-18.8 60.9-19.9 90.2 8.2-8.7-3.9 4.1 114-120.9l-29.9 93.6c57.8-31.1 124-36 197.4-14.4 23.6 6.9 45.1 1.6 56-13.9 11.1-15.6 8.5-37.7-6.8-59.3zM110.6 107.3l15.6 1 1-15.6-15.6-1-1 15.6z"/></svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path style="fill:#3f3f3f" d="M19 0h-14c-2.761 0-5 2.239-5 5v14c0 2.761 2.239 5 5 5h14c2.762 0 5-2.239 5-5v-14c0-2.761-2.238-5-5-5zm-11 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.396-2.586 7-2.777 7 2.476v6.759z"/></svg>
|
|
Before Width: | Height: | Size: 446 B |
@ -1 +0,0 @@
|
|||||||
<svg width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path style="fill:#3f3f3f" d="M2.846 6.887c.03-.295-.083-.586-.303-.784l-2.24-2.7v-.403h6.958l5.378 11.795 4.728-11.795h6.633v.403l-1.916 1.837c-.165.126-.247.333-.213.538v13.498c-.034.204.048.411.213.537l1.871 1.837v.403h-9.412v-.403l1.939-1.882c.19-.19.19-.246.19-.537v-10.91l-5.389 13.688h-.728l-6.275-13.688v9.174c-.052.385.076.774.347 1.052l2.521 3.058v.404h-7.148v-.404l2.521-3.058c.27-.279.39-.67.325-1.052v-10.608z"/></svg>
|
|
Before Width: | Height: | Size: 495 B |
@ -1 +0,0 @@
|
|||||||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 482.79 486.16"><defs><style>.cls-1{fill:#3f3f3f;}</style></defs><title>Micro.blogBW</title><path class="cls-1" d="M495.79,372.06c32-37.64,51.11-85,51.11-136.5C546.9,113,438.82,13.72,305.5,13.72S64.1,113,64.1,235.56,172.18,457.4,305.5,457.4a259.65,259.65,0,0,0,86.2-14.58,7.78,7.78,0,0,1,8.81,2.77c20.17,27.23,51.67,46.38,86.7,54.17a4.79,4.79,0,0,0,4.74-7.65,94.37,94.37,0,0,1,4-120.11ZM420,209.48l-62.17,47.19,22.56,74.72a7.06,7.06,0,0,1-10.79,7.84L305.5,294.68l-64.09,44.55a7.06,7.06,0,0,1-10.79-7.84l22.56-74.72L191,209.48a7.06,7.06,0,0,1,4.12-12.68l78-1.63,25.67-73.71a7.06,7.06,0,0,1,13.33,0l25.67,73.71,78,1.63A7.06,7.06,0,0,1,420,209.48Z" transform="translate(-64.1 -13.72)"/></svg>
|
|
Before Width: | Height: | Size: 774 B |
@ -1,5 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path style="fill:#3f3f3f" d="M440.3 203.5c-15 0-28.2 6.2-37.9 15.9-35.7-24.7-83.8-40.6-137.1-42.3L293 52.3l88.2 19.8c0 21.6 17.6 39.2 39.2 39.2 22 0 39.7-18.1 39.7-39.7s-17.6-39.7-39.7-39.7c-15.4 0-28.7 9.3-35.3 22l-97.4-21.6c-4.9-1.3-9.7 2.2-11 7.1L246.3 177c-52.9 2.2-100.5 18.1-136.3 42.8-9.7-10.1-23.4-16.3-38.4-16.3-55.6 0-73.8 74.6-22.9 100.1-1.8 7.9-2.6 16.3-2.6 24.7 0 83.8 94.4 151.7 210.3 151.7 116.4 0 210.8-67.9 210.8-151.7 0-8.4-.9-17.2-3.1-25.1 49.9-25.6 31.5-99.7-23.8-99.7zM129.4 308.9c0-22 17.6-39.7 39.7-39.7 21.6 0 39.2 17.6 39.2 39.7 0 21.6-17.6 39.2-39.2 39.2-22 .1-39.7-17.6-39.7-39.2zm214.3 93.5c-36.4 36.4-139.1 36.4-175.5 0-4-3.5-4-9.7 0-13.7 3.5-3.5 9.7-3.5 13.2 0 27.8 28.5 120 29 149 0 3.5-3.5 9.7-3.5 13.2 0 4.1 4 4.1 10.2.1 13.7zm-.8-54.2c-21.6 0-39.2-17.6-39.2-39.2 0-22 17.6-39.7 39.2-39.7 22 0 39.7 17.6 39.7 39.7-.1 21.5-17.7 39.2-39.7 39.2z"/></svg>
|
|
||||||
<!--
|
|
||||||
Font Awesome Free 5.4.1 by @fontawesome - https://fontawesome.com
|
|
||||||
License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
|
|
||||||
-->
|
|
Before Width: | Height: | Size: 1.1 KiB |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path style="fill:#3f3f3f" d="M293.7 300l-181.2-84.5 16.7-36.5 181.3 84.7-16.8 36.3zm48-76L188.2 95.7l-25.5 30.8 153.5 128.3 25.5-30.8zm39.6-31.7L262 32l-32 24 119.3 160.3 32-24zM290.7 311L95 269.7 86.8 309l195.7 41 8.2-39zm31.6 129H42.7V320h-40v160h359.5V320h-40v120zm-39.8-80h-200v39.7h200V360z"/></svg>
|
|
Before Width: | Height: | Size: 367 B |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path style="fill:#3f3f3f" d="M309.8 480.3c-13.6 14.5-50 31.7-97.4 31.7-120.8 0-147-88.8-147-140.6v-144H17.9c-5.5 0-10-4.5-10-10v-68c0-7.2 4.5-13.6 11.3-16 62-21.8 81.5-76 84.3-117.1.8-11 6.5-16.3 16.1-16.3h70.9c5.5 0 10 4.5 10 10v115.2h83c5.5 0 10 4.4 10 9.9v81.7c0 5.5-4.5 10-10 10h-83.4V360c0 34.2 23.7 53.6 68 35.8 4.8-1.9 9-3.2 12.7-2.2 3.5.9 5.8 3.4 7.4 7.9l22 64.3c1.8 5 3.3 10.6-.4 14.5z"/></svg>
|
|
Before Width: | Height: | Size: 466 B |
@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path style="fill:#3f3f3f" d="M459.37 151.716c.325 4.548.325 9.097.325 13.645 0 138.72-105.583 298.558-298.558 298.558-59.452 0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055 0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421 0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391 0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04 0-57.828 46.782-104.934 104.934-104.934 30.213 0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z"/></svg>
|
|
Before Width: | Height: | Size: 892 B |
BIN
public/images/2021/danielle-macinnes-coffee-begin-unsplash.jpg
Normal file
After Width: | Height: | Size: 97 KiB |
BIN
public/images/2021/danielle-macinnes-coffee-unsplash.jpg
Normal file
After Width: | Height: | Size: 516 KiB |
Before Width: | Height: | Size: 334 KiB |
BIN
public/images/landscape.jpg
Normal file
After Width: | Height: | Size: 422 KiB |
BIN
public/images/profile.jpg
Normal file
After Width: | Height: | Size: 44 KiB |
BIN
public/images/site-feature-image.png
Normal file
After Width: | Height: | Size: 72 KiB |
@ -1,12 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<svg width="1024px" height="1021px" viewBox="0 0 1024 1021" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
||||||
<!-- Generator: Sketch 51.2 (57519) - http://www.bohemiancoding.com/sketch -->
|
|
||||||
<title>Combined Shape</title>
|
|
||||||
<desc>Created with Sketch.</desc>
|
|
||||||
<defs></defs>
|
|
||||||
<g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
||||||
<g id="Logo" fill="#00416A" fill-rule="nonzero">
|
|
||||||
<path d="M451.359231,1020.44643 C197.171098,990.45211 0,774.251944 0,512 C0,229.230208 229.230208,0 512,0 C794.769792,0 1024,229.230208 1024,512 C1024,717.922562 902.433563,895.45176 727.152485,976.735801 C709.670285,982.304225 694.223774,986.392252 680.8125,989 C667.312432,991.625013 656.437541,992.9375 648.1875,992.9375 C629.812408,992.9375 615.750049,987.593803 606,976.90625 C596.249951,966.218697 591.375,950.562603 591.375,929.9375 C591.375,925.062476 591.843745,918.875037 592.78125,911.375 C593.718755,903.874963 595.312489,894.12506 597.5625,882.125 L671.25,492.875 L620.625,492.875 L423.1875,536.75 L423.1875,577.25 L517.6875,591.875 L455.8125,901.8125 C451.687479,923.937611 448.875007,940.531195 447.375,951.59375 C445.874993,962.656305 445.125,971.937463 445.125,979.4375 C445.125,995.131327 447.203066,1008.80094 451.359231,1020.44643 Z M643.6875,225.6875 C618.187373,225.6875 597.000084,234.031167 580.125,250.71875 C563.249916,267.406333 554.8125,288.312374 554.8125,313.4375 C554.8125,334.812607 562.031178,352.249932 576.46875,365.75 C590.906322,379.250067 609.749884,386 633,386 C657.750124,386 678.562416,377.656333 695.4375,360.96875 C712.312584,344.281167 720.75,323.750122 720.75,299.375 C720.75,276.874888 713.812569,258.968817 699.9375,245.65625 C686.062431,232.343683 667.312618,225.6875 643.6875,225.6875 Z" id="Combined-Shape"></path>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,182 +1,241 @@
|
|||||||
|
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en" data-theme=""><head>
|
||||||
<head>
|
<title> Glenn </title>
|
||||||
<meta name="generator" content="Hugo 0.74.3" />
|
|
||||||
<meta charset="utf-8">
|
|
||||||
|
|
||||||
<title>Caffeinated Blog | Caffeinated Blog</title>
|
<meta charset="utf-8"><meta name="generator" content="Hugo 0.74.3" /><meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
|
||||||
<meta name="description" content="Description of website for head meta tag">
|
<meta name="description" content="A bit of personal space for writing">
|
||||||
<meta name="author" content="">
|
|
||||||
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href=https://caffeinated.blog/apple-touch-icon.png>
|
<link rel="stylesheet"
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href=https://caffeinated.blog/favicon-32x32.png>
|
href="https://example.com/css/style.min.9a6700e4461b50dccdddfc4f81dc65d77e7fca22c35665e398a0c36568db59c7.css"
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href=https://caffeinated.blog/favicon-16x16.png>
|
integrity="sha256-mmcA5EYbUNzN3fxPgdxl135/yiLDVmXjmKDDZWjbWcc="
|
||||||
<link rel="manifest" href=https://caffeinated.blog/site.webmanifest>
|
crossorigin="anonymous"
|
||||||
<link rel="mask-icon" href=https://caffeinated.blog/safari-pinned-tab.svg color="#00416a">
|
type="text/css">
|
||||||
<meta name="msapplication-TileColor" content="#00aba9">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
<link rel="stylesheet"
|
||||||
|
href="https://example.com/css/markupHighlight.min.cc84ed683057cc175ddfa738ea6ba2d5c882b95cb64f50bf9be918cb3791887b.css"
|
||||||
|
integrity="sha256-zITtaDBXzBdd36c46mui1ciCuVy2T1C/m+kYyzeRiHs="
|
||||||
|
crossorigin="anonymous"
|
||||||
|
type="text/css">
|
||||||
|
|
||||||
|
<link rel="stylesheet"
|
||||||
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
|
||||||
|
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
|
||||||
|
crossorigin="anonymous" />
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="shortcut icon" href="https://example.com/favicons/favicon.ico" type="image/x-icon">
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="https://example.com/favicons/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="https://example.com/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="https://example.com/favicons/favicon-16x16.png">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://example.com/">
|
||||||
|
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="https://example.com/index.xml" title="Website of Jane Doe" />
|
||||||
|
|
||||||
|
|
||||||
<link rel="me" href="https://github.com/glennrice">
|
|
||||||
|
|
||||||
<link rel="me" href="https://micro.blog/glennr">
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-header.min.d8599ee07b7d3f11bafbac30657ccc591e8d7fd36a9f580cd4c09e24e0e4a971.js"
|
||||||
|
integrity="sha256-2Fme4Ht9PxG6+6wwZXzMWR6Nf9Nqn1gM1MCeJODkqXE="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/anatole-theme-switcher.min.e289e9ebb2a4e7a7f895859c8a2b0da2de1ec73f22cea58d8475aa0597023837.js"
|
||||||
|
integrity="sha256-4onp67Kk56f4lYWciisNot4exz8izqWNhHWqBZcCODc="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/fonts.css />
|
<meta name="twitter:card" content="summary_large_image"/>
|
||||||
<link rel="stylesheet" href=https://caffeinated.blog/css/style.css />
|
<meta name="twitter:image" content="https://example.com/images/site-feature-image.png"/>
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="twitter:title" content=""/>
|
||||||
|
<meta name="twitter:description" content="A bit of personal space for writing"/>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
<body><div class="sidebar animated fadeInDown ">
|
||||||
<body>
|
<div class="logo-title">
|
||||||
<div id="sitelogo">
|
<div class="title">
|
||||||
<a class="glyph" alt="Home" href="https://caffeinated.blog/"><img src=https://caffeinated.blog/images/site-logo.png alt="Site Logo" height="64px" width="64px"></a>
|
<img src="https://example.com/images/site-logo.png" alt="profile picture">
|
||||||
</div>
|
<h3 title=""><a href="/">Caffeinated</a></h3>
|
||||||
<header>
|
<div class="description">
|
||||||
<nav>
|
<p>A bit of personal space for writing</p>
|
||||||
|
|
||||||
<div id="page-nav">
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="https://caffeinated.blog/">Home</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="page-nav-item">
|
|
||||||
<a href="/about/">
|
|
||||||
|
|
||||||
<span>About The Theme</span>
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<ul class="social-links">
|
||||||
|
|
||||||
<div class="page-nav-item">
|
<li>
|
||||||
<a href="/adding-menu-items/">
|
<a href="https://de.linkedin.com/" rel="me" aria-label="Linkedin">
|
||||||
|
<i class="fab fa-linkedin fa-2x" aria-hidden="true"></i>
|
||||||
<span>Adding Page Items</span>
|
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://github.com/lxndrblz/anatole/" rel="me" aria-label="GitHub">
|
||||||
|
<i class="fab fa-github fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://www.instagram.com/" rel="me" aria-label="instagram">
|
||||||
|
<i class="fab fa-instagram fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="mailto:mail@alexbilz.com" rel="me" aria-label="e-mail">
|
||||||
|
<i class="fas fa-envelope fa-2x" aria-hidden="true"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
<div class="footer">
|
||||||
|
<div class="by_farbox">© Glenn 2021 </div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</div>
|
||||||
|
<div class="main">
|
||||||
|
<div class="page-top animated fadeInDown ">
|
||||||
|
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
<span aria-hidden="true"></span>
|
||||||
|
</a>
|
||||||
|
<ul class="nav" id="navMenu">
|
||||||
|
|
||||||
|
|
||||||
<div id="site-header">
|
|
||||||
<h1>Caffeinated Blog</h1>
|
|
||||||
|
|
||||||
<p>
|
<li><a class="current"
|
||||||
A bit of personal space for writing
|
href="/"
|
||||||
</p>
|
|
||||||
|
title="">Home</a></li>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
<li><a
|
||||||
|
href="/post/"
|
||||||
|
|
||||||
|
title="">Posts</a></li>
|
||||||
|
|
||||||
</header>
|
|
||||||
|
<li><a
|
||||||
|
href="/about/"
|
||||||
|
|
||||||
<div id="content">
|
title="">About</a></li>
|
||||||
|
|
||||||
|
|
||||||
<article>
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<h2 class="list-title"><a href="https://caffeinated.blog/post/2021/02/back-on-the-fediverse/">Back on the Fediverse</a></h2>
|
|
||||||
|
<li><a
|
||||||
|
href="/contact/"
|
||||||
|
|
||||||
|
title="">Contact</a></li>
|
||||||
|
|
||||||
<p class="list-post-date">
|
|
||||||
<time datetime="2021-02-14T20:47:38+10:00">
|
|
||||||
14 February, 2021 at 20:47 AEST
|
|
||||||
</time>
|
|
||||||
</p>
|
|
||||||
</header>
|
|
||||||
<div>
|
|
||||||
A recent post from Alan Pope, Mastodon Instances, Everywhere, reminded me that I also used to run a Mastodon instance back when it was all still new and shiny.
|
|
||||||
My instance ran for awhile and had a few users and I actually enjoyed being on the network. It was much more civil and discussions seemed friendlier than Twitter. Eventually, I shut my instance down as it took more and more sysadmin time, was quite resource hungry and their updates did not always go smoothly.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<p><a class="read-more" href="https://caffeinated.blog/post/2021/02/back-on-the-fediverse/">Read more →</a></p>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<article>
|
|
||||||
<header>
|
|
||||||
|
|
||||||
<h2 class="list-title"><a href="https://caffeinated.blog/post/2021/02/online-with-hugo/">Online With Hugo</a></h2>
|
|
||||||
|
|
||||||
<p class="list-post-date">
|
<li class="theme-switch-item">
|
||||||
<time datetime="2021-02-02T22:53:29+10:00">
|
<a class="theme-switch" title="Switch Theme">
|
||||||
2 February, 2021 at 22:53 AEST
|
<i class="fas fa-adjust fa-fw" aria-hidden="true"></i>
|
||||||
</time>
|
</a>
|
||||||
</p>
|
</li>
|
||||||
</header>
|
|
||||||
<div>
|
|
||||||
As part of wanting to go through and reorganise my various sites and blogs, so I (once again) have a place to write again, I have switched over to Hugo as my content system. I have just spun up a new web host with Apache and Git to automatically pull site changes from the repo and publish them. It’s all working beautifully so far.
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</article>
|
|
||||||
|
|
||||||
<nav>
|
|
||||||
<div id="pagination">
|
|
||||||
<div class="pagination-item-spacer"> </div>
|
|
||||||
|
|
||||||
<div class="pagination-item-spacer"> </div>
|
</ul>
|
||||||
|
|
||||||
<div class="pagination-item-spacer">
|
|
||||||
Page 1 of 1
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="pagination-item-spacer"> </div>
|
|
||||||
|
|
||||||
<div class="pagination-item-spacer"> </div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="autopagerize_page_element">
|
||||||
|
<div class="content">
|
||||||
|
|
||||||
|
<div class="post animated fadeInDown ">
|
||||||
|
|
||||||
|
<!-- raw HTML omitted -->
|
||||||
|
<!-- raw HTML omitted -->
|
||||||
|
|
||||||
|
|
||||||
<div id="footer">
|
|
||||||
|
|
||||||
<aside id="social">
|
|
||||||
<div id="social-icons">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="GitHub profile" href="https://github.com/glennrice"><img src=https://caffeinated.blog/icons/github.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Keybase profile" href="https://keybase.io/glennr"><img src=https://caffeinated.blog/icons/keybase.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="icon-24x24">
|
|
||||||
<a class="glyph" alt="Micro.Blog profile" href="https://micro.blog/glennr"><img src=https://caffeinated.blog/icons/microblog.svg height="24px" width="24px"></a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
|
|
||||||
<p class="copyright">
|
|
||||||
Copyright © 2021, Glenn Rice
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script defer src='https://static.cloudflareinsights.com/beacon.min.js' data-cf-beacon='{"token": "7b36ad5d27814467a62fe8eb6bbad21b"}'></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post animated fadeInDown ">
|
||||||
|
|
||||||
|
<div class="post-title">
|
||||||
|
<h3><a href="/post/2021/02/back-on-the-fediverse/">Back on the Fediverse</a>
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
<div class="post-content">
|
||||||
|
<div class="p_part"><p>A recent post from Alan Pope, Mastodon Instances, Everywhere, reminded me that I also used to run a Mastodon instance back when it was all still new and shiny.</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="post-footer">
|
||||||
|
<div class="meta">
|
||||||
|
<div class="info">
|
||||||
|
<em class="fas fa-calendar-day"></em>
|
||||||
|
<span class="date"> Sun, Feb 14, 2021
|
||||||
|
</span>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="post animated fadeInDown ">
|
||||||
|
|
||||||
|
<div class="post-thumbnail">
|
||||||
|
<a href="/post/2021/02/online-with-hugo/">
|
||||||
|
<img src="/images/2021/danielle-macinnes-coffee-begin-unsplash.jpg" alt="Thumbnail image" loading="lazy">
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post-title">
|
||||||
|
<h3><a href="/post/2021/02/online-with-hugo/">Online With Hugo</a>
|
||||||
|
</h3>
|
||||||
|
</div>
|
||||||
|
<div class="post-content">
|
||||||
|
<div class="p_part"><p>As part of wanting to go through and reorganise my various sites and blogs, so I (once again) have a place to write again, I have switched over to Hugo as my content system.</p></div>
|
||||||
|
</div>
|
||||||
|
<div class="post-footer">
|
||||||
|
<div class="meta">
|
||||||
|
<div class="info">
|
||||||
|
<em class="fas fa-calendar-day"></em>
|
||||||
|
<span class="date"> Tue, Feb 2, 2021
|
||||||
|
</span>
|
||||||
|
<span class="separator"><a class="category" href="/categories/blogging/">blogging</a></span>
|
||||||
|
|
||||||
|
<a class="tag"
|
||||||
|
href="/tags/newbeginnings/">newbeginnings</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="pagination">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/jquery.min.86b1e8f819ee2d9099a783e50b49dff24282545fc40773861f9126b921532e4c.js"
|
||||||
|
integrity="sha256-hrHo+BnuLZCZp4PlC0nf8kKCVF/EB3OGH5EmuSFTLkw="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/bundle.min.0f9c74cb78f13d1f15f33daff4037c70354f98acfbb97a6f61708966675c3cae.js"
|
||||||
|
integrity="sha256-D5x0y3jxPR8V8z2v9AN8cDVPmKz7uXpvYXCJZmdcPK4="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://example.com/js/medium-zoom.min.92f21c856129f84aeb719459b3e6ac621a3032fd7b180a18c04e1d12083f8aba.js"
|
||||||
|
integrity="sha256-kvIchWEp+ErrcZRZs+asYhowMv17GAoYwE4dEgg/iro="
|
||||||
|
crossorigin="anonymous"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,61 +1,59 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Caffeinated Blog</title>
|
<title>Website of Jane Doe</title>
|
||||||
<link>https://caffeinated.blog/</link>
|
<link>https://example.com/</link>
|
||||||
<description>Recent content on Caffeinated Blog</description>
|
<description>Recent content on Website of Jane Doe</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>
|
<generator>Hugo -- gohugo.io</generator>
|
||||||
<language>en-US</language>
|
<language>en</language>
|
||||||
<copyright>Copyright © 2021, Glenn Rice</copyright>
|
|
||||||
<lastBuildDate>Sun, 14 Feb 2021 20:47:38 +1000</lastBuildDate>
|
<lastBuildDate>Sun, 14 Feb 2021 20:47:38 +1000</lastBuildDate>
|
||||||
|
|
||||||
<atom:link href="https://caffeinated.blog/index.xml" rel="self" type="application/rss+xml" />
|
<atom:link href="https://example.com/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Back on the Fediverse</title>
|
<title>Back on the Fediverse</title>
|
||||||
<link>https://caffeinated.blog/post/2021/02/back-on-the-fediverse/</link>
|
<link>https://example.com/post/2021/02/back-on-the-fediverse/</link>
|
||||||
<pubDate>Sun, 14 Feb 2021 20:47:38 +1000</pubDate>
|
<pubDate>Sun, 14 Feb 2021 20:47:38 +1000</pubDate>
|
||||||
|
|
||||||
<guid>https://caffeinated.blog/post/2021/02/back-on-the-fediverse/</guid>
|
<guid>https://example.com/post/2021/02/back-on-the-fediverse/</guid>
|
||||||
<description><p>A recent post from Alan Pope, <a href="https://popey.com/blog/2021/02/mastodon-instances-everywhere/">Mastodon Instances, Everywhere</a>, reminded me that I also used to run a Mastodon instance back when it was all still new and shiny.</p>
|
<description>A recent post from Alan Pope, Mastodon Instances, Everywhere, reminded me that I also used to run a Mastodon instance back when it was all still new and shiny.</description>
|
||||||
<p>My instance ran for awhile and had a few users and I actually enjoyed being on the network. It was much more civil and discussions seemed friendlier than Twitter. Eventually, I shut my instance down as it took more and more <em>sysadmin time</em>, was quite resource hungry and their updates did not always go smoothly.</p>
|
|
||||||
<p>Recently, I decided to jump back into the Fediverse and see how many people I could follow there instead of on Twitter. Not surprisingly, most of those in the Linux community are the easiest to find Mastodon accounts for.</p>
|
|
||||||
<p>To get on the Fediverse, I chose to spin up an instance of <a href="https://pleroma.social/">Pleroma</a> and so far I&rsquo;m liking this. It uses <em>a lot</em> less resources than Mastodon itself, seems easier to keep up-to-date and even has a clone of the Mastodon interface (see <a href="https://git.pleroma.social/pleroma/mastofe">MastoFE</a>).</p>
|
|
||||||
<p><img src="https://caffeinated.blog/images/2021/pleroma-mastofe.jpg" alt=""></p>
|
|
||||||
<p>How long will I run it this time? Who knows, but I am enjoying it again and without the stress of running a &ldquo;real&rdquo; Mastodon instance.</p>
|
|
||||||
</description>
|
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Online With Hugo</title>
|
<title>Online With Hugo</title>
|
||||||
<link>https://caffeinated.blog/post/2021/02/online-with-hugo/</link>
|
<link>https://example.com/post/2021/02/online-with-hugo/</link>
|
||||||
<pubDate>Tue, 02 Feb 2021 22:53:29 +1000</pubDate>
|
<pubDate>Tue, 02 Feb 2021 22:53:29 +1000</pubDate>
|
||||||
|
|
||||||
<guid>https://caffeinated.blog/post/2021/02/online-with-hugo/</guid>
|
<guid>https://example.com/post/2021/02/online-with-hugo/</guid>
|
||||||
<description><p>As part of wanting to go through and reorganise my various sites and blogs, so I (once again) have a place to write again, I have switched over to Hugo as my content system. I have just spun up a new web host with Apache and Git to automatically pull site changes from the repo and publish them. It&rsquo;s all working beautifully so far.</p>
|
<description>As part of wanting to go through and reorganise my various sites and blogs, so I (once again) have a place to write again, I have switched over to Hugo as my content system.</description>
|
||||||
</description>
|
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>About The Theme</title>
|
<title></title>
|
||||||
<link>https://caffeinated.blog/about/</link>
|
<link>https://example.com/archives/</link>
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
<pubDate>Tue, 28 May 2019 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
<guid>https://caffeinated.blog/about/</guid>
|
<guid>https://example.com/archives/</guid>
|
||||||
<description><p>Indigo is a lightweight theme for <a href="https://gohugo.io">Hugo</a> with <a href="https://indieweb.org/">IndieWeb</a> features baked in. It&rsquo;s great for longer-form blogging, placing its focus on distraction-free reading and beautiful typefaces.</p>
|
<description></description>
|
||||||
<p>Read more about the theme <a href="https://caffeinated.blog/post/introducing-indigo">here</a>.</p>
|
|
||||||
</description>
|
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
<title>Adding Page Items</title>
|
<title>Contact</title>
|
||||||
<link>https://caffeinated.blog/adding-menu-items/</link>
|
<link>https://example.com/contact/</link>
|
||||||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
<pubDate>Fri, 08 Mar 2019 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
<guid>https://caffeinated.blog/adding-menu-items/</guid>
|
<guid>https://example.com/contact/</guid>
|
||||||
<description><p>Indigo supports adding a simple navigation-style menu items across the top of the site. To do so, simply add a <code>menu: &quot;main&quot;</code> entry in your page&rsquo;s front matter (TOML format shown).</p>
|
<description></description>
|
||||||
<p>If no date is included in the front matter, then the published date won&rsquo;t be shown (as in this page).</p>
|
</item>
|
||||||
</description>
|
|
||||||
|
<item>
|
||||||
|
<title>About</title>
|
||||||
|
<link>https://example.com/about/</link>
|
||||||
|
<pubDate>Thu, 28 Feb 2019 00:00:00 +0000</pubDate>
|
||||||
|
|
||||||
|
<guid>https://example.com/about/</guid>
|
||||||
|
<description>Written in Go, Hugo is an open source static site generator available under the Apache Licence 2.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
</channel>
|
</channel>
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
document.addEventListener("DOMContentLoaded",function(){var $navbarBurgers=Array.prototype.slice.call(document.querySelectorAll(".navbar-burger"),0);if($navbarBurgers.length>0){$navbarBurgers.forEach(function($el){$el.addEventListener("click",function(){var target=$el.dataset.target;var $target=document.getElementById(target);$el.classList.toggle("is-active");$target.classList.toggle("is-active");});});}});
|