aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2022-03-02 20:19:15 +0900
committernsfisis <nsfisis@gmail.com>2022-03-02 20:19:15 +0900
commit0ecfd8dbc7a798d8fa58219d84387b6b30d4a2f4 (patch)
tree330c64c993b2d92f951eb47079b473f70357727a
parent1630f564cd0cd20440b38c142bdee70e99d15175 (diff)
downloadnsfisis.github.io-0ecfd8dbc7a798d8fa58219d84387b6b30d4a2f4.tar.gz
nsfisis.github.io-0ecfd8dbc7a798d8fa58219d84387b6b30d4a2f4.tar.zst
nsfisis.github.io-0ecfd8dbc7a798d8fa58219d84387b6b30d4a2f4.zip
disable categories
-rw-r--r--config.toml3
-rw-r--r--docs/categories/index.html97
-rw-r--r--docs/categories/index.xml10
-rw-r--r--docs/categories/page/1/index.html1
-rw-r--r--docs/sitemap.xml2
5 files changed, 3 insertions, 110 deletions
diff --git a/config.toml b/config.toml
index 72ada87..1e56996 100644
--- a/config.toml
+++ b/config.toml
@@ -2,3 +2,6 @@ baseURL = "https://blog.nsfisis.dev"
languageCode = "ja-JP"
title = "REPL: Rest-Eat-Program Loop"
theme = "paper"
+
+[taxonomies]
+tag = 'tags'
diff --git a/docs/categories/index.html b/docs/categories/index.html
deleted file mode 100644
index f43d450..0000000
--- a/docs/categories/index.html
+++ /dev/null
@@ -1,97 +0,0 @@
-<!DOCTYPE html>
-<html lang="ja-JP">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
-
- <title>Categories - REPL: Rest-Eat-Program Loop</title>
-
- <meta name="description" content="">
- <meta name="author" content="">
-
- <link href="https://blog.nsfisis.dev/an-old-hope.min.css" rel="stylesheet">
- <link href="https://blog.nsfisis.dev/style.css" rel="stylesheet">
- <link href="https://blog.nsfisis.dev/custom.css" rel="stylesheet">
-
- <link rel="apple-touch-icon" href="https://blog.nsfisis.dev/apple-touch-icon.png">
- <link rel="icon" href="https://blog.nsfisis.dev/favicon.ico">
- <meta name="generator" content="Hugo 0.88.1" />
-
- <link rel="alternate" type="application/rss+xml" href="https://blog.nsfisis.dev/categories/index.xml" title="REPL: Rest-Eat-Program Loop" />
-
-
- <script>
- function setTheme() {
- if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
- document.body.classList.add('dark');
- return;
- }
-
- const time = new Date();
- const prev = localStorage.getItem('date');
- const date = String(time.getMonth() + 1) + '.' + String(time.getDate());
-
- const now = time.getTime();
- let sunrise;
- let sunset;
-
- function setBodyClass() {
- if (now > sunrise && now < sunset) return;
- document.body.classList.add('dark');
- }
-
- if (date !== prev) {
- fetch('https://api.ipgeolocation.io/astronomy?apiKey=5ed37d85103e4defa5df4c5298ed5215')
- .then((res) => res.json())
- .then((data) => {
- sunrise = data.sunrise.split(':').map(Number);
- sunset = data.sunset.split(':').map(Number);
- })
- .catch(() => {
- sunrise = [7, 0];
- sunset = [19, 0];
- })
- .finally(() => {
- sunrise = time.setHours(sunrise[0], sunrise[1], 0);
- sunset = time.setHours(sunset[0], sunset[1], 0);
- setBodyClass();
- localStorage.setItem('sunrise', sunrise);
- localStorage.setItem('sunset', sunset);
- });
- localStorage.setItem('date', date);
- } else {
- sunrise = Number(localStorage.getItem('sunrise'));
- sunset = Number(localStorage.getItem('sunset'));
- setBodyClass();
- }
- }
- </script>
- </head>
- <body class="list">
- <script>
- setTheme();
- </script>
- <header class="header">
- <nav class="nav">
- <p class="logo"><a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></p>
- </nav>
- </header>
- <main class="main">
-
-<header class="page-header"><h1>Categories</h1></header>
-</main>
-<footer class="footer">
- <span>&copy; 2022 <a href="https://blog.nsfisis.dev">REPL: Rest-Eat-Program Loop</a></span>
- <span>&middot;</span>
- <span>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</span>
- <span>&middot;</span>
- <span>Theme️ <a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper</a></span>
-</footer>
-<script src="https://blog.nsfisis.dev/highlight.min.js"></script>
-<script>
- hljs.initHighlightingOnLoad();
-</script>
-</body>
-</html>
-
diff --git a/docs/categories/index.xml b/docs/categories/index.xml
deleted file mode 100644
index 1b1cd21..0000000
--- a/docs/categories/index.xml
+++ /dev/null
@@ -1,10 +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>Categories on REPL: Rest-Eat-Program Loop</title>
- <link>https://blog.nsfisis.dev/categories/</link>
- <description>Recent content in Categories on REPL: Rest-Eat-Program Loop</description>
- <generator>Hugo -- gohugo.io</generator>
- <language>ja-JP</language><atom:link href="https://blog.nsfisis.dev/categories/index.xml" rel="self" type="application/rss+xml" />
- </channel>
-</rss>
diff --git a/docs/categories/page/1/index.html b/docs/categories/page/1/index.html
deleted file mode 100644
index 1f6f78f..0000000
--- a/docs/categories/page/1/index.html
+++ /dev/null
@@ -1 +0,0 @@
-<!DOCTYPE html><html><head><title>https://blog.nsfisis.dev/categories/</title><link rel="canonical" href="https://blog.nsfisis.dev/categories/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://blog.nsfisis.dev/categories/" /></head></html> \ No newline at end of file
diff --git a/docs/sitemap.xml b/docs/sitemap.xml
index 3507324..cbe93b4 100644
--- a/docs/sitemap.xml
+++ b/docs/sitemap.xml
@@ -70,7 +70,5 @@
</url><url>
<loc>https://blog.nsfisis.dev/posts/my-first-post/</loc>
<lastmod>2021-03-05T23:38:21+09:00</lastmod>
- </url><url>
- <loc>https://blog.nsfisis.dev/categories/</loc>
</url>
</urlset>