diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-03-17 01:03:59 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-03-17 01:03:59 +0900 |
| commit | ee72f8780cf3681e4202cc3a6358fb4038db1ec8 (patch) | |
| tree | bb3b375339757f4677df03ea4d06268e18ae8de5 /public | |
| parent | f5b1c4d1429356ebcef2a8cdd7b5d311a9477a6c (diff) | |
| download | blog.nsfisis.dev-ee72f8780cf3681e4202cc3a6358fb4038db1ec8.tar.gz blog.nsfisis.dev-ee72f8780cf3681e4202cc3a6358fb4038db1ec8.tar.zst blog.nsfisis.dev-ee72f8780cf3681e4202cc3a6358fb4038db1ec8.zip | |
feat(nuldoc): implement /about/ page (work in progress)
Diffstat (limited to 'public')
| -rw-r--r-- | public/about/index.html | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/public/about/index.html b/public/about/index.html new file mode 100644 index 0000000..337add5 --- /dev/null +++ b/public/about/index.html @@ -0,0 +1,46 @@ +<!DOCTYPE html> +<html lang="ja-JP"> + <head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="author" content="nsfisis"> + <meta name="copyright" content="© 2021 nsfisis"> + <meta name="description" content="このサイトの著者について"> + <link rel="icon" type="image/svg+xml" href="/favicon.svg"> + <title>About | REPL: Rest-Eat-Program Loop</title> + <link rel="stylesheet" href="/style.css?h=17cf97a767ec5fb6e64967729f40f30a"> + </head> + <body class="single"> + <header class="header"> + <nav class="nav"> + <ul> + <li class="logo"> + <a href="/">REPL: Rest-Eat-Program Loop</a> + </li> + <li> + <a href="/about">About</a> + </li> + <li> + <a href="/posts">Posts</a> + </li> + <li> + <a href="/slides">Slides</a> + </li> + </ul> + </nav> + </header> + <main class="main"> + <article class="post-single"> + <header class="post-header"> + <h1 class="post-title">About</h1> + </header> + <div class="post-content"> + WIP + </div> + </article> + </main> + <footer class="footer"> + © 2021 nsfisis + </footer> + </body> +</html> |
