added tags
This commit is contained in:
parent
f6e41dfb1f
commit
4040fc3aa8
38 changed files with 976 additions and 457 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,4 @@
|
|||
/content/*
|
||||
/puclic
|
||||
|
||||
deploy
|
||||
git-deploy
|
||||
|
|
|
@ -29,6 +29,27 @@
|
|||
color: rgb(255, 240, 240);
|
||||
text-decoration: none;
|
||||
}
|
||||
aside {
|
||||
margin-top: 80px;
|
||||
.tags {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-left: -10px;
|
||||
padding: 0;
|
||||
li {
|
||||
background: rgb(60, 60, 90);
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
margin-left: 10px;
|
||||
a {
|
||||
color: rgb(180, 180, 220);
|
||||
}
|
||||
a:hover {
|
||||
background: rgb(70, 70, 105);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
baseURL: https://vrifox.cc/vrifox.cc_hugo/
|
||||
languageCode: en-us
|
||||
title: have a nice day
|
||||
title: vrifox.cc
|
||||
enableRobotsTXT: true
|
||||
params:
|
||||
version: 2020-09
|
||||
menu:
|
||||
main:
|
||||
- identifier: blog
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
{{ block "stylesheet" . }}{{ end }}
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="{{ "/favicon.png" | relURL }}">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="{{ .Date.Format "2 Jan 2006, 15:04 MST" }}">{{ .Date.Format "2. January 2006" }}</span>
|
||||
by
|
||||
by
|
||||
<span>{{ .Params.author }}</span>
|
||||
</p>
|
||||
<h1 class="title">{{ .Title }}</h1>
|
||||
|
@ -18,27 +18,25 @@
|
|||
{{ end }}
|
||||
{{ .Content }}
|
||||
<aside class="meta">
|
||||
<div>
|
||||
{{ with .Params.topics }}
|
||||
{{ with .Params.topics }}
|
||||
<ul class="topics">
|
||||
{{ range . }}
|
||||
<li><a href="{{ "topics" | absURL}}{{ . | urlize }}">{{ . }}</a> </li>
|
||||
<li><a href="{{ "topics" | relURL}}/{{ . | urlize }}">{{ . }}</a> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
{{ with .Params.tags }}
|
||||
<ul class="tags">
|
||||
{{ range . }}
|
||||
<li> <a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a> </li>
|
||||
<li> <a href="{{ "tags" | relURL }}/{{ . | urlize }}">{{ . }}</a> </li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
</div>
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
<section class="section-articles">
|
||||
{{ with .PrevInSection }}
|
||||
{{ with .PrevInSection }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<article>
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
@ -51,8 +49,8 @@
|
|||
{{ end }}
|
||||
</article>
|
||||
</a>
|
||||
{{ end }}
|
||||
{{ with .NextInSection }}
|
||||
{{ end }}
|
||||
{{ with .NextInSection }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<article>
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
@ -64,7 +62,8 @@
|
|||
<img src="{{ . | relURL }}">
|
||||
{{ end }}
|
||||
</article>
|
||||
{{ end }}
|
||||
</a>
|
||||
{{ end }}
|
||||
</section>
|
||||
</div>
|
||||
</main>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</header>
|
||||
{{.Content}}
|
||||
</section>
|
||||
<h1>latest <a href="{{ "/blog" | relURL }}">articles</a></h1>
|
||||
<h1>latest <a href="{{ "/blog" | relURL }}">posts</a></h1>
|
||||
<section class="section-articles">
|
||||
{{ range first 3 (where .Site.RegularPages "Type" "post") }}
|
||||
<a href="{{ .Permalink }}">
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version {{ .Date.Format "2006-01-02" }}</span>
|
||||
<span>version {{ .Site.Params.version }}</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.main }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
<li>|</li>
|
||||
{{ range .Site.Menus.links }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
{{ .Pre }}
|
||||
<span>{{ .Name }}</span>
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> 404 Page not found – Have a nice day.</title>
|
||||
<title> 404 Page not found – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/index.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -85,34 +85,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 0001-01-01</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> A »new« graphic for Natenoms blog – Have a nice day.</title>
|
||||
<title> A »new« graphic for Natenoms blog – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="29 Aug 2020, 12:12 CEST">29. August 2020</span>
|
||||
by
|
||||
by
|
||||
<span>Vrifox</span>
|
||||
</p>
|
||||
<h1 class="title">A »new« graphic for Natenoms blog</h1>
|
||||
|
@ -67,10 +67,16 @@
|
|||
<p>I did make a new iteration of this graphic for <a href="https://blog.natenom.com/">Natenoms Blog</a>.</p>
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
<ul class="tags">
|
||||
|
||||
<li> <a href="/vrifox.cc_hugo/tags/graphic">graphic</a> </li>
|
||||
|
||||
<li> <a href="/vrifox.cc_hugo/tags/natenom">natenom</a> </li>
|
||||
|
||||
</ul>
|
||||
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -86,6 +92,7 @@
|
|||
<img src="/vrifox.cc_hugo/upload/2020/09/vrifox.cc-2020-09.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
@ -94,34 +101,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-08-29</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> My New Hugo Page – Have a nice day.</title>
|
||||
<title> My New Hugo Page – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="9 Sep 2020, 19:59 CEST">9. September 2020</span>
|
||||
by
|
||||
by
|
||||
<span>Vrifox</span>
|
||||
</p>
|
||||
<h1 class="title">My New Hugo Page</h1>
|
||||
|
@ -68,10 +68,14 @@
|
|||
<p>And this page is the first result.</p>
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
<ul class="tags">
|
||||
|
||||
<li> <a href="/vrifox.cc_hugo/tags/website">website</a> </li>
|
||||
|
||||
</ul>
|
||||
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -96,34 +100,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09-09</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title>Have a nice day.</title>
|
||||
<title>vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -89,34 +89,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09-09</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Have a nice day.</title>
|
||||
<title>vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/blog/</link>
|
||||
<description>Recent content on Have a nice day.</description>
|
||||
<description>Recent content on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Wed, 09 Sep 2020 19:59:31 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="https://vrifox.cc/vrifox.cc_hugo/blog/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<lastBuildDate>Wed, 09 Sep 2020 19:59:31 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/blog/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>My New Hugo Page</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/blog/2020/my-new-hugo-page/</link>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> Categories – Have a nice day.</title>
|
||||
<title> Categories – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -76,34 +76,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-08-29</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
<?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 Have a nice day.</title>
|
||||
<title>Categories on vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/categories/</link>
|
||||
<description>Recent content in Categories on Have a nice day.</description>
|
||||
<description>Recent content in Categories on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 29 Aug 2020 12:12:53 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="https://vrifox.cc/vrifox.cc_hugo/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<lastBuildDate>Sat, 29 Aug 2020 12:12:53 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>natenomsblog</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/categories/natenomsblog/</link>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> natenomsblog – Have a nice day.</title>
|
||||
<title> natenomsblog – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -78,34 +78,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-08-29</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>natenomsblog on Have a nice day.</title>
|
||||
<title>natenomsblog on vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/categories/natenomsblog/</link>
|
||||
<description>Recent content in natenomsblog on Have a nice day.</description>
|
||||
<description>Recent content in natenomsblog on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 29 Aug 2020 12:12:53 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="https://vrifox.cc/vrifox.cc_hugo/categories/natenomsblog/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<lastBuildDate>Sat, 29 Aug 2020 12:12:53 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/categories/natenomsblog/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>A »new« graphic for Natenoms blog</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/</link>
|
||||
|
|
|
@ -2,15 +2,15 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<meta name="generator" content="Hugo 0.74.3" />
|
||||
<title>Have a nice day.</title>
|
||||
<meta name="generator" content="Hugo 0.75.1" />
|
||||
<title> about – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/index.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -60,7 +60,7 @@
|
|||
</header>
|
||||
|
||||
</section>
|
||||
<h1>latest <a href="/vrifox.cc_hugo/blog">articles</a></h1>
|
||||
<h1>latest <a href="/vrifox.cc_hugo/blog">posts</a></h1>
|
||||
<section class="section-articles">
|
||||
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/blog/2020/my-new-hugo-page/">
|
||||
|
@ -122,34 +122,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09-10</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Have a nice day.</title>
|
||||
<title>about on vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/</link>
|
||||
<description>Recent content on Have a nice day.</description>
|
||||
<description>Recent content in about on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Thu, 10 Sep 2020 14:27:00 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="https://vrifox.cc/vrifox.cc_hugo/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<lastBuildDate>Thu, 10 Sep 2020 14:27:00 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>My Website</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/projects/2008/my-website/</link>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> My Website – Have a nice day.</title>
|
||||
<title> My Website – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="10 Sep 2020, 14:27 CEST">10. September 2020</span>
|
||||
by
|
||||
by
|
||||
<span></span>
|
||||
</p>
|
||||
<h1 class="title">My Website</h1>
|
||||
|
@ -66,10 +66,8 @@
|
|||
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -94,34 +92,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09-10</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> Omega for Mumble – Have a nice day.</title>
|
||||
<title> Omega for Mumble – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="24 May 2016, 12:00 CEST">24. May 2016</span>
|
||||
by
|
||||
by
|
||||
<span></span>
|
||||
</p>
|
||||
<h1 class="title">Omega for Mumble</h1>
|
||||
|
@ -66,10 +66,8 @@
|
|||
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -98,6 +96,7 @@
|
|||
<img src="/vrifox.cc_hugo/upload/2020/01/mmm-dark-mumble-theme.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
@ -106,34 +105,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2016-05-24</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> Natenoms Blog – Have a nice day.</title>
|
||||
<title> Natenoms Blog – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="20 Aug 2020, 12:00 CEST">20. August 2020</span>
|
||||
by
|
||||
by
|
||||
<span></span>
|
||||
</p>
|
||||
<h1 class="title">Natenoms Blog</h1>
|
||||
|
@ -66,10 +66,8 @@
|
|||
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -96,6 +94,7 @@
|
|||
<img src="/vrifox.cc_hugo/upload/2020/09/vrifox.cc_blank-2020-08.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
@ -104,34 +103,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-08-20</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> Simpleblog – Have a nice day.</title>
|
||||
<title> Simpleblog – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="29 Sep 2015, 12:00 CEST">29. September 2015</span>
|
||||
by
|
||||
by
|
||||
<span></span>
|
||||
</p>
|
||||
<h1 class="title">Simpleblog</h1>
|
||||
|
@ -66,10 +66,8 @@
|
|||
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -85,6 +83,7 @@
|
|||
<img src="/vrifox.cc_hugo/upload/2020/01/omega-for-mumble-theme.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
@ -93,34 +92,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2015-09-29</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> MMM-Dark – Have a nice day.</title>
|
||||
<title> MMM-Dark – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="1 Jan 2017, 12:00 +0200">1. January 2017</span>
|
||||
by
|
||||
by
|
||||
<span></span>
|
||||
</p>
|
||||
<h1 class="title">MMM-Dark</h1>
|
||||
|
@ -66,10 +66,8 @@
|
|||
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -96,6 +94,7 @@
|
|||
<img src="/vrifox.cc_hugo/upload/2020/01/gitea-theme.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
@ -104,34 +103,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2017-01-01</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> Gitea Theme Vrifox 2018 – Have a nice day.</title>
|
||||
<title> Gitea Theme Vrifox 2018 – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/single.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -57,7 +57,7 @@
|
|||
<article>
|
||||
<p class="meta">
|
||||
<span title="9 Jun 2019, 12:00 CEST">9. June 2019</span>
|
||||
by
|
||||
by
|
||||
<span></span>
|
||||
</p>
|
||||
<h1 class="title">Gitea Theme Vrifox 2018</h1>
|
||||
|
@ -66,10 +66,8 @@
|
|||
|
||||
|
||||
<aside class="meta">
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
</article>
|
||||
</section>
|
||||
|
@ -96,6 +94,7 @@
|
|||
<img src="/vrifox.cc_hugo/upload/2018/11/blog.natenom.com.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</div>
|
||||
|
@ -104,34 +103,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2019-06-09</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title>Have a nice day.</title>
|
||||
<title>vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/projects/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -121,34 +121,34 @@
|
|||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09-10</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -1,16 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Have a nice day.</title>
|
||||
<title>vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/projects/</link>
|
||||
<description>Recent content on Have a nice day.</description>
|
||||
<description>Recent content on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Thu, 10 Sep 2020 14:27:00 +0200</lastBuildDate>
|
||||
|
||||
<atom:link href="https://vrifox.cc/vrifox.cc_hugo/projects/index.xml" rel="self" type="application/rss+xml" />
|
||||
|
||||
|
||||
<lastBuildDate>Thu, 10 Sep 2020 14:27:00 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/projects/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>My Website</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/projects/2008/my-website/</link>
|
||||
|
|
|
@ -1,20 +1,28 @@
|
|||
User-agent: *
|
||||
|
||||
|
||||
Disallow: /vrifox.cc_hugo/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/projects/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/projects/2008/my-website/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/blog/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/blog/2020/my-new-hugo-page/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/tags/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/tags/website/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/categories/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/tags/graphic/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/tags/natenom/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/categories/natenomsblog/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/projects/2015/natenoms-blog/
|
||||
|
@ -27,5 +35,3 @@ Disallow: /vrifox.cc_hugo/projects/2014/omega-for-mumble/
|
|||
|
||||
Disallow: /vrifox.cc_hugo/projects/2015/simpleblog/
|
||||
|
||||
Disallow: /vrifox.cc_hugo/tags/
|
||||
|
||||
|
|
|
@ -67,6 +67,22 @@ nav {
|
|||
background: #ff8282;
|
||||
color: #fff0f0;
|
||||
text-decoration: none; }
|
||||
.section-article article aside {
|
||||
margin-top: 80px; }
|
||||
.section-article article aside .tags {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-left: -10px;
|
||||
padding: 0; }
|
||||
.section-article article aside .tags li {
|
||||
background: #3c3c5a;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
margin-left: 10px; }
|
||||
.section-article article aside .tags li a {
|
||||
color: #b4b4dc; }
|
||||
.section-article article aside .tags li a:hover {
|
||||
background: #464669; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px auto;
|
||||
|
|
|
@ -3,12 +3,12 @@
|
|||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/</loc>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/projects/</loc>
|
||||
<lastmod>2020-09-10T14:27:00+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/projects/</loc>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/</loc>
|
||||
<lastmod>2020-09-10T14:27:00+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
|
@ -27,6 +27,16 @@
|
|||
<lastmod>2020-09-09T19:59:31+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/tags/</loc>
|
||||
<lastmod>2020-09-09T19:59:31+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/tags/website/</loc>
|
||||
<lastmod>2020-09-09T19:59:31+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/</loc>
|
||||
<lastmod>2020-08-29T12:12:53+02:00</lastmod>
|
||||
|
@ -37,6 +47,16 @@
|
|||
<lastmod>2020-08-29T12:12:53+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/tags/graphic/</loc>
|
||||
<lastmod>2020-08-29T12:12:53+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/tags/natenom/</loc>
|
||||
<lastmod>2020-08-29T12:12:53+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/categories/natenomsblog/</loc>
|
||||
<lastmod>2020-08-29T12:12:53+02:00</lastmod>
|
||||
|
@ -67,8 +87,4 @@
|
|||
<lastmod>2015-09-29T12:00:00+02:00</lastmod>
|
||||
</url>
|
||||
|
||||
<url>
|
||||
<loc>https://vrifox.cc/vrifox.cc_hugo/tags/</loc>
|
||||
</url>
|
||||
|
||||
</urlset>
|
116
public/tags/graphic/index.html
Normal file
116
public/tags/graphic/index.html
Normal file
|
@ -0,0 +1,116 @@
|
|||
<!doctype html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title> graphic – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<div class="container">
|
||||
<section class="website-name">
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/">Vrifox</a>
|
||||
</section>
|
||||
<section class="website-nav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<header>
|
||||
<h1></h1>
|
||||
<span class="subtitle"></span>
|
||||
</header>
|
||||
|
||||
</section>
|
||||
<section class="section-articles">
|
||||
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/">
|
||||
<article>
|
||||
<h1>A »new« graphic for Natenoms blog</h1>
|
||||
<p class="meta" title="29 Aug 2020, 12:12 CEST"><span class="date">29 August 2020</span> <span class="author">by Vrifox</span></p>
|
||||
|
||||
|
||||
<img src="/vrifox.cc_hugo/upload/2020/08/fahrradteile-v2-1.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
20
public/tags/graphic/index.xml
Normal file
20
public/tags/graphic/index.xml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>graphic on vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/tags/graphic/</link>
|
||||
<description>Recent content in graphic on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 29 Aug 2020 12:12:53 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/tags/graphic/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>A »new« graphic for Natenoms blog</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/</link>
|
||||
<pubDate>Sat, 29 Aug 2020 12:12:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/</guid>
|
||||
<description>I did make a new iteration of this graphic for Natenoms Blog.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
|
@ -2,14 +2,14 @@
|
|||
|
||||
<html>
|
||||
<head>
|
||||
<title> Tags – Have a nice day.</title>
|
||||
<title> Tags – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/favicon.png">
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
@ -61,40 +61,67 @@
|
|||
</section>
|
||||
<section class="section-articles">
|
||||
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/tags/website/">
|
||||
<article>
|
||||
<h1>website</h1>
|
||||
<p class="meta" title="9 Sep 2020, 19:59 CEST"><span class="date">9 September 2020</span> <span class="author">by </span></p>
|
||||
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/tags/graphic/">
|
||||
<article>
|
||||
<h1>graphic</h1>
|
||||
<p class="meta" title="29 Aug 2020, 12:12 CEST"><span class="date">29 August 2020</span> <span class="author">by </span></p>
|
||||
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/tags/natenom/">
|
||||
<article>
|
||||
<h1>natenom</h1>
|
||||
<p class="meta" title="29 Aug 2020, 12:12 CEST"><span class="date">29 August 2020</span> <span class="author">by </span></p>
|
||||
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 0001-01-01</span>
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
|
|
@ -1,14 +1,38 @@
|
|||
<?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 Have a nice day.</title>
|
||||
<title>Tags on vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/tags/</link>
|
||||
<description>Recent content in Tags on Have a nice day.</description>
|
||||
<description>Recent content in Tags on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Wed, 09 Sep 2020 19:59:31 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>website</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/tags/website/</link>
|
||||
<pubDate>Wed, 09 Sep 2020 19:59:31 +0200</pubDate>
|
||||
|
||||
<atom:link href="https://vrifox.cc/vrifox.cc_hugo/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
<guid>https://vrifox.cc/vrifox.cc_hugo/tags/website/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>graphic</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/tags/graphic/</link>
|
||||
<pubDate>Sat, 29 Aug 2020 12:12:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vrifox.cc/vrifox.cc_hugo/tags/graphic/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>natenom</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/tags/natenom/</link>
|
||||
<pubDate>Sat, 29 Aug 2020 12:12:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vrifox.cc/vrifox.cc_hugo/tags/natenom/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
116
public/tags/natenom/index.html
Normal file
116
public/tags/natenom/index.html
Normal file
|
@ -0,0 +1,116 @@
|
|||
<!doctype html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title> natenom – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<div class="container">
|
||||
<section class="website-name">
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/">Vrifox</a>
|
||||
</section>
|
||||
<section class="website-nav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<header>
|
||||
<h1></h1>
|
||||
<span class="subtitle"></span>
|
||||
</header>
|
||||
|
||||
</section>
|
||||
<section class="section-articles">
|
||||
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/">
|
||||
<article>
|
||||
<h1>A »new« graphic for Natenoms blog</h1>
|
||||
<p class="meta" title="29 Aug 2020, 12:12 CEST"><span class="date">29 August 2020</span> <span class="author">by Vrifox</span></p>
|
||||
|
||||
|
||||
<img src="/vrifox.cc_hugo/upload/2020/08/fahrradteile-v2-1.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
20
public/tags/natenom/index.xml
Normal file
20
public/tags/natenom/index.xml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>natenom on vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/tags/natenom/</link>
|
||||
<description>Recent content in natenom on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 29 Aug 2020 12:12:53 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/tags/natenom/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>A »new« graphic for Natenoms blog</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/</link>
|
||||
<pubDate>Sat, 29 Aug 2020 12:12:53 +0200</pubDate>
|
||||
|
||||
<guid>https://vrifox.cc/vrifox.cc_hugo/blog/2020/graphic-for-natenoms-blog/</guid>
|
||||
<description>I did make a new iteration of this graphic for Natenoms Blog.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
116
public/tags/website/index.html
Normal file
116
public/tags/website/index.html
Normal file
|
@ -0,0 +1,116 @@
|
|||
<!doctype html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<title> website – vrifox.cc</title>
|
||||
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<link rel="stylesheet" href="https://vrifox.cc/vrifox.cc_hugo/scss/_default/list.css" type="text/css" media="screen" />
|
||||
|
||||
<link rel="icon" type="image/png" href="/vrifox.cc_hugo/favicon.png">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<div class="container">
|
||||
<section class="website-name">
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/">Vrifox</a>
|
||||
</section>
|
||||
<section class="website-nav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
|
||||
<main class="container">
|
||||
<section>
|
||||
<header>
|
||||
<h1></h1>
|
||||
<span class="subtitle"></span>
|
||||
</header>
|
||||
|
||||
</section>
|
||||
<section class="section-articles">
|
||||
|
||||
<a href="https://vrifox.cc/vrifox.cc_hugo/blog/2020/my-new-hugo-page/">
|
||||
<article>
|
||||
<h1>My New Hugo Page</h1>
|
||||
<p class="meta" title="9 Sep 2020, 19:59 CEST"><span class="date">9 September 2020</span> <span class="author">by Vrifox</span></p>
|
||||
|
||||
|
||||
<img src="/vrifox.cc_hugo/upload/2020/09/vrifox.cc-2020-09.png">
|
||||
|
||||
</article>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="container">
|
||||
<section class="website-version">
|
||||
<span>version 2020-09</span>
|
||||
</section>
|
||||
<section class="website-subnav">
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/blog">
|
||||
|
||||
<span>Blog</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="/vrifox.cc_hugo/projects">
|
||||
|
||||
<span>Projects</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>|</li>
|
||||
|
||||
<li>
|
||||
<a href="https://social.anoxinon.de/@vrifox">
|
||||
|
||||
<span>Mastodon</span>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
21
public/tags/website/index.xml
Normal file
21
public/tags/website/index.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>website on vrifox.cc</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/tags/website/</link>
|
||||
<description>Recent content in website on vrifox.cc</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Wed, 09 Sep 2020 19:59:31 +0200</lastBuildDate><atom:link href="https://vrifox.cc/vrifox.cc_hugo/tags/website/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>My New Hugo Page</title>
|
||||
<link>https://vrifox.cc/vrifox.cc_hugo/blog/2020/my-new-hugo-page/</link>
|
||||
<pubDate>Wed, 09 Sep 2020 19:59:31 +0200</pubDate>
|
||||
|
||||
<guid>https://vrifox.cc/vrifox.cc_hugo/blog/2020/my-new-hugo-page/</guid>
|
||||
<description>In the past weeks I learned hugo by just using it.
|
||||
And this page is the first result.</description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
|
@ -67,6 +67,22 @@ nav {
|
|||
background: #ff8282;
|
||||
color: #fff0f0;
|
||||
text-decoration: none; }
|
||||
.section-article article aside {
|
||||
margin-top: 80px; }
|
||||
.section-article article aside .tags {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
margin-left: -10px;
|
||||
padding: 0; }
|
||||
.section-article article aside .tags li {
|
||||
background: #3c3c5a;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
margin-left: 10px; }
|
||||
.section-article article aside .tags li a {
|
||||
color: #b4b4dc; }
|
||||
.section-article article aside .tags li a:hover {
|
||||
background: #464669; }
|
||||
|
||||
.section-articles {
|
||||
margin: 20px auto;
|
||||
|
|
Loading…
Reference in a new issue