This commit is contained in:
nora 2022-07-21 17:39:51 +02:00
parent eab339d869
commit b4e6bd5e8f
28 changed files with 1008 additions and 0 deletions

122
public/404.html Normal file
View file

@ -0,0 +1,122 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>404 Page not found :: My New Hugo Site</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://example.org/404.html" />
<link rel="stylesheet" href="http://example.org/assets/style.css">
<link rel="stylesheet" href="assets/%25!s%28%3cnil%3e%29.css">
<link rel="apple-touch-icon" href="http://example.org/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://example.org/img/favicon/orange.png">
<meta name="twitter:card" content="summary" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="website" />
<meta property="og:title" content="404 Page not found">
<meta property="og:description" content="" />
<meta property="og:url" content="http://example.org/404.html" />
<meta property="og:site_name" content="My New Hugo Site" />
<meta property="og:image" content="img/favicon/%!s().png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
</head>
<body class="">
<div class="container headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="http://example.org/">
<div class="logo">
Terminal
</div>
</a>
</div>
</div>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">404 — Page not found...</h1>
<div class="post-content">
<a href="http://example.org/">Back to home page&nbsp;</a>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>© 2022 Powered by <a href="http://gohugo.io">Hugo</a></span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://example.org/assets/main.js"></script>
<script src="http://example.org/assets/prism.js"></script>
</div>
</body>
</html>

Binary file not shown.

Binary file not shown.

1
public/assets/blue.css Normal file

File diff suppressed because one or more lines are too long

1
public/assets/green.css Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,4 @@
(function(){var __webpack_modules__={"./assets/js/languageSelector.js":
/*!***************************************!*\
!*** ./assets/js/languageSelector.js ***!
\***************************************/function(){eval('var mobileQuery = getComputedStyle(document.body).getPropertyValue("--phoneWidth");\n\nvar isMobile = function isMobile() {\n return window.matchMedia(mobileQuery).matches;\n};\n\nvar languageSelector = document.querySelector(".language-selector-current");\nvar moreLanguagesContainer = document.querySelector(".language-selector__more");\ndocument.body.addEventListener("click", function () {\n if (!isMobile() && moreLanguagesContainer && !moreLanguagesContainer.classList.contains("hidden")) {\n moreLanguagesContainer.classList.add("hidden");\n }\n});\nlanguageSelector && languageSelector.addEventListener("click", function (e) {\n if (!isMobile()) {\n e.stopPropagation();\n moreLanguagesContainer.classList.toggle("hidden");\n }\n});\n\n//# sourceURL=webpack://terminal/./assets/js/languageSelector.js?')}},__webpack_exports__={};__webpack_modules__["./assets/js/languageSelector.js"]()})();

4
public/assets/main.js Normal file
View file

@ -0,0 +1,4 @@
(function(){var __webpack_modules__={"./assets/js/menu.js":
/*!***************************!*\
!*** ./assets/js/menu.js ***!
\***************************/function(){eval('var container = document.querySelector(".container");\nvar menu = document.querySelector(".menu");\nvar mobileMenuTrigger = document.querySelector(".menu-trigger");\nvar desktopMenu = document.querySelector(".menu__inner--desktop");\nvar desktopMenuTrigger = document.querySelector(".menu__sub-inner-more-trigger");\nvar menuMore = document.querySelector(".menu__sub-inner-more");\nvar mobileQuery = getComputedStyle(document.body).getPropertyValue("--phoneWidth");\n\nvar isMobile = function isMobile() {\n return window.matchMedia(mobileQuery).matches;\n};\n\nvar handleMenuClasses = function handleMenuClasses() {\n mobileMenuTrigger && mobileMenuTrigger.classList.toggle("hidden", !isMobile());\n menu && menu.classList.toggle("hidden", isMobile());\n menuMore && menuMore.classList.toggle("hidden", !isMobile());\n}; // Common\n\n\nmenu && menu.addEventListener("click", function (e) {\n return e.stopPropagation();\n});\nmenuMore && menuMore.addEventListener("click", function (e) {\n return e.stopPropagation();\n});\nhandleMenuClasses();\ndocument.body.addEventListener("click", function () {\n if (!isMobile() && menuMore && !menuMore.classList.contains("hidden")) {\n menuMore.classList.add("hidden");\n } else if (isMobile() && !menu.classList.contains("hidden")) {\n menu.classList.add("hidden");\n }\n});\nwindow.addEventListener("resize", handleMenuClasses); // Mobile menu\n\nmobileMenuTrigger && mobileMenuTrigger.addEventListener("click", function (e) {\n e.stopPropagation();\n menu && menu.classList.toggle("hidden");\n}); // Desktop menu\n\ndesktopMenuTrigger && desktopMenuTrigger.addEventListener("click", function (e) {\n e.stopPropagation();\n menuMore && menuMore.classList.toggle("hidden");\n\n if (menuMore.getBoundingClientRect().right > container.getBoundingClientRect().right) {\n menuMore.style.left = "auto";\n menuMore.style.right = 0;\n }\n});\n\n//# sourceURL=webpack://terminal/./assets/js/menu.js?')}},__webpack_exports__={};__webpack_modules__["./assets/js/menu.js"]()})();

1
public/assets/pink.css Normal file

File diff suppressed because one or more lines are too long

4
public/assets/prism.js Normal file

File diff suppressed because one or more lines are too long

1
public/assets/red.css Normal file

File diff suppressed because one or more lines are too long

1
public/assets/style.css Normal file

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,123 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Categories :: My New Hugo Site</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://example.org/categories/" />
<link rel="stylesheet" href="http://example.org/assets/style.css">
<link rel="stylesheet" href="assets/%25!s%28%3cnil%3e%29.css">
<link rel="apple-touch-icon" href="http://example.org/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://example.org/img/favicon/orange.png">
<meta name="twitter:card" content="summary" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Categories">
<meta property="og:description" content="" />
<meta property="og:url" content="http://example.org/categories/" />
<meta property="og:site_name" content="My New Hugo Site" />
<meta property="og:image" content="img/favicon/%!s().png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<link href="/categories/index.xml" rel="alternate" type="application/rss+xml" title="My New Hugo Site" />
</head>
<body class="">
<div class="container headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="http://example.org/">
<div class="logo">
Terminal
</div>
</a>
</div>
</div>
</header>
<div class="content">
<div class="terms">
<h1>Categories</h1>
<ul>
</ul>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>© 2022 Powered by <a href="http://gohugo.io">Hugo</a></span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://example.org/assets/main.js"></script>
<script src="http://example.org/assets/prism.js"></script>
</div>
</body>
</html>

View file

@ -0,0 +1,10 @@
<?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 My New Hugo Site</title>
<link>http://example.org/categories/</link>
<description>Recent content in Categories on My New Hugo Site</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="http://example.org/categories/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>

BIN
public/img/favicon/blue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

BIN
public/img/favicon/pink.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

BIN
public/img/favicon/red.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 189 B

181
public/index.html Normal file
View file

@ -0,0 +1,181 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="generator" content="Hugo 0.68.3" />
<title>My New Hugo Site</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://example.org/" />
<link rel="stylesheet" href="http://example.org/assets/style.css">
<link rel="stylesheet" href="assets/%25!s%28%3cnil%3e%29.css">
<link rel="apple-touch-icon" href="http://example.org/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://example.org/img/favicon/orange.png">
<meta name="twitter:card" content="summary" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="website" />
<meta property="og:title" content="My New Hugo Site">
<meta property="og:description" content="" />
<meta property="og:url" content="http://example.org/" />
<meta property="og:site_name" content="My New Hugo Site" />
<meta property="og:image" content="img/favicon/%!s().png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="My New Hugo Site" />
</head>
<body class="">
<div class="container headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="http://example.org/">
<div class="logo">
Terminal
</div>
</a>
</div>
</div>
</header>
<div class="content">
<div class="posts">
<div class="post on-list">
<h1 class="post-title">
<a href="http://example.org/posts/box-is-a-unique-type/">Box Is a Unique Type</a>
</h1>
<div class="post-meta">
<span class="post-date">
2022-07-21
</span>
<span class="post-author">:: Nilstrieb</span>
</div>
<span class="post-tags">
#<a href="http://example.org/tags/"></a>&nbsp;
#<a href="http://example.org/tags/"></a>&nbsp;
</span>
<div class="post-content">
uwu wow much unique
cool f
fun
</div>
<div>
<a class="read-more button"
href="/posts/box-is-a-unique-type/"> →</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>© 2022 Powered by <a href="http://gohugo.io">Hugo</a></span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://example.org/assets/main.js"></script>
<script src="http://example.org/assets/prism.js"></script>
</div>
</body>
</html>

28
public/index.xml Normal file
View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>My New Hugo Site</title>
<link>http://example.org/</link>
<description>Recent content on My New Hugo Site</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Thu, 21 Jul 2022 17:34:24 +0200</lastBuildDate><atom:link href="http://example.org/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Box Is a Unique Type</title>
<link>http://example.org/posts/box-is-a-unique-type/</link>
<pubDate>Thu, 21 Jul 2022 17:34:24 +0200</pubDate>
<guid>http://example.org/posts/box-is-a-unique-type/</guid>
<description>uwu wow much unique
cool f
fun</description>
<content>&lt;h1 id=&#34;uwu&#34;&gt;uwu&lt;/h1&gt;
&lt;p&gt;wow much unique&lt;/p&gt;
&lt;p&gt;cool
f&lt;/p&gt;
&lt;p&gt;fun&lt;/p&gt;
</content>
</item>
</channel>
</rss>

1
public/page/1/index.html Normal file
View file

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>http://example.org/</title><link rel="canonical" href="http://example.org/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=http://example.org/" /></head></html>

View file

@ -0,0 +1,166 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Box Is a Unique Type :: My New Hugo Site</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="uwu wow much unique
cool f
fun" />
<meta name="keywords" content=", " />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://example.org/posts/box-is-a-unique-type/" />
<link rel="stylesheet" href="http://example.org/assets/style.css">
<link rel="stylesheet" href="assets/%25!s%28%3cnil%3e%29.css">
<link rel="apple-touch-icon" href="http://example.org/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://example.org/img/favicon/orange.png">
<meta name="twitter:card" content="summary" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Box Is a Unique Type">
<meta property="og:description" content="uwu wow much unique
cool f
fun" />
<meta property="og:url" content="http://example.org/posts/box-is-a-unique-type/" />
<meta property="og:site_name" content="My New Hugo Site" />
<meta property="og:image" content="http://example.org/">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<meta property="article:published_time" content="2022-07-21 17:34:24 &#43;0200 CEST" />
</head>
<body class="">
<div class="container headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="http://example.org/">
<div class="logo">
Terminal
</div>
</a>
</div>
</div>
</header>
<div class="content">
<div class="post">
<h1 class="post-title">
<a href="http://example.org/posts/box-is-a-unique-type/">Box Is a Unique Type</a></h1>
<div class="post-meta">
<span class="post-date">
2022-07-21
</span>
<span class="post-author">:: Nilstrieb</span>
<span class="post-reading-time">:: 1 min read (7 words)</span>
</div>
<span class="post-tags">
#<a href="http://example.org/tags/"></a>&nbsp;
#<a href="http://example.org/tags/"></a>&nbsp;
</span>
<div class="post-content"><div>
<h1 id="uwu">uwu<a href="#uwu" class="hanchor" ariaLabel="Anchor">&#8983;</a> </h1>
<p>wow much unique</p>
<p>cool
f</p>
<p>fun</p>
</div></div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>© 2022 Powered by <a href="http://gohugo.io">Hugo</a></span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://example.org/assets/main.js"></script>
<script src="http://example.org/assets/prism.js"></script>
</div>
</body>
</html>

170
public/posts/index.html Normal file
View file

@ -0,0 +1,170 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Posts :: My New Hugo Site</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://example.org/posts/" />
<link rel="stylesheet" href="http://example.org/assets/style.css">
<link rel="stylesheet" href="assets/%25!s%28%3cnil%3e%29.css">
<link rel="apple-touch-icon" href="http://example.org/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://example.org/img/favicon/orange.png">
<meta name="twitter:card" content="summary" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Posts">
<meta property="og:description" content="" />
<meta property="og:url" content="http://example.org/posts/" />
<meta property="og:site_name" content="My New Hugo Site" />
<meta property="og:image" content="img/favicon/%!s().png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<link href="/posts/index.xml" rel="alternate" type="application/rss+xml" title="My New Hugo Site" />
</head>
<body class="">
<div class="container headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="http://example.org/">
<div class="logo">
Terminal
</div>
</a>
</div>
</div>
</header>
<div class="content">
<div class="posts">
<div class="post on-list">
<h1 class="post-title">
<a href="http://example.org/posts/box-is-a-unique-type/">Box Is a Unique Type</a>
</h1>
<div class="post-meta">
<span class="post-date">
2022-07-21
</span>
<span class="post-author">:: Nilstrieb</span>
</div>
<span class="post-tags">
#<a href="http://example.org/tags/"></a>&nbsp;
#<a href="http://example.org/tags/"></a>&nbsp;
</span>
<div class="post-content">
uwu wow much unique
cool f
fun
</div>
<div>
<a class="read-more button"
href="/posts/box-is-a-unique-type/"> →</a>
</div>
</div>
<div class="pagination">
<div class="pagination__buttons">
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>© 2022 Powered by <a href="http://gohugo.io">Hugo</a></span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://example.org/assets/main.js"></script>
<script src="http://example.org/assets/prism.js"></script>
</div>
</body>
</html>

28
public/posts/index.xml Normal file
View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Posts on My New Hugo Site</title>
<link>http://example.org/posts/</link>
<description>Recent content in Posts on My New Hugo Site</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language>
<lastBuildDate>Thu, 21 Jul 2022 17:34:24 +0200</lastBuildDate><atom:link href="http://example.org/posts/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Box Is a Unique Type</title>
<link>http://example.org/posts/box-is-a-unique-type/</link>
<pubDate>Thu, 21 Jul 2022 17:34:24 +0200</pubDate>
<guid>http://example.org/posts/box-is-a-unique-type/</guid>
<description>uwu wow much unique
cool f
fun</description>
<content>&lt;h1 id=&#34;uwu&#34;&gt;uwu&lt;/h1&gt;
&lt;p&gt;wow much unique&lt;/p&gt;
&lt;p&gt;cool
f&lt;/p&gt;
&lt;p&gt;fun&lt;/p&gt;
</content>
</item>
</channel>
</rss>

View file

@ -0,0 +1 @@
<!DOCTYPE html><html><head><title>http://example.org/posts/</title><link rel="canonical" href="http://example.org/posts/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=http://example.org/posts/" /></head></html>

28
public/sitemap.xml Normal file
View file

@ -0,0 +1,28 @@
<?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://example.org/posts/box-is-a-unique-type/</loc>
<lastmod>2022-07-21T17:34:24+02:00</lastmod>
</url>
<url>
<loc>http://example.org/</loc>
<lastmod>2022-07-21T17:34:24+02:00</lastmod>
</url>
<url>
<loc>http://example.org/posts/</loc>
<lastmod>2022-07-21T17:34:24+02:00</lastmod>
</url>
<url>
<loc>http://example.org/categories/</loc>
</url>
<url>
<loc>http://example.org/tags/</loc>
</url>
</urlset>

123
public/tags/index.html Normal file
View file

@ -0,0 +1,123 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tags :: My New Hugo Site</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="noodp" />
<link rel="canonical" href="http://example.org/tags/" />
<link rel="stylesheet" href="http://example.org/assets/style.css">
<link rel="stylesheet" href="assets/%25!s%28%3cnil%3e%29.css">
<link rel="apple-touch-icon" href="http://example.org/img/apple-touch-icon-192x192.png">
<link rel="shortcut icon" href="http://example.org/img/favicon/orange.png">
<meta name="twitter:card" content="summary" />
<meta property="og:locale" content="en" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Tags">
<meta property="og:description" content="" />
<meta property="og:url" content="http://example.org/tags/" />
<meta property="og:site_name" content="My New Hugo Site" />
<meta property="og:image" content="img/favicon/%!s().png">
<meta property="og:image:width" content="2048">
<meta property="og:image:height" content="1024">
<link href="/tags/index.xml" rel="alternate" type="application/rss+xml" title="My New Hugo Site" />
</head>
<body class="">
<div class="container headings--one-size">
<header class="header">
<div class="header__inner">
<div class="header__logo">
<a href="http://example.org/">
<div class="logo">
Terminal
</div>
</a>
</div>
</div>
</header>
<div class="content">
<div class="terms">
<h1>Tags</h1>
<ul>
</ul>
</div>
</div>
<footer class="footer">
<div class="footer__inner">
<div class="copyright">
<span>© 2022 Powered by <a href="http://gohugo.io">Hugo</a></span>
<span>:: Theme made by <a href="https://twitter.com/panr">panr</a></span>
</div>
</div>
</footer>
<script src="http://example.org/assets/main.js"></script>
<script src="http://example.org/assets/prism.js"></script>
</div>
</body>
</html>

10
public/tags/index.xml Normal file
View file

@ -0,0 +1,10 @@
<?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 My New Hugo Site</title>
<link>http://example.org/tags/</link>
<description>Recent content in Tags on My New Hugo Site</description>
<generator>Hugo -- gohugo.io</generator>
<language>en-us</language><atom:link href="http://example.org/tags/index.xml" rel="self" type="application/rss+xml" />
</channel>
</rss>