merge main -> master
This commit is contained in:
		
							
								
								
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							@@ -1 +1,2 @@
 | 
				
			|||||||
.vscode/
 | 
					/.hugo_build.lock
 | 
				
			||||||
 | 
					/public
 | 
				
			||||||
							
								
								
									
										14
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								README.md
									
									
									
									
									
								
							@@ -1,21 +1,17 @@
 | 
				
			|||||||
 | 
					 | 
				
			||||||
# Oliver's Hugo Theme
 | 
					# Oliver's Hugo Theme
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Fork of [lugo](https://github.com/LukeSmithxyz/lugo). Used for my personal website(s).
 | 
					Fork of [lugo](https://github.com/LukeSmithxyz/lugo). Used for my personal website(s).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## get started
 | 
					## Get started
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```sh
 | 
					```sh
 | 
				
			||||||
hugo new site new-site
 | 
					hugo new site new-site
 | 
				
			||||||
cd new-site
 | 
					cd new-site/
 | 
				
			||||||
git clone https://github.com/lukesmithxyz/lugo themes/lugo
 | 
					git submodule add https://git.oliveratkinson.net/Oliver/lugo themes/lugo
 | 
				
			||||||
echo "theme = 'lugo'" >> config.toml
 | 
					echo "theme = 'lugo'" >> config.toml
 | 
				
			||||||
cp themes/lugo/static/style.css static/
 | 
					 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## stuff
 | 
					## Notes
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- Makes one RSS feed for the entire site at `/index.xml`
 | 
					- Makes one RSS feed for the entire site at `/index.xml`
 | 
				
			||||||
- Stylesheet is in `/style.css` and includes some important stuff for partials.
 | 
					- Stylesheet is in `/style.css` and includes some important stuff for partials.
 | 
				
			||||||
- If a post is tagged, links to the tags are placed at the bottom of the post.
 | 
					 | 
				
			||||||
- `nextprev.html` adds links to the Next and Previous articles to the bottom of a page.
 | 
					 | 
				
			||||||
- `taglist.html` links all tags an article is tagged to for related content.
 | 
					 | 
				
			||||||
 
 | 
				
			|||||||
@@ -6,6 +6,12 @@ languageCode = 'en-us'
 | 
				
			|||||||
  # "relatedtext" is the text that appears above the tag list at the bottom of pages.
 | 
					  # "relatedtext" is the text that appears above the tag list at the bottom of pages.
 | 
				
			||||||
  relatedtext = "Tags:"
 | 
					  relatedtext = "Tags:"
 | 
				
			||||||
  favicon = "favicon.ico"
 | 
					  favicon = "favicon.ico"
 | 
				
			||||||
  showrss = true
 | 
					
 | 
				
			||||||
 | 
					  #list items
 | 
				
			||||||
 | 
					  datesinlist = true
 | 
				
			||||||
 | 
					  authorsinlist = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  #footer items
 | 
				
			||||||
  nextprev = true
 | 
					  nextprev = true
 | 
				
			||||||
  taglist = true
 | 
					  taglist = true
 | 
				
			||||||
 | 
					  showrss = true
 | 
				
			||||||
@@ -1,47 +1,24 @@
 | 
				
			|||||||
<!DOCTYPE html>
 | 
					<!DOCTYPE html>
 | 
				
			||||||
<html lang="{{ .Site.Language }}">
 | 
					<html lang="{{ .Site.Language }}">
 | 
				
			||||||
<head>
 | 
					{{ partial "head.html" . }}
 | 
				
			||||||
	<title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title>
 | 
					 | 
				
			||||||
	<link rel="canonical" href="{{ .Site.BaseURL }}">
 | 
					 | 
				
			||||||
	<link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
 | 
					 | 
				
			||||||
	<link rel='stylesheet' type='text/css' href='/style.css'>
 | 
					 | 
				
			||||||
	<link rel='stylesheet' type='text/css' href='/hugo.css'>
 | 
					 | 
				
			||||||
	<link rel='stylesheet' type='text/css' href='/content.css'>
 | 
					 | 
				
			||||||
	{{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">
 | 
					 | 
				
			||||||
	{{ end -}}
 | 
					 | 
				
			||||||
	<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
 | 
					 | 
				
			||||||
	{{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
 | 
					 | 
				
			||||||
	{{ end -}}
 | 
					 | 
				
			||||||
	<meta name="viewport" content="width=device-width, initial-scale=1">
 | 
					 | 
				
			||||||
	<meta name="robots" content="index, follow">
 | 
					 | 
				
			||||||
	<meta charset="utf-8">
 | 
					 | 
				
			||||||
</head>
 | 
					 | 
				
			||||||
<body>
 | 
					<body>
 | 
				
			||||||
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
 | 
					    {{ block "header" . }}
 | 
				
			||||||
<main>
 | 
					    {{ partial "header.html" . }}
 | 
				
			||||||
<header>
 | 
					    {{ end }}
 | 
				
			||||||
	<h1 id="tag_{{ .Title }}">
 | 
					    <main>
 | 
				
			||||||
		{{ if .IsHome }} {{ .Site.Title }} {{ end }}
 | 
					        <div class="article-header">
 | 
				
			||||||
		{{ block "title" . }}
 | 
					            <h3 class="spaced">
 | 
				
			||||||
	{{ end }}</h1>
 | 
					                {{ .Page.Title }}
 | 
				
			||||||
	<h4 id="tag_{{ .Title }}">
 | 
					            </h3>
 | 
				
			||||||
		{{ if not .IsHome }} {{ .Params.description }} {{ end }}
 | 
					        </div>
 | 
				
			||||||
	</h4>
 | 
					        <article>
 | 
				
			||||||
</header>
 | 
					            {{ block "main" . }}
 | 
				
			||||||
<article>
 | 
					            {{ .Content }}
 | 
				
			||||||
{{ block "main" . }}
 | 
					            {{ end }}
 | 
				
			||||||
{{ .Content }}
 | 
					        </article>
 | 
				
			||||||
{{ end }}
 | 
					        {{ block "footer" . }}
 | 
				
			||||||
{{ if not .IsHome }} <br><hr><br> {{end -}}
 | 
					        {{ partial "footer.html" . }}
 | 
				
			||||||
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
 | 
					        {{ end }}
 | 
				
			||||||
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
 | 
					    </main>
 | 
				
			||||||
</article>
 | 
					 | 
				
			||||||
</main>
 | 
					 | 
				
			||||||
{{ block "footer" . }}
 | 
					 | 
				
			||||||
<footer>
 | 
					 | 
				
			||||||
	<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
 | 
					 | 
				
			||||||
	{{- if .Param "showrss" }}<br><br><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>{{ end }}
 | 
					 | 
				
			||||||
</footer>
 | 
					 | 
				
			||||||
{{ end }}
 | 
					 | 
				
			||||||
</body>
 | 
					</body>
 | 
				
			||||||
</html>
 | 
					</html>
 | 
				
			||||||
@@ -6,13 +6,16 @@
 | 
				
			|||||||
{{ if not .IsHome }}
 | 
					{{ if not .IsHome }}
 | 
				
			||||||
<ul>
 | 
					<ul>
 | 
				
			||||||
{{- range.Pages }}
 | 
					{{- range.Pages }}
 | 
				
			||||||
	<li>
 | 
					<li>
 | 
				
			||||||
		{{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ end -}}
 | 
						{{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> – {{ end -}}
 | 
				
			||||||
		<a href="{{ .RelPermalink }}">{{ .Title }}</a>
 | 
						<a href="{{ .RelPermalink }}">{{ .Title }}</a>
 | 
				
			||||||
		{{- if .Param "authorsinlist" }}
 | 
						{{- if .Param "authorsinlist" }}
 | 
				
			||||||
		{{- range .Param "authors" }} by {{ . }}{{ end -}}
 | 
						{{ with .Params.authors }}
 | 
				
			||||||
		{{ end -}}
 | 
							by 
 | 
				
			||||||
		</li>
 | 
							{{ delimit . ", " " and " }}
 | 
				
			||||||
 | 
						{{end}}
 | 
				
			||||||
 | 
						{{ end -}}
 | 
				
			||||||
 | 
					</li>
 | 
				
			||||||
{{- end }}
 | 
					{{- end }}
 | 
				
			||||||
</ul>
 | 
					</ul>
 | 
				
			||||||
{{- end }}
 | 
					{{- end }}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										7
									
								
								layouts/partials/footer.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								layouts/partials/footer.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					<hr>
 | 
				
			||||||
 | 
					<footer>
 | 
				
			||||||
 | 
					    Fund the web dev in XMR:
 | 
				
			||||||
 | 
					    <p id="xmr" class="copy">wallet address here</p>
 | 
				
			||||||
 | 
						<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
 | 
				
			||||||
 | 
						{{- if .Param "showrss" }}<br><br><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>{{ end }}
 | 
				
			||||||
 | 
					</footer>
 | 
				
			||||||
							
								
								
									
										20
									
								
								layouts/partials/head.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								layouts/partials/head.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,20 @@
 | 
				
			|||||||
 | 
					<head>
 | 
				
			||||||
 | 
					<title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title>
 | 
				
			||||||
 | 
					<link rel="canonical" href="{{ .Site.BaseURL }}">
 | 
				
			||||||
 | 
					<link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='{{ .Site.BaseURL }}/index.xml'>
 | 
				
			||||||
 | 
					<link rel='stylesheet' type='text/css' media='screen' href='{{ .Site.BaseURL }}/style.css'>
 | 
				
			||||||
 | 
					<link rel='stylesheet' type='text/css' href='{{ .Site.BaseURL }}/lugo.css'>
 | 
				
			||||||
 | 
					{{ with .Site.Params.favicon }}
 | 
				
			||||||
 | 
					<link rel="icon" href="{{ . }}">
 | 
				
			||||||
 | 
					{{ end -}}
 | 
				
			||||||
 | 
					<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
 | 
				
			||||||
 | 
					{{ if isset .Params "tags" }}
 | 
				
			||||||
 | 
					<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . " , " }}{{ end }}">
 | 
				
			||||||
 | 
					{{ end -}}
 | 
				
			||||||
 | 
					{{ if isset .Params "redirect" }}
 | 
				
			||||||
 | 
					<meta http-equiv="refresh" content="2; URL={{ with .Params.redirect }}{{ . }}{{ end }}">
 | 
				
			||||||
 | 
					{{ end -}}
 | 
				
			||||||
 | 
					<meta name="viewport" content="width=device-width, initial-scale=1">
 | 
				
			||||||
 | 
					<meta name="robots" content="index, follow">
 | 
				
			||||||
 | 
					<meta charset="utf-8">
 | 
				
			||||||
 | 
					</head>
 | 
				
			||||||
							
								
								
									
										5
									
								
								layouts/partials/header.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								layouts/partials/header.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,5 @@
 | 
				
			|||||||
 | 
					<header>
 | 
				
			||||||
 | 
					    <h2>
 | 
				
			||||||
 | 
					        <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
 | 
				
			||||||
 | 
					    </h2>
 | 
				
			||||||
 | 
					</header>
 | 
				
			||||||
@@ -1,8 +0,0 @@
 | 
				
			|||||||
<nav>
 | 
					 | 
				
			||||||
    <ul>
 | 
					 | 
				
			||||||
	{{- $sec := .Page.Section }}{{ $file := .File.TranslationBaseName -}}
 | 
					 | 
				
			||||||
        {{ range.Site.Menus.main.ByWeight }}{{ $base := path.Base .URL }}
 | 
					 | 
				
			||||||
	<li><a {{ if or ( eq $sec $base ) ( eq $file $base ) ( and (eq $sec "") ( eq $file "_index") (eq $base "/") ) }}class="menuactive" {{ end }}href="{{ .URL }}"><span class=pre>{{ .Pre }}</span><span class=menuname>{{ .Name }}</span></a></li>
 | 
					 | 
				
			||||||
        {{- end }}
 | 
					 | 
				
			||||||
    </ul>
 | 
					 | 
				
			||||||
</nav>
 | 
					 | 
				
			||||||
@@ -1,10 +0,0 @@
 | 
				
			|||||||
{{ if or .Next .Prev -}}
 | 
					 | 
				
			||||||
<div id="nextprev">
 | 
					 | 
				
			||||||
{{- with .Prev }}
 | 
					 | 
				
			||||||
<a href="{{ .RelPermalink}}"><div id="prevart">Previous:<br>{{.Title}}</div></a>
 | 
					 | 
				
			||||||
{{ end -}}
 | 
					 | 
				
			||||||
{{- with .Next -}}
 | 
					 | 
				
			||||||
<a href="{{ .RelPermalink}}"><div id="nextart">Next:<br>{{.Title}}</div></a>
 | 
					 | 
				
			||||||
{{ end -}}
 | 
					 | 
				
			||||||
</div>
 | 
					 | 
				
			||||||
{{ end -}}
 | 
					 | 
				
			||||||
@@ -7,7 +7,7 @@
 | 
				
			|||||||
-->
 | 
					-->
 | 
				
			||||||
<figure {{ with .Get "class" }}class="{{.}}"{{ end -}}>
 | 
					<figure {{ with .Get "class" }}class="{{.}}"{{ end -}}>
 | 
				
			||||||
	{{- with .Get "link"}}<a href="{{.}}">{{ end -}}
 | 
						{{- with .Get "link"}}<a href="{{.}}">{{ end -}}
 | 
				
			||||||
	<img src="{{ .Get "src" }}"
 | 
						<img src='{{ .Get "src" }}'
 | 
				
			||||||
	     {{- with .Get "mouse" }} title="{{.}}"{{ end -}}
 | 
						     {{- with .Get "mouse" }} title="{{.}}"{{ end -}}
 | 
				
			||||||
	     {{- with .Get "alt" }} alt="{{.}}"{{ end -}}
 | 
						     {{- with .Get "alt" }} alt="{{.}}"{{ end -}}
 | 
				
			||||||
	>
 | 
						>
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										10
									
								
								layouts/shortcodes/login.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								layouts/shortcodes/login.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,10 @@
 | 
				
			|||||||
 | 
					<div>
 | 
				
			||||||
 | 
					<link rel='stylesheet' type='text/css' media='screen' href='{{ .Site.BaseURL }}/form.css'>
 | 
				
			||||||
 | 
					<form class="spaced" method="post" action="login" enctype="application/x-www-form-urlencoded">
 | 
				
			||||||
 | 
					    <label>Login</label>
 | 
				
			||||||
 | 
					    <br>
 | 
				
			||||||
 | 
					    <input type="text" id="username" name="username" aria-autocomplete="both" placeholder="Username" autofocus autocomplete="username" required><br>
 | 
				
			||||||
 | 
					    <input type="password" id="password" name="password" placeholder="Password" autocomplete="new-password" required><br>
 | 
				
			||||||
 | 
					    <input type="submit" value="Submit">
 | 
				
			||||||
 | 
					</form>
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
							
								
								
									
										14
									
								
								layouts/shortcodes/post.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								layouts/shortcodes/post.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
				
			|||||||
 | 
					<link rel='stylesheet' type='text/css' media='screen' href='/form.css'>
 | 
				
			||||||
 | 
					<form method="post" action="post-article" enctype="application/x-www-form-urlencoded">
 | 
				
			||||||
 | 
					    <label style="display: none">Create new post:</label>
 | 
				
			||||||
 | 
					    <p>Markdown is supported!</p>
 | 
				
			||||||
 | 
					    <textarea
 | 
				
			||||||
 | 
					        accesskey="/"
 | 
				
			||||||
 | 
					        id="article"
 | 
				
			||||||
 | 
					        name="article"
 | 
				
			||||||
 | 
					        required
 | 
				
			||||||
 | 
					        maxlength="1000"
 | 
				
			||||||
 | 
					        rows="11"
 | 
				
			||||||
 | 
					        placeholder="Your super sick idea..."></textarea>
 | 
				
			||||||
 | 
					    <input type="submit" value="Post">
 | 
				
			||||||
 | 
					</form>
 | 
				
			||||||
							
								
								
									
										7
									
								
								layouts/shortcodes/roller.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								layouts/shortcodes/roller.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,7 @@
 | 
				
			|||||||
 | 
					<link rel='stylesheet' type='text/css' media='screen' href='/roller.css'>
 | 
				
			||||||
 | 
					<div class="roller-container">
 | 
				
			||||||
 | 
					{{ $s := $.Params }}
 | 
				
			||||||
 | 
					{{ range $k, $v := $s }}
 | 
				
			||||||
 | 
					    <h3 class="roller{{ $k }}">{{ $v }}</h3>
 | 
				
			||||||
 | 
					{{ end }}
 | 
				
			||||||
 | 
					</div>
 | 
				
			||||||
@@ -1,3 +0,0 @@
 | 
				
			|||||||
{{ if isset .Site.Taxonomies "tags" }}{{ if not (eq (len .Site.Taxonomies.tags) 0) }}   <ul id="tagcloud">
 | 
					 | 
				
			||||||
    {{ 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 }}</ul>{{ end }}{{ end }}
 | 
					 | 
				
			||||||
							
								
								
									
										58
									
								
								static/form.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										58
									
								
								static/form.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,58 @@
 | 
				
			|||||||
 | 
					input {
 | 
				
			||||||
 | 
					    color: #ffffff;
 | 
				
			||||||
 | 
					    margin: 0.2rem;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					textarea:focus, input:focus {
 | 
				
			||||||
 | 
					    outline-width: 0.2rem;
 | 
				
			||||||
 | 
					    outline-style: solid;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					textarea:focus {
 | 
				
			||||||
 | 
					    outline-color: #222222;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					input:focus {
 | 
				
			||||||
 | 
					    outline-color: white;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					input[type="submit"]:focus {
 | 
				
			||||||
 | 
					    outline-color: #344a70;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					input[type="submit"] {
 | 
				
			||||||
 | 
					    background-color: #344a70;
 | 
				
			||||||
 | 
					    text-align: center;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					input[type="password"], [type="text"] {
 | 
				
			||||||
 | 
					    background-color: #ffffff;
 | 
				
			||||||
 | 
					    color: #222222;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					textarea, input {
 | 
				
			||||||
 | 
					    border-radius: 0.5rem;
 | 
				
			||||||
 | 
					    border-style: hidden;
 | 
				
			||||||
 | 
					    padding: 0.75rem;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					textarea {
 | 
				
			||||||
 | 
					    background-color: #222222;
 | 
				
			||||||
 | 
					    border-style: solid;
 | 
				
			||||||
 | 
					    border-width: 0;
 | 
				
			||||||
 | 
					    resize: none;
 | 
				
			||||||
 | 
					    color: white;
 | 
				
			||||||
 | 
					    scrollbar-width: 0;
 | 
				
			||||||
 | 
					    width: 100%;
 | 
				
			||||||
 | 
					    -webkit-box-sizing: border-box;
 | 
				
			||||||
 | 
					    -moz-box-sizing: border-box;
 | 
				
			||||||
 | 
					    box-sizing: border-box;
 | 
				
			||||||
 | 
					    font-family: inherit;
 | 
				
			||||||
 | 
					    font-size: inherit;
 | 
				
			||||||
 | 
					    font-weight: inherit;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					textarea > ::placeholder {
 | 
				
			||||||
 | 
					    color: #717171;
 | 
				
			||||||
 | 
					    opacity: 1;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										46
									
								
								static/lugo.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										46
									
								
								static/lugo.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,46 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
 | 
					/* For NEXTPREV.HTML */
 | 
				
			||||||
 | 
					#nextprev {
 | 
				
			||||||
 | 
						/* The container for both the previous and next articles. */
 | 
				
			||||||
 | 
						color: black;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#nextprev a:any-link {
 | 
				
			||||||
 | 
						color: black;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#nextart {
 | 
				
			||||||
 | 
						float: left ;
 | 
				
			||||||
 | 
						text-align: left ;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#prevart {
 | 
				
			||||||
 | 
						float: right ;
 | 
				
			||||||
 | 
						text-align: right ;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#nextart,#prevart {
 | 
				
			||||||
 | 
						max-width: 33% ;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* For TAGLIST.HTML */
 | 
				
			||||||
 | 
					.taglist {
 | 
				
			||||||
 | 
						text-align: center;
 | 
				
			||||||
 | 
						clear: both;
 | 
				
			||||||
 | 
						color: rgb(64, 64, 64);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* For putting right / left boxes next to each other */
 | 
				
			||||||
 | 
					.left {
 | 
				
			||||||
 | 
						width: 45%;
 | 
				
			||||||
 | 
						padding-right: 5%;
 | 
				
			||||||
 | 
						float: left;
 | 
				
			||||||
 | 
						clear: both;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.right {
 | 
				
			||||||
 | 
						width: 45%;
 | 
				
			||||||
 | 
						padding-left: 5%;
 | 
				
			||||||
 | 
						float: right;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										71
									
								
								static/roller.css
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										71
									
								
								static/roller.css
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,71 @@
 | 
				
			|||||||
 | 
					.roller-container {display: grid; text-align: center;}
 | 
				
			||||||
 | 
					.roller0,.roller1,.roller2,.roller3,.roller4,.roller5{
 | 
				
			||||||
 | 
					    animation-iteration-count: infinite;
 | 
				
			||||||
 | 
					    animation-timing-function: cubic-bezier(1, 0, 0, 1);
 | 
				
			||||||
 | 
					    animation-duration: 6s;
 | 
				
			||||||
 | 
					    animation-direction: normal;
 | 
				
			||||||
 | 
					    transform-origin: center;
 | 
				
			||||||
 | 
					    /* works with "display: grid" to have all the words in the same place on the screen. */
 | 
				
			||||||
 | 
					    grid-row: 1;
 | 
				
			||||||
 | 
					    grid-column: 1;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.roller0 { animation-name: roll0; color: rgb(0, 182, 182)}
 | 
				
			||||||
 | 
					.roller1 { animation-name: roll1; color: rgb(173, 3, 154)}
 | 
				
			||||||
 | 
					.roller2 { animation-name: roll2; color: rgb(6, 179, 0)}
 | 
				
			||||||
 | 
					.roller3 { animation-name: roll3; color: rgb(211, 189, 0)}
 | 
				
			||||||
 | 
					.roller4 { animation-name: roll4; color: rgb(171, 0, 0)}
 | 
				
			||||||
 | 
					.roller5 { animation-name: roll5; color: rgb(255, 247, 0)}
 | 
				
			||||||
 | 
					@keyframes roll0 {
 | 
				
			||||||
 | 
						100% { opacity: 1; transform: translateY(0) rotateX(0); }
 | 
				
			||||||
 | 
						0% { opacity: 1; transform: translateY(0) rotateX(0); }
 | 
				
			||||||
 | 
						17% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						34% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						51% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						68% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						85% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@keyframes roll1 {
 | 
				
			||||||
 | 
						100% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						0% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						17% { opacity: 1; transform: translateY(0) rotateX(0); }
 | 
				
			||||||
 | 
						34% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						51% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						68% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						85% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@keyframes roll2 {
 | 
				
			||||||
 | 
						100% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						0% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						17% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						34% { opacity: 1; transform: translateY(0) rotateX(0); }
 | 
				
			||||||
 | 
						51% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						68% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						85% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@keyframes roll3 {
 | 
				
			||||||
 | 
						100% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						0% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						17% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						34% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						51% { opacity: 1; transform: translateY(0) rotateX(0); }
 | 
				
			||||||
 | 
						68% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						85% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@keyframes roll4 {
 | 
				
			||||||
 | 
						100% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						0% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						17% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						34% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						51% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						68% { opacity: 1; transform: translateY(0) rotateX(0); }
 | 
				
			||||||
 | 
						85% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					@keyframes roll5 {
 | 
				
			||||||
 | 
						100% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						0% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						17% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						34% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						51% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						68% { opacity: 0; transform: translateY(2rem) rotateX(15deg); }
 | 
				
			||||||
 | 
						85% { opacity: 1; transform: translateY(0) rotateX(0); }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
							
								
								
									
										184
									
								
								static/style.css
									
									
									
									
									
								
							
							
						
						
									
										184
									
								
								static/style.css
									
									
									
									
									
								
							@@ -1,120 +1,108 @@
 | 
				
			|||||||
 | 
					.copy:hover {
 | 
				
			||||||
 | 
					    color: #344a70;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					::-webkit-scrollbar {
 | 
				
			||||||
 | 
						width: 0;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
body {
 | 
					body {
 | 
				
			||||||
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
 | 
					    background-color: #222222;
 | 
				
			||||||
	font-size: large;
 | 
					    color: #ffffff;
 | 
				
			||||||
	background: rgb(71, 71, 71);
 | 
					    font-family: Arial, Helvetica, sans-serif;
 | 
				
			||||||
	color: black;
 | 
					    margin: 0;
 | 
				
			||||||
 | 
					    font-size: x-large;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
main {
 | 
					header {
 | 
				
			||||||
	max-width: 75%;
 | 
					    background-color: #344a70;
 | 
				
			||||||
	margin: auto;
 | 
					    margin-top: 0;
 | 
				
			||||||
 | 
					    margin-left: 0;
 | 
				
			||||||
 | 
					    text-align: center;
 | 
				
			||||||
 | 
					    padding: 0.75rem;
 | 
				
			||||||
 | 
					    font-size: xx-large;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
h1, h2, h3, h4 {
 | 
					.article-header {
 | 
				
			||||||
	text-align: center;
 | 
					    background-color: #454545;
 | 
				
			||||||
	flex: 100%;
 | 
					    color: #707070;
 | 
				
			||||||
 | 
					    margin: 2rem;
 | 
				
			||||||
 | 
					    margin-bottom: 0;
 | 
				
			||||||
 | 
					    border-top-right-radius: 0.5rem;
 | 
				
			||||||
 | 
					    border-top-left-radius: 0.5rem;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
header h1 {
 | 
					.spaced {
 | 
				
			||||||
	color: white;
 | 
					    margin: 0;
 | 
				
			||||||
}
 | 
					    padding: 1rem;
 | 
				
			||||||
 | 
					 | 
				
			||||||
header h4 {
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	The color half-way between the 
 | 
					 | 
				
			||||||
	background color and pure white
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	color: rgb(163, 163, 163);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
a:link {
 | 
					 | 
				
			||||||
	color: white;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
a:visited{
 | 
					 | 
				
			||||||
	color: rgb(174, 174, 174);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
article a:link {
 | 
					 | 
				
			||||||
	color: rgb(0, 0, 0);
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
article a:visited {
 | 
					 | 
				
			||||||
	color: rgb(64, 64, 64);
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
article {
 | 
					article {
 | 
				
			||||||
	background-color: burlywood;
 | 
					    background-color: #303030;
 | 
				
			||||||
	outline: cadetblue solid 5px;
 | 
					    padding: 1.5rem;
 | 
				
			||||||
	padding: 3%;
 | 
					    margin-left: 2rem;
 | 
				
			||||||
	border-radius: 10px;
 | 
					    margin-right: 2rem;
 | 
				
			||||||
 | 
					    text-align: left;
 | 
				
			||||||
 | 
					    border-bottom-left-radius: 0.5rem;
 | 
				
			||||||
 | 
					    border-bottom-right-radius: 0.5em;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
hr {
 | 
					hr {
 | 
				
			||||||
	border-top: 2px solid cadetblue;
 | 
					    margin: 2rem;
 | 
				
			||||||
	border-radius: 4px;
 | 
					    height: 1px;
 | 
				
			||||||
}
 | 
					    border: 0;
 | 
				
			||||||
 | 
					    border-top: 1px solid #454545;
 | 
				
			||||||
br {
 | 
					    height: 1px;
 | 
				
			||||||
	clear: both;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
pre {
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	This has to be flagged important because somewhere in hugo a style
 | 
					 | 
				
			||||||
	is being directly applied to pre blocks. Ill have to find it later.
 | 
					 | 
				
			||||||
	 */
 | 
					 | 
				
			||||||
	background-color: rgb(59, 59, 59) !important;
 | 
					 | 
				
			||||||
	padding-top: 0px;
 | 
					 | 
				
			||||||
	padding-bottom: 0px;
 | 
					 | 
				
			||||||
	padding-left: 10px;
 | 
					 | 
				
			||||||
	padding-right: 10px;
 | 
					 | 
				
			||||||
	border-radius: 8px;
 | 
					 | 
				
			||||||
	outline: cadetblue solid 3px;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
code {
 | 
					 | 
				
			||||||
	font-size: large;
 | 
					 | 
				
			||||||
	color: white;
 | 
					 | 
				
			||||||
	/*
 | 
					 | 
				
			||||||
	we need to re-define these
 | 
					 | 
				
			||||||
	for times when a single backtick is used
 | 
					 | 
				
			||||||
	*/
 | 
					 | 
				
			||||||
	background-color: rgb(59, 59, 59);
 | 
					 | 
				
			||||||
	padding-left: 3px;
 | 
					 | 
				
			||||||
	padding-right: 3px;
 | 
					 | 
				
			||||||
	padding-top: 1px;
 | 
					 | 
				
			||||||
	border-radius: 4px;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
img {
 | 
					 | 
				
			||||||
	border-radius: 4px;
 | 
					 | 
				
			||||||
	margin: 0;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
figcaption {
 | 
					 | 
				
			||||||
	color: rgb(69, 69, 69);
 | 
					 | 
				
			||||||
	font-style: italic;
 | 
					 | 
				
			||||||
	text-align: center;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
figure {
 | 
					 | 
				
			||||||
	margin: 2%;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
footer {
 | 
					footer {
 | 
				
			||||||
	padding-top: 2%;
 | 
					    color: #606060;
 | 
				
			||||||
	text-align: center;
 | 
					    text-align: center;
 | 
				
			||||||
	clear: both;
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
footer a:any-link {
 | 
					p {
 | 
				
			||||||
	color: white;
 | 
					    margin-left: 1rem;
 | 
				
			||||||
 | 
					    margin-right: 1rem;
 | 
				
			||||||
 | 
					    margin-top: 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@media only screen and (max-width: 600px) {
 | 
					h1,h2,h3,h4,h5,h6 {
 | 
				
			||||||
	main {
 | 
					    margin: 0;
 | 
				
			||||||
		max-width: 90%;
 | 
					    text-align: center;
 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					article h1 {
 | 
				
			||||||
 | 
					    margin-bottom: 1rem;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					a {
 | 
				
			||||||
 | 
					    color: #3e765d;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					a:hover {
 | 
				
			||||||
 | 
					    color: #344a70;
 | 
				
			||||||
 | 
					    text-decoration-line: none;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					header a {
 | 
				
			||||||
 | 
					    color: inherit;
 | 
				
			||||||
 | 
					    text-decoration-line: none;
 | 
				
			||||||
 | 
					    font-weight: bold;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					header a:hover {
 | 
				
			||||||
 | 
					    font-weight: bold;
 | 
				
			||||||
 | 
					    color: inherit
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					main {
 | 
				
			||||||
 | 
					    max-width: 80%;
 | 
				
			||||||
 | 
					    margin: auto;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					@media screen and (max-width: 900px) {
 | 
				
			||||||
 | 
					main {
 | 
				
			||||||
 | 
					    max-width: 100%;
 | 
				
			||||||
 | 
					    margin: auto;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Reference in New Issue
	
	Block a user