mirror of
https://git.kittycat.homes/zoe/hugo-batsite.git
synced 2024-08-15 03:18:24 +00:00
add menu
This commit is contained in:
parent
2237ad824f
commit
82d2cd2caf
31 changed files with 920 additions and 7 deletions
|
@ -2,3 +2,10 @@ baseURL = "http://example.org/"
|
|||
languageCode = "en-us"
|
||||
title = "batsite"
|
||||
theme = "battheme"
|
||||
sectionPagesMenu = "main"
|
||||
|
||||
[menu]
|
||||
[[menu.nav]]
|
||||
identifier = "home"
|
||||
name = ' home'
|
||||
url = '/'
|
||||
|
|
10
content/about/index.md
Normal file
10
content/about/index.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "About"
|
||||
date: 2022-04-09T14:23:49+02:00
|
||||
draft: true
|
||||
menu:
|
||||
nav:
|
||||
name: " about"
|
||||
|
||||
---
|
||||
|
6
content/dir1/b.md
Normal file
6
content/dir1/b.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "B"
|
||||
date: 2022-04-09T14:02:24+02:00
|
||||
draft: true
|
||||
---
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
title: "Content"
|
||||
date: 2022-04-09T00:06:45+02:00
|
||||
draft: true
|
||||
---
|
||||
hello!
|
10
content/links/index.md
Normal file
10
content/links/index.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
---
|
||||
title: "Links"
|
||||
date: 2022-04-09T17:37:48+02:00
|
||||
draft: true
|
||||
menu:
|
||||
nav:
|
||||
name: " links"
|
||||
|
||||
---
|
||||
|
6
content/posts/aeiuo.md
Normal file
6
content/posts/aeiuo.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Aeiuo"
|
||||
date: 2022-04-09T14:12:18+02:00
|
||||
draft: true
|
||||
---
|
||||
|
6
content/posts/example.md
Normal file
6
content/posts/example.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
title: "Example"
|
||||
date: 2022-04-09T13:36:54+02:00
|
||||
draft: true
|
||||
---
|
||||
|
52
public/a/index.html
Normal file
52
public/a/index.html
Normal file
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>A</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<section id="main">
|
||||
<h1 id="title">Single Page A</h1>
|
||||
<div>
|
||||
<article id="content">
|
||||
<p>this is file a
|
||||
dskfjksdjfkdfj</p>
|
||||
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
<aside id="meta">
|
||||
<div>
|
||||
<section>
|
||||
</section>
|
||||
|
||||
|
||||
</div>
|
||||
<div>
|
||||
|
||||
|
||||
<a class="next" href="http://example.org/about/">next: About</a>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
50
public/about/index.html
Normal file
50
public/about/index.html
Normal file
|
@ -0,0 +1,50 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>About</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<section id="main">
|
||||
<h1 id="title">Single Page About</h1>
|
||||
<div>
|
||||
<article id="content">
|
||||
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
<aside id="meta">
|
||||
<div>
|
||||
<section>
|
||||
</section>
|
||||
|
||||
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<a class="previous" href="http://example.org/a/">previous: A</a>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
41
public/categories/index.html
Normal file
41
public/categories/index.html
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Categories</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<main>
|
||||
<article>
|
||||
<header>
|
||||
<h1>List - Categories</h1>
|
||||
</header>
|
||||
|
||||
|
||||
</article>
|
||||
<ul>
|
||||
|
||||
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
10
public/categories/index.xml
Normal file
10
public/categories/index.xml
Normal 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 batsite</title>
|
||||
<link>http://example.org/categories/</link>
|
||||
<description>Recent content in Categories on batsite</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>
|
48
public/dir1/b/index.html
Normal file
48
public/dir1/b/index.html
Normal file
|
@ -0,0 +1,48 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>B</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<section id="main">
|
||||
<h1 id="title">Single Page B</h1>
|
||||
<div>
|
||||
<article id="content">
|
||||
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
<aside id="meta">
|
||||
<div>
|
||||
<section>
|
||||
</section>
|
||||
|
||||
|
||||
</div>
|
||||
<div>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item active" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
45
public/dir1/index.html
Normal file
45
public/dir1/index.html
Normal file
|
@ -0,0 +1,45 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Dir1s</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<main>
|
||||
<article>
|
||||
<header>
|
||||
<h1>List - Dir1s</h1>
|
||||
</header>
|
||||
|
||||
|
||||
</article>
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="http://example.org/dir1/b/">2022-04-09 | B</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item active" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
20
public/dir1/index.xml
Normal file
20
public/dir1/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>Dir1s on batsite</title>
|
||||
<link>http://example.org/dir1/</link>
|
||||
<description>Recent content in Dir1s on batsite</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 09 Apr 2022 14:02:24 +0200</lastBuildDate><atom:link href="http://example.org/dir1/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>B</title>
|
||||
<link>http://example.org/dir1/b/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 14:02:24 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/dir1/b/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
Binary file not shown.
BIN
public/font/Caskaydia Cove Nerd Font Complete Mono.ttf
Normal file
BIN
public/font/Caskaydia Cove Nerd Font Complete Mono.ttf
Normal file
Binary file not shown.
Binary file not shown.
BIN
public/font/Caskaydia Cove Nerd Font Complete.ttf
Normal file
BIN
public/font/Caskaydia Cove Nerd Font Complete.ttf
Normal file
Binary file not shown.
37
public/index.html
Normal file
37
public/index.html
Normal file
|
@ -0,0 +1,37 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta name="generator" content="Hugo 0.82.1" />
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>batsite</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<div>
|
||||
<h1 class="title">batsite</h1>
|
||||
</div>
|
||||
<div>
|
||||
<p>
|
||||
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item active" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
56
public/index.xml
Normal file
56
public/index.xml
Normal file
|
@ -0,0 +1,56 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>batsite</title>
|
||||
<link>http://example.org/</link>
|
||||
<description>Recent content on batsite</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 09 Apr 2022 14:12:18 +0200</lastBuildDate><atom:link href="http://example.org/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>About</title>
|
||||
<link>http://example.org/about/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 14:23:49 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/about/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Aeiuo</title>
|
||||
<link>http://example.org/posts/aeiuo/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 14:12:18 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/posts/aeiuo/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>A</title>
|
||||
<link>http://example.org/a/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 14:02:35 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/a/</guid>
|
||||
<description>this is file a dskfjksdjfkdfj</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>B</title>
|
||||
<link>http://example.org/dir1/b/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 14:02:24 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/dir1/b/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Example</title>
|
||||
<link>http://example.org/posts/example/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 13:36:54 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/posts/example/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
50
public/posts/aeiuo/index.html
Normal file
50
public/posts/aeiuo/index.html
Normal file
|
@ -0,0 +1,50 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Aeiuo</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<section id="main">
|
||||
<h1 id="title">Single Page Aeiuo</h1>
|
||||
<div>
|
||||
<article id="content">
|
||||
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
<aside id="meta">
|
||||
<div>
|
||||
<section>
|
||||
</section>
|
||||
|
||||
|
||||
</div>
|
||||
<div>
|
||||
|
||||
<a class="previous" href="http://example.org/posts/example/">previous: Example</a>
|
||||
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item active" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
50
public/posts/example/index.html
Normal file
50
public/posts/example/index.html
Normal file
|
@ -0,0 +1,50 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Example</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<section id="main">
|
||||
<h1 id="title">Single Page Example</h1>
|
||||
<div>
|
||||
<article id="content">
|
||||
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
<aside id="meta">
|
||||
<div>
|
||||
<section>
|
||||
</section>
|
||||
|
||||
|
||||
</div>
|
||||
<div>
|
||||
|
||||
|
||||
<a class="next" href="http://example.org/posts/aeiuo/">next: Aeiuo</a>
|
||||
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item active" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
49
public/posts/index.html
Normal file
49
public/posts/index.html
Normal file
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Posts</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<main>
|
||||
<article>
|
||||
<header>
|
||||
<h1>List - Posts</h1>
|
||||
</header>
|
||||
|
||||
|
||||
</article>
|
||||
<ul>
|
||||
|
||||
|
||||
<li>
|
||||
<a href="http://example.org/posts/aeiuo/">2022-04-09 | Aeiuo</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a href="http://example.org/posts/example/">2022-04-09 | Example</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item active" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
29
public/posts/index.xml
Normal file
29
public/posts/index.xml
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?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 batsite</title>
|
||||
<link>http://example.org/posts/</link>
|
||||
<description>Recent content in Posts on batsite</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<lastBuildDate>Sat, 09 Apr 2022 14:12:18 +0200</lastBuildDate><atom:link href="http://example.org/posts/index.xml" rel="self" type="application/rss+xml" />
|
||||
<item>
|
||||
<title>Aeiuo</title>
|
||||
<link>http://example.org/posts/aeiuo/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 14:12:18 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/posts/aeiuo/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
<title>Example</title>
|
||||
<link>http://example.org/posts/example/</link>
|
||||
<pubDate>Sat, 09 Apr 2022 13:36:54 +0200</pubDate>
|
||||
|
||||
<guid>http://example.org/posts/example/</guid>
|
||||
<description></description>
|
||||
</item>
|
||||
|
||||
</channel>
|
||||
</rss>
|
37
public/scss/main.css
Normal file
37
public/scss/main.css
Normal file
|
@ -0,0 +1,37 @@
|
|||
body {
|
||||
background-color: #352b42;
|
||||
color: #f2f0e5; }
|
||||
|
||||
a {
|
||||
color: #c2d368; }
|
||||
|
||||
footer, footer a {
|
||||
background-color: #f2f0e5;
|
||||
color: #352b42; }
|
||||
|
||||
@font-face {
|
||||
font-family: Caskaydia Cove;
|
||||
src: url(../fonts/Caskaydia); }
|
||||
|
||||
a {
|
||||
text-decoration: none; }
|
||||
|
||||
footer a {
|
||||
text-decoration: underline; }
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
flex: auto; }
|
||||
|
||||
footer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 10%; }
|
||||
|
||||
#content {
|
||||
min-height: 90%; }
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0; }
|
33
public/sitemap.xml
Normal file
33
public/sitemap.xml
Normal file
|
@ -0,0 +1,33 @@
|
|||
<?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/about/</loc>
|
||||
<lastmod>2022-04-09T14:23:49+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/posts/aeiuo/</loc>
|
||||
<lastmod>2022-04-09T14:12:18+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/</loc>
|
||||
<lastmod>2022-04-09T14:12:18+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/posts/</loc>
|
||||
<lastmod>2022-04-09T14:12:18+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/a/</loc>
|
||||
<lastmod>2022-04-09T14:02:35+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/dir1/b/</loc>
|
||||
<lastmod>2022-04-09T14:02:24+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/dir1/</loc>
|
||||
<lastmod>2022-04-09T14:02:24+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/posts/example/</loc>
|
||||
<lastmod>2022-04-09T13:36:54+02:00</lastmod>
|
||||
</url><url>
|
||||
<loc>http://example.org/categories/</loc>
|
||||
</url><url>
|
||||
<loc>http://example.org/tags/</loc>
|
||||
</url>
|
||||
</urlset>
|
81
public/svg/bat.svg
Normal file
81
public/svg/bat.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 20 KiB |
81
public/svg/favicon.svg
Normal file
81
public/svg/favicon.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 20 KiB |
41
public/tags/index.html
Normal file
41
public/tags/index.html
Normal file
|
@ -0,0 +1,41 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Tags</title>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="/scss/main.css">
|
||||
<link rel="icon" type="image/x-icon" href="/svg/favicon.svg">
|
||||
</head>
|
||||
<body><div id="content">
|
||||
<main>
|
||||
<article>
|
||||
<header>
|
||||
<h1>List - Tags</h1>
|
||||
</header>
|
||||
|
||||
|
||||
</article>
|
||||
<ul>
|
||||
|
||||
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
</div><footer>
|
||||
<nav id="footer-nav">
|
||||
|
||||
|
||||
<a class="sidebar-nav-item" href="/about" title="">about</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/dir1/" title="Dir1s">Dir1s</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/" title="">home</a>
|
||||
|
||||
<a class="sidebar-nav-item" href="/posts/" title="Posts">Posts</a>
|
||||
|
||||
</nav>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
10
public/tags/index.xml
Normal file
10
public/tags/index.xml
Normal 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 batsite</title>
|
||||
<link>http://example.org/tags/</link>
|
||||
<description>Recent content in Tags on batsite</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>
|
|
@ -1,2 +1,56 @@
|
|||
body {
|
||||
background-color: #ffe7d6;
|
||||
color: #73464c; }
|
||||
|
||||
a {
|
||||
background-color: #ab5675;
|
||||
color: #ffe7d6; }
|
||||
|
||||
a.footer-nav-item.active {
|
||||
color: #ab5675; }
|
||||
|
||||
footer, footer a {
|
||||
background-color: #73464c;
|
||||
color: #ffe7d6; }
|
||||
|
||||
@font-face {
|
||||
font-family: CaskaydiaCove;
|
||||
src: url(/font/CaskaydiaCove.ttf); }
|
||||
|
||||
* {
|
||||
color: red; }
|
||||
font-family: CaskaydiaCove;
|
||||
font-size: 16pt; }
|
||||
|
||||
h1 {
|
||||
font-size: 42pt; }
|
||||
|
||||
a {
|
||||
text-decoration: none; }
|
||||
|
||||
footer {
|
||||
font-size: 20pt; }
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
flex: auto; }
|
||||
|
||||
footer {
|
||||
height: 10%;
|
||||
min-height: 24pt;
|
||||
position: sticky;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center; }
|
||||
|
||||
#footer-content {
|
||||
width: 100%; }
|
||||
|
||||
#content {
|
||||
min-height: 90%; }
|
||||
|
||||
#footer-right {
|
||||
justify-self: right; }
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0; }
|
||||
|
|
Loading…
Reference in a new issue