initial commit
This commit is contained in:
commit
9b8b39b716
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "themes/hugo-bearblog"]
|
||||
path = themes/hugo-bearblog
|
||||
url = https://github.com/janraasch/hugo-bearblog.git
|
||||
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
@ -0,0 +1,5 @@
|
||||
+++
|
||||
date = '{{ .Date }}'
|
||||
draft = true
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
+++
|
||||
4
hugo.toml
Normal file
4
hugo.toml
Normal file
@ -0,0 +1,4 @@
|
||||
baseURL = 'https://amalie.mansaker.no'
|
||||
languageCode = 'no-nb'
|
||||
title = 'Amalie Mansåker'
|
||||
theme = 'hugo-bearblog'
|
||||
206
public/404.html
Normal file
206
public/404.html
Normal file
@ -0,0 +1,206 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="no-nb">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>404</title>
|
||||
<meta name="title" content="404 Page not found" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
|
||||
<meta property="og:url" content="http://localhost:1313/404.html">
|
||||
<meta property="og:site_name" content="Amalie Mansåker">
|
||||
<meta property="og:title" content="404 Page not found">
|
||||
<meta property="og:locale" content="no_nb">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="404 Page not found">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta itemprop="name" content="404 Page not found">
|
||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--width: 720px;
|
||||
--font-main: Verdana, sans-serif;
|
||||
--font-secondary: Verdana, sans-serif;
|
||||
--font-scale: 1em;
|
||||
--background-color: #fff;
|
||||
--heading-color: #222;
|
||||
--text-color: #444;
|
||||
--link-color: #3273dc;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #222;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background-color: #01242e;
|
||||
--heading-color: #eee;
|
||||
--text-color: #ddd;
|
||||
--link-color: #8cc2dd;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: var(--font-scale);
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
max-width: var(--width);
|
||||
text-align: left;
|
||||
background-color: var(--background-color);
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
line-height: 1.5;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-main);
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
nav a {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
strong,
|
||||
b {
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
time {
|
||||
font-family: monospace;
|
||||
font-style: normal;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
main {
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 1px dashed;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: monospace;
|
||||
padding: 2px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #999;
|
||||
color: var(--blockquote-color);
|
||||
padding-left: 20px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 25px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.inline {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.highlight,
|
||||
.code {
|
||||
border-radius: 3px;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
|
||||
ul.blog-posts {
|
||||
list-style-type: none;
|
||||
padding: unset;
|
||||
}
|
||||
|
||||
ul.blog-posts li {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
ul.blog-posts li span {
|
||||
flex: 0 0 130px;
|
||||
}
|
||||
|
||||
ul.blog-posts li a:visited {
|
||||
color: var(--visited-color);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header><a href="/" class="title">
|
||||
<h2>Amalie Mansåker</h2>
|
||||
</a>
|
||||
<nav>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<h1>404</h1>
|
||||
<h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2>
|
||||
|
||||
</main>
|
||||
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
221
public/categories/index.html
Normal file
221
public/categories/index.html
Normal file
@ -0,0 +1,221 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="no-nb">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Categories | Amalie Mansåker</title>
|
||||
<meta name="title" content="Categories" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
|
||||
<meta property="og:url" content="http://localhost:1313/categories/">
|
||||
<meta property="og:site_name" content="Amalie Mansåker">
|
||||
<meta property="og:title" content="Categories">
|
||||
<meta property="og:locale" content="no_nb">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Categories">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta itemprop="name" content="Categories">
|
||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/categories/index.xml" title="Amalie Mansåker" />
|
||||
<style>
|
||||
:root {
|
||||
--width: 720px;
|
||||
--font-main: Verdana, sans-serif;
|
||||
--font-secondary: Verdana, sans-serif;
|
||||
--font-scale: 1em;
|
||||
--background-color: #fff;
|
||||
--heading-color: #222;
|
||||
--text-color: #444;
|
||||
--link-color: #3273dc;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #222;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background-color: #01242e;
|
||||
--heading-color: #eee;
|
||||
--text-color: #ddd;
|
||||
--link-color: #8cc2dd;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: var(--font-scale);
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
max-width: var(--width);
|
||||
text-align: left;
|
||||
background-color: var(--background-color);
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
line-height: 1.5;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-main);
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
nav a {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
strong,
|
||||
b {
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
time {
|
||||
font-family: monospace;
|
||||
font-style: normal;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
main {
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 1px dashed;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: monospace;
|
||||
padding: 2px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #999;
|
||||
color: var(--blockquote-color);
|
||||
padding-left: 20px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 25px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.inline {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.highlight,
|
||||
.code {
|
||||
border-radius: 3px;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
|
||||
ul.blog-posts {
|
||||
list-style-type: none;
|
||||
padding: unset;
|
||||
}
|
||||
|
||||
ul.blog-posts li {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
ul.blog-posts li span {
|
||||
flex: 0 0 130px;
|
||||
}
|
||||
|
||||
ul.blog-posts li a:visited {
|
||||
color: var(--visited-color);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header><a href="/" class="title">
|
||||
<h2>Amalie Mansåker</h2>
|
||||
</a>
|
||||
<nav>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<content>
|
||||
|
||||
<h3 style="margin-bottom:0">Filtering for "Categories"</h3>
|
||||
<small>
|
||||
<a href="/blog">Remove filter</a>
|
||||
</small>
|
||||
|
||||
<ul class="blog-posts">
|
||||
|
||||
<li>
|
||||
No posts yet
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</content>
|
||||
|
||||
</main>
|
||||
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
11
public/categories/index.xml
Normal file
11
public/categories/index.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Categories on Amalie Mansåker</title>
|
||||
<link>http://localhost:1313/categories/</link>
|
||||
<description>Recent content in Categories on Amalie Mansåker</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>no-nb</language>
|
||||
<atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
207
public/index.html
Normal file
207
public/index.html
Normal file
@ -0,0 +1,207 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="no-nb">
|
||||
|
||||
<head>
|
||||
<meta name="generator" content="Hugo 0.152.2"><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Amalie Mansåker | Amalie Mansåker</title>
|
||||
<meta name="title" content="Amalie Mansåker" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
|
||||
<meta property="og:url" content="http://localhost:1313/">
|
||||
<meta property="og:site_name" content="Amalie Mansåker">
|
||||
<meta property="og:title" content="Amalie Mansåker">
|
||||
<meta property="og:locale" content="no_nb">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Amalie Mansåker">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta itemprop="name" content="Amalie Mansåker">
|
||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/index.xml" title="Amalie Mansåker" />
|
||||
<style>
|
||||
:root {
|
||||
--width: 720px;
|
||||
--font-main: Verdana, sans-serif;
|
||||
--font-secondary: Verdana, sans-serif;
|
||||
--font-scale: 1em;
|
||||
--background-color: #fff;
|
||||
--heading-color: #222;
|
||||
--text-color: #444;
|
||||
--link-color: #3273dc;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #222;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background-color: #01242e;
|
||||
--heading-color: #eee;
|
||||
--text-color: #ddd;
|
||||
--link-color: #8cc2dd;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: var(--font-scale);
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
max-width: var(--width);
|
||||
text-align: left;
|
||||
background-color: var(--background-color);
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
line-height: 1.5;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-main);
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
nav a {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
strong,
|
||||
b {
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
time {
|
||||
font-family: monospace;
|
||||
font-style: normal;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
main {
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 1px dashed;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: monospace;
|
||||
padding: 2px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #999;
|
||||
color: var(--blockquote-color);
|
||||
padding-left: 20px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 25px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.inline {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.highlight,
|
||||
.code {
|
||||
border-radius: 3px;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
|
||||
ul.blog-posts {
|
||||
list-style-type: none;
|
||||
padding: unset;
|
||||
}
|
||||
|
||||
ul.blog-posts li {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
ul.blog-posts li span {
|
||||
flex: 0 0 130px;
|
||||
}
|
||||
|
||||
ul.blog-posts li a:visited {
|
||||
color: var(--visited-color);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header><a href="/" class="title">
|
||||
<h2>Amalie Mansåker</h2>
|
||||
</a>
|
||||
<nav>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
|
||||
|
||||
</main>
|
||||
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
11
public/index.xml
Normal file
11
public/index.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Amalie Mansåker</title>
|
||||
<link>http://localhost:1313/</link>
|
||||
<description>Recent content on Amalie Mansåker</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>no-nb</language>
|
||||
<atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
11
public/sitemap.xml
Normal file
11
public/sitemap.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>http://localhost:1313/</loc>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/categories/</loc>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/tags/</loc>
|
||||
</url>
|
||||
</urlset>
|
||||
221
public/tags/index.html
Normal file
221
public/tags/index.html
Normal file
@ -0,0 +1,221 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="no-nb">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Tags | Amalie Mansåker</title>
|
||||
<meta name="title" content="Tags" />
|
||||
<meta name="description" content="" />
|
||||
<meta name="keywords" content="" />
|
||||
|
||||
|
||||
<meta property="og:url" content="http://localhost:1313/tags/">
|
||||
<meta property="og:site_name" content="Amalie Mansåker">
|
||||
<meta property="og:title" content="Tags">
|
||||
<meta property="og:locale" content="no_nb">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta name="twitter:card" content="summary">
|
||||
<meta name="twitter:title" content="Tags">
|
||||
|
||||
|
||||
|
||||
|
||||
<meta itemprop="name" content="Tags">
|
||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" href="http://localhost:1313/tags/index.xml" title="Amalie Mansåker" />
|
||||
<style>
|
||||
:root {
|
||||
--width: 720px;
|
||||
--font-main: Verdana, sans-serif;
|
||||
--font-secondary: Verdana, sans-serif;
|
||||
--font-scale: 1em;
|
||||
--background-color: #fff;
|
||||
--heading-color: #222;
|
||||
--text-color: #444;
|
||||
--link-color: #3273dc;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #222;
|
||||
}
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root {
|
||||
--background-color: #01242e;
|
||||
--heading-color: #eee;
|
||||
--text-color: #ddd;
|
||||
--link-color: #8cc2dd;
|
||||
--visited-color: #8b6fcb;
|
||||
--blockquote-color: #ccc;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-secondary);
|
||||
font-size: var(--font-scale);
|
||||
margin: auto;
|
||||
padding: 20px;
|
||||
max-width: var(--width);
|
||||
text-align: left;
|
||||
background-color: var(--background-color);
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
line-height: 1.5;
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-main);
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
nav a {
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
strong,
|
||||
b {
|
||||
color: var(--heading-color);
|
||||
}
|
||||
|
||||
button {
|
||||
margin: 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
time {
|
||||
font-family: monospace;
|
||||
font-style: normal;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
main {
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: 0;
|
||||
border-top: 1px dashed;
|
||||
}
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: monospace;
|
||||
padding: 2px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 1px solid #999;
|
||||
color: var(--blockquote-color);
|
||||
padding-left: 20px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 25px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.inline {
|
||||
width: auto !important;
|
||||
}
|
||||
|
||||
.highlight,
|
||||
.code {
|
||||
border-radius: 3px;
|
||||
margin-block-start: 1em;
|
||||
margin-block-end: 1em;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
|
||||
ul.blog-posts {
|
||||
list-style-type: none;
|
||||
padding: unset;
|
||||
}
|
||||
|
||||
ul.blog-posts li {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
ul.blog-posts li span {
|
||||
flex: 0 0 130px;
|
||||
}
|
||||
|
||||
ul.blog-posts li a:visited {
|
||||
color: var(--visited-color);
|
||||
}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header><a href="/" class="title">
|
||||
<h2>Amalie Mansåker</h2>
|
||||
</a>
|
||||
<nav>
|
||||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<content>
|
||||
|
||||
<h3 style="margin-bottom:0">Filtering for "Tags"</h3>
|
||||
<small>
|
||||
<a href="/blog">Remove filter</a>
|
||||
</small>
|
||||
|
||||
<ul class="blog-posts">
|
||||
|
||||
<li>
|
||||
No posts yet
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
</content>
|
||||
|
||||
</main>
|
||||
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
11
public/tags/index.xml
Normal file
11
public/tags/index.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Tags on Amalie Mansåker</title>
|
||||
<link>http://localhost:1313/tags/</link>
|
||||
<description>Recent content in Tags on Amalie Mansåker</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>no-nb</language>
|
||||
<atom:link href="http://localhost:1313/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
1
themes/hugo-bearblog
Submodule
1
themes/hugo-bearblog
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 58b9e33e24dba03a6cae0c58604b27ea16fe5948
|
||||
Loading…
x
Reference in New Issue
Block a user