--- /dev/null
+The MIT License (MIT)
+
+Copyright (c) 2022 YOUR_NAME_HERE
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
+COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
+IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--- /dev/null
+---
+title: "{{ replace .Name "-" " " | title }}"
+date: {{ .Date }}
+draft: true
+---
--- /dev/null
+{{ - partial "header.html" . - }}
+<h1>hi</h1>
+</body>
+</html>
--- /dev/null
+{{ partial "header.html" . -}}
+<h2>{{.Site.Title}} – Articles for {{.Title}}</h2>
+<ul>
+{{- range.Pages }}
+ <li><a href="{{ .RelPermalink }}">{{ .Date.Format "02/01/2006" }} {{.Title}}</a></li>
+{{ end -}}
+</ul>
+{{ partial "footer.html" .}}
--- /dev/null
+{{ partial "header.html" . -}}
+<p><a href="{{.Site.BaseURL}}"><-- Back</a></p>
+<div id="post">
+ <h1>{{.Site.Title }} – {{ .Title }}</h1>
+ <p class="cern-blue">Posted on {{ .Date.Format "02/01/2006 15:04:05" }}</p>
+ {{ .Content }}
+</div>
+{{ partial "footer.html" . }}
--- /dev/null
+{{ partial "header.html" . -}}
+<p>> curl {{ .Site.Title }} -v<br>
+* Trying 127.0.0.1:80...<br>
+* Connected to {{ .Site.Title }} (127.0.0.1) port 80 (#0)<br>
+> GET / HTTP 1.1<br>
+> Host: based.quest<br>
+> User-Agent: curl/b.45.3d<br>
+> Accept */*<br>
+><br><br></p>
+<p>< HTTP/1.1 200 OK<br>
+< Server: nginx<br>
+< Date: Right now o'clock<br>
+< Content-Type: base/based<br>
+< Last-Modified: Doesn't need to be modified, is perfect as-is.<br>
+< Connection: keep-alive<br><br></p>
+<p>based<br><br></p>
+
+{{ partial "links.html" }}
+
+<p>Tags: {{ range $name, $taxonomy := .Site.Taxonomies.tags }}<a href="{{ "/tags/" | relLangURL }}{{ $name | urlize }}/">{{ $name }}</a> {{ end }}</p>
+{{ range .Pages.GroupBy "Section" "desc"}}
+{{ with $.Site.GetPage "section" .Key }}
+<h2>{{ .Title }}</h2>
+<ul>
+ {{ range first 5 .Pages }}
+ <li><a href="{{ .RelPermalink }}">{{ .Date.Format "02/01/2006" }} {{ .Title }}</a></li>
+ {{ end }}
+ {{ if gt (len .Pages) 5 }}
+ <br>
+ <p><a href="{{ .RelPermalink }}">Read all the posts</a></p>
+ {{ end }}
+</ul>
+{{ end }}
+{{ end }}
+
+{{ partial "tags.html" . }}
+{{ partial "footer.html" . }}
--- /dev/null
+<p class="cern-blue"><br><br>Join us at Matrix: {{ .Site.Params.Matrix }}</p>
+<p class="cern-blue">© 2021 - 2022 {{ .Site.Title }} | Powered by <a href="https://gohugo.io">Hugo</a> | <a href="{{ .Site.Params.Donate }}">Donate</a> | <a href="index.xml">Atom RSS</a></p>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+"http://www.w3.org/TR/html4/strict.dtd">
+<html lang="{{ .Site.Language }}">
+<head>
+ <title>{{ .Site.Title }}</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <link rel="stylesheet" type="text/css" href="/bquest.css">
+ <meta property="og:title" content="{{.Site.Title}}">
+ <meta property="og:description" content="{{ if not .IsHome }}{{ .Description }}{{ else }}{{ .Site.Params.Description }}{{ end }}">
+ {{ if .Params.img }}<meta property="og:image" content="{{ .Site.BaseURL }}img/{{ .Params.img }}">{{ end }}
+</head>
+<body>
--- /dev/null
+<p class="cern-blue">Create layouts/partials/links.html to create your own links section here.</p>
+<br><br>
--- /dev/null
+ {{- if isset .Params "tags" -}}
+ {{- $tagsLen := len .Params.tags -}}
+ {{- if gt $tagsLen 0 -}}
+ <div style="clear:both" class=taglist>
+ {{- with .Site.Params.relatedtext }}{{ . }}<br>{{ end -}}
+ {{- range $k, $v := .Params.tags -}}
+ {{- $url := printf "tags/%s" (. | urlize | lower) -}}
+ <a id="tag_{{ . | lower }}" href="{{ $url | absURL }}">{{ . | title }}</a>
+ {{- if lt $k (sub $tagsLen 1) }} · {{ end -}}
+ {{- end -}}
+ </div>
+ {{- end -}}
+ {{- end }}
--- /dev/null
+{{ if isset .Site.Taxonomies "tags" }}{{ if not (eq (len .Site.Taxonomies.tags) 0) }} <p>
+ {{ range $name, $items := .Site.Taxonomies.tags }}{{ $url := printf "%s/%s" "tags" ($name | urlize | lower)}}<li><a href="{{ $url | absURL }}" id="tag_{{ $name }}">{{ $name | title }}</a></li>
+ {{ end }}</p>{{ end }}{{ end }}
--- /dev/null
+body,html{background:#000;color:#fff;max-width:1024px;margin:1em auto;padding:0 0.5em;font-family:monospace;font-size:large;}.cern-blue{color:#397ef6;}a,a:visited{color:#fff;}p{margin:0;padding:0}#post p{margin:12px 0;margin:revert;text-align:justify;}#post a,#post a:visited{color:#00b7ff;}pre code {display:block;padding:1em 1em 1em 1em;overflow-x:auto;}code{border:1px solid #ffb300;border-radius:5px;color:#19ca24;background:#202020;display:inline-block;}
--- /dev/null
+# theme.toml template for a Hugo theme
+# See https://github.com/gohugoio/hugoThemes#themetoml for an example
+
+name = "bquest"
+description = "The theme for based.quest website"
+homepage = "https://based.quest/"
+tags = ["blog"]
+features = []
+min_version = "0.41.0"
+
+[author]
+ name = "Joann Mondresku"
+ homepage = "https://cernodile.com"