parent
a90e7c80bb
commit
d128d06738
@ -1,6 +1,7 @@
|
||||
|
||||
title: Hello, World!
|
||||
author: VnPower
|
||||
date: 2022-08-09
|
||||
tags: hello,testing
|
||||
----
|
||||
|
||||
asd
|
||||
|
@ -0,0 +1,4 @@
|
||||
title: Blog
|
||||
----
|
||||
|
||||
{{ template "articleList" (((.Site.Pages.Children "blog/").Where "Url" "/$").WhereNot "Draft" "true") }}
|
@ -0,0 +1,4 @@
|
||||
title: Blog
|
||||
----
|
||||
|
||||
{{ template "articleList" (((.Site.Pages.Children "blog/").Where "Url" "/$").WhereNot "Draft" "true") }}
|
@ -0,0 +1,84 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>VnPower's website: Hello, World!</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="VnPower" />
|
||||
<meta name="description" content="My website. Served with static files." />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="alternate" type="application/atom+xml" title="VnPower's website feed" href="/blog.atom" />
|
||||
<link href="/static/style.css" rel="stylesheet">
|
||||
<script defer src="/static/script.js"></script>
|
||||
</head>
|
||||
|
||||
<body class="mocha">
|
||||
|
||||
<header class="center-flex">
|
||||
<h1>VnPower</h1>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<div class="buttons-list hr inline">
|
||||
<a href="/">
|
||||
Home
|
||||
</a>
|
||||
<a href="/blog">
|
||||
Blog
|
||||
</a>
|
||||
</div>
|
||||
<div class="buttons-list hr float-right inline" id="theme">
|
||||
<a href="#" id="latte">
|
||||
🌻 Latte
|
||||
</a>
|
||||
<a href="#" id="frappe">
|
||||
🪴 Frappe
|
||||
</a>
|
||||
<a href="#" id="macchiato">
|
||||
🌺 Macchiato
|
||||
</a>
|
||||
<a href="#" id="mocha">
|
||||
🌿 Mocha
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section class="front-content clear">
|
||||
|
||||
<article>
|
||||
<a href="/blog"><small>Back to index</small></a>
|
||||
<h1 class="title no-margin">Hello, World!</h1>
|
||||
<small class="metadata subtext">by VnPower in 09/08/2022</small>
|
||||
<p>
|
||||
Tags:
|
||||
|
||||
<a href="/tags/hello/">hello</a>,
|
||||
<a href="/tags/testing/">testing</a>
|
||||
</p>
|
||||
<div class="content">
|
||||
<p><p>asd</p>
|
||||
</p>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="center-text">
|
||||
<p>VnPower</p>
|
||||
<!--
|
||||
<div class="inline">
|
||||
GitHub
|
||||
076's Gitea
|
||||
Discord
|
||||
</div>
|
||||
-->
|
||||
<small>Still working</small>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,78 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>VnPower's website: Blog</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="VnPower" />
|
||||
<meta name="description" content="My website. Served with static files." />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="alternate" type="application/atom+xml" title="VnPower's website feed" href="/blog.atom" />
|
||||
<link href="/static/style.css" rel="stylesheet">
|
||||
<script defer src="/static/script.js"></script>
|
||||
</head>
|
||||
|
||||
<body class="mocha">
|
||||
|
||||
<header class="center-flex">
|
||||
<h1>VnPower</h1>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<div class="buttons-list hr inline">
|
||||
<a href="/">
|
||||
Home
|
||||
</a>
|
||||
<a href="/blog">
|
||||
Blog
|
||||
</a>
|
||||
</div>
|
||||
<div class="buttons-list hr float-right inline" id="theme">
|
||||
<a href="#" id="latte">
|
||||
🌻 Latte
|
||||
</a>
|
||||
<a href="#" id="frappe">
|
||||
🪴 Frappe
|
||||
</a>
|
||||
<a href="#" id="macchiato">
|
||||
🌺 Macchiato
|
||||
</a>
|
||||
<a href="#" id="mocha">
|
||||
🌿 Mocha
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section class="front-content clear">
|
||||
|
||||
|
||||
<section class="article-list">
|
||||
<ul>
|
||||
|
||||
<li>09/08/2022 — <a href="/blog/hello-world/">Hello, World!</a></li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="center-text">
|
||||
<p>VnPower</p>
|
||||
<!--
|
||||
<div class="inline">
|
||||
GitHub
|
||||
076's Gitea
|
||||
Discord
|
||||
</div>
|
||||
-->
|
||||
<small>Still working</small>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,77 @@
|
||||
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<title>VnPower's website: testing</title>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="author" content="VnPower" />
|
||||
<meta name="description" content="My website. Served with static files." />
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="alternate" type="application/atom+xml" title="VnPower's website feed" href="/blog.atom" />
|
||||
<link href="/static/style.css" rel="stylesheet">
|
||||
<script defer src="/static/script.js"></script>
|
||||
</head>
|
||||
|
||||
<body class="mocha">
|
||||
|
||||
<header class="center-flex">
|
||||
<h1>VnPower</h1>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
||||
<nav>
|
||||
<div class="buttons-list hr inline">
|
||||
<a href="/">
|
||||
Home
|
||||
</a>
|
||||
<a href="/blog">
|
||||
Blog
|
||||
</a>
|
||||
</div>
|
||||
<div class="buttons-list hr float-right inline" id="theme">
|
||||
<a href="#" id="latte">
|
||||
🌻 Latte
|
||||
</a>
|
||||
<a href="#" id="frappe">
|
||||
🪴 Frappe
|
||||
</a>
|
||||
<a href="#" id="macchiato">
|
||||
🌺 Macchiato
|
||||
</a>
|
||||
<a href="#" id="mocha">
|
||||
🌿 Mocha
|
||||
</a>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<section class="front-content clear">
|
||||
<h1>`testing` tagged posts</h1>
|
||||
|
||||
<section class="article-list">
|
||||
<ul>
|
||||
|
||||
<li>09/08/2022 — <a href="/blog/hello-world/">Hello, World!</a></li>
|
||||
|
||||
</ul>
|
||||
</section>
|
||||
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer class="center-text">
|
||||
<p>VnPower</p>
|
||||
<!--
|
||||
<div class="inline">
|
||||
GitHub
|
||||
076's Gitea
|
||||
Discord
|
||||
</div>
|
||||
-->
|
||||
<small>Still working</small>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue