Initial commit

This commit is contained in:
Ethan Yoo 2021-10-01 12:49:55 -04:00
commit b409a5c5ff
Signed by: ethan
GPG Key ID: 70596474C5D20F85
19 changed files with 314 additions and 0 deletions

20
LICENSE Normal file
View File

@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2021 Ethan Yoo
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.

41
README.md Normal file
View File

@ -0,0 +1,41 @@
# Geronimo
This repository hosts my modified version of [smol](https://github.com/colorchestra/smol/), a theme for Hugo.
# To browse the source code
This project is pushed to two remote repositories.
* [Amolith](https://secluded.site/) maintains [NixNet](https://nixnet.services/) as an individual, hosting "a variety of services that are available for anyone to use free of charge." These services include [a Gitea instance.](https://git.nixnet.services/ethan)
* [Framasoft](https://framasoft.org/) is a French nonprofit organization actively engaged in the free culture movement and host to [a GitLab instance.](https://framagit.org/ethan)
# To submit feedback, suggest specific changes, etc.
* Email
* [Issue tracker on Framagit](https://framagit.org/ethan/hugo-src/-/issues/) for both theming and website issues
# Licensing
SPDX-License-Identifier: `MIT`
[MIT (Expat) License](https://choosealicense.com/licenses/mit/)
Copyright © 2021 Ethan Yoo
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.

19
archetypes/default.md Normal file
View File

@ -0,0 +1,19 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
tags: ['Black Lives Matter', 'Climate crisis', 'Disability', 'Education', 'Electronic Frontier Foundation (EFF)', 'Free culture', 'Free software', 'Gender', 'Health', 'Mental health', 'Miscellaneous', 'Public policy']
categories: ['August 2021']
year: ['2021']
slug: Hugo will hyphenate it
description: "I add a question, quote, or summary."
---
[Last, F. (Year, Month Date). Title. *The New York Times.*](https://www.nytimes.com/)
> *Block quote*
[Last, F. (Year, Month Date). *Title.* National Public Radio.](https://text.npr.org/)
> *Block quote*
Consider adding related links, pictures, or posts!

6
layouts/404.html Normal file
View File

@ -0,0 +1,6 @@
{{ define "main" }}
<main>
<br>
<strong>Page not found</strong>
</main>
{{- end }}

View File

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title itemprop="name">{{ .Title }} | {{ .Site.Title }}</title>
<meta property="og:title" content="{{ .Title }} | {{ .Site.Title }}" />
{{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }}
{{ with .Params.date }}<meta name="og:type" content="article" />{{ else }}<meta name="og:type" content="website" />{{end}}
{{- with .Description }}
<meta name="description" content="{{ . }}">
<meta property="og:description" content="{{ . }}"/>
{{ else }}
<meta name="description" content="{{ .Site.Params.Description }}">
<meta property="og:description" content="{{ .Site.Params.Description }}"/>
{{- end }}
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
{{- with .RelPermalink }}
<meta name="url" content="{{ . }}" />
<meta property="og:url" content="{{ . }}" />
{{- end }}
<link rel="openid.delegate" href="https://ethanyoo.com/" />
<link rel="openid.server" href="https://openid.indieauth.com/openid" />
<link rel="webmention" href="https://webmention.io/ethanyoo.com/webmention" />
{{- with .OutputFormats.Get "RSS" -}}{{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}{{ end }}
<style>body{background:#10151a}html{visibility:hidden;opacity:0;}</style>
</head>
<body>
{{- if not .IsHome }}{{ partial "header" . }}{{ end }}
{{- if .IsHome }}{{- block "header" . }}{{ end }}
{{- end }}
{{- block "main" . }}{{ end }}
<link rel="stylesheet" href="/css/style.css?rnd={{ now.Unix }}">
{{ if not .IsHome }}{{ partial "footer" . }}
{{ end }}
</body>
</html>

View File

@ -0,0 +1,21 @@
{{ define "main" }}
<main>
{{ $listtitle := .Title }}{{ if or .Title .Content }}
<div>
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
{{ with .Content }}<div>{{ . }}</div>{{ end }}
</div>
{{- end }}
<p><strong>Because I post <a href="/links/">current events</a>, it might be helpful to browse <a href="/categories/">by month</a> or <a href="/tags/">by tag</a>.</strong></p>
<ul>
{{ range .Pages }}
<li>
<div class="post-title">{{ if eq $listtitle "Links" }}{{ .Date.Format "January 2006" }} <a href="{{ .RelPermalink }}">{{.Title }}</a>{{ else }}<a href="{{ .RelPermalink }}">{{.Title }}</a>{{ end }}</div>
</li>
{{ end }}
</ul>
</main>
{{ end }}

View File

@ -0,0 +1,12 @@
{{ define "main" }}
<main>
<article>
<h1>{{ .Title }}</h1>
<div>
{{ .Content }}
</div>
</article>
</main>
{{ partial "sidebar.html" . }}
<p><strong>I last updated this page with <a href="https://git.nixnet.services/ethan/ethanyoo.com/commit/{{ .GitInfo.Hash }}"><code> commit {{ .GitInfo.AbbreviatedHash }}</code></a> on {{ .Lastmod.Format "January 2, 2006" }}.</strong></p>
{{ end }}

39
layouts/_default/rss.xml Normal file
View File

@ -0,0 +1,39 @@
{{- $pctx := . -}}
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
{{- $pages := slice -}}
{{- if or $.IsHome $.IsSection -}}
{{- $pages = $pctx.RegularPages -}}
{{- else -}}
{{- $pages = $pctx.Pages -}}
{{- end -}}
{{- $limit := .Site.Config.Services.RSS.Limit -}}
{{- if ge $limit 1 -}}
{{- $pages = $pages | first $limit -}}
{{- end -}}
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
<link>{{ .Permalink }}</link>
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
<language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" | safeHTML }}</lastBuildDate>{{ end }}
{{- with .OutputFormats.Get "RSS" -}}
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
{{- end -}}
{{ range $pages }}
<item>
<title>{{ .Title }}</title>
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 MST" | safeHTML }}</pubDate>
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
<guid>{{ .Permalink }}</guid>
<description>{{ .Content | html }}</description>
</item>
{{ end }}
</channel>
</rss>

View File

@ -0,0 +1,16 @@
{{ define "main" }}
<main>
<article>
<h1>{{ .Title }}</h1>
<b><time>{{ dateFormat "2006-01-02 15:04 MST" .Date.Local }}</time></b>
<a href="/tags/">Tags</a>:
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}.</a>
{{ end }}
<div>
{{ .Content }}
</div>
</article>
</main>
{{ partial "sidebar.html" . }}
{{ end }}

View File

@ -0,0 +1,11 @@
<article>
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
<b><time>{{ .Date.Format (default "2006-01-02 15:04 MST" .Site.Params.dateFmt) }}</time></b>
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
<div>
{{ .Summary }}
{{ if .Truncated }}<a href="{{ .Permalink }}">Read more?</a>{{ end }}
</div>
</article>

9
layouts/index.html Normal file
View File

@ -0,0 +1,9 @@
{{ define "main" }}
<main>
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) }}
{{ range $paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
{{ partial "pagination.html" . }}
</main>
{{ end }}

View File

@ -0,0 +1,9 @@
<footer>
<p>&copy; {{ now.Year }} <a href="{{ .Site.BaseURL }}"><b>{{ .Site.Title }}</b></a>.
{{- range .Site.Menus.footer }}
<a href="{{ .URL }}"><b>{{ .Name }}</b></a>.
{{- end }}
</p>
<a class="link-000" href="https://ForTheBadge.com/"><img src="/img/built-with-love.svg" alt="This site was built with love, using Git and Hugo." title="I also used Git and Hugo." /></a>
<a class="link-000" href="{{ .Site.Params.license }}"><img src="/img/CC-BY-SA.svg" alt="Original content by {{ .Site.Params.author }} is licensed under {{ .Site.Copyright }}" title="{{ .Site.Params.copyrightMessage }}" /></a>
</footer>

View File

@ -0,0 +1,11 @@
<header>
<h1><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1>
<div class="subtitle">{{ .Site.Params.subtitle }}</div>
<nav><p><b>
<a href="/">Start</a>.
{{- with .Site.Menus.main }}{{ range . }}
<a href="{{ .URL | relURL }}">{{ .Name }}</a>.
{{- end }}
</b></p></nav>
{{- end }}
</header>

View File

@ -0,0 +1,9 @@
<div>
{{ if .Paginator.HasPrev }}
<a href="{{ .Paginator.Prev.URL }}">Previous</a>
{{ end }}
{{ .Paginator.PageNumber }} of {{ .Paginator.TotalPages }}
{{ if .Paginator.HasNext }}
<a href="{{ .Paginator.Next.URL }}">Next page</a>
{{ end }}
</div>

View File

@ -0,0 +1,12 @@
<aside>
<div>
<div><h3>Latest posts</h3></div>
<div>
<ul>
{{- range first 2 .Site.RegularPages }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{- end }}
</ul>
</div>
</div>
</aside>

21
static/css/style.css Normal file
View File

@ -0,0 +1,21 @@
/* Body */
a{text-decoration:none;}
body{background:#10151a;color:#d3dae3;font:1em/1.5 sans-serif;margin:2em auto;max-width:50em;padding:0 2em;}
header a:link, footer a:link {color:#FFF;}
a:link{color:#ace;}a:hover {background:#2b5278;text-decoration:underline dotted;border:1px solid;}a:visited{color:#FFF;}
main h1,h2{text-align:center;}
h1{font-size:2.1em;}h2{font-size:1.8em;}h3{font-size:1.5em;}
article, main {padding:4px 2px;}
blockquote{padding:0.5em 1.5em;background:#EEE;color:#000;border-radius:4px;}
code{background:#000;font:1em/1.5 monospace, monospace;padding:2px}
/* Light theme */
@media(prefers-color-scheme:light){body{background:#333;color:#FFF;}main a:link{color:#bdf;}main a:visited{color:#ccf;}}
/* Classes */
a.link-000{background:#000;border:none;}
.center{display:block;margin-left:auto;margin-right:auto;text-align:center;}
img[src$='#center']{display:block;margin-left:auto;margin-right:auto;}
.post-title{line-height:1.8;}
.subtitle{float:right;}
html{overflow-y:scroll;visibility:visible;opacity:1;}

1
static/img/CC-BY-SA.svg Normal file
View File

@ -0,0 +1 @@
<svg width="230" height="35" xmlns="http://www.w3.org/2000/svg"><path d="M22 0h209v35H22z" fill="#1c1c1d"/><path d="M0 .029h184v35H0z" fill="#b0aeaf"/><path d="M203 16a4.3 4.3 0 00-1.3-.28.9.9 0 00-.51.13.41.41 0 00-.19.37.57.57 0 00.36.52 6.4 6.4 0 001.1.4 11 11 0 011.5.51 2.7 2.7 0 011 .79 2.2 2.2 0 01.43 1.4 2.4 2.4 0 01-.46 1.5 2.8 2.8 0 01-1.2.91 4.9 4.9 0 01-1.8.3 6.7 6.7 0 01-2.2-.37 6 6 0 01-1.9-1l.94-1.9a5.6 5.6 0 001.6.93 4.3 4.3 0 001.6.38 1.1 1.1 0 00.64-.16.51.51 0 00.23-.44.58.58 0 00-.37-.53 6.3 6.3 0 00-1.2-.39 11 11 0 01-1.5-.47 2.6 2.6 0 01-1-.76 2.1 2.1 0 01-.42-1.4 2.4 2.4 0 01.43-1.4 2.7 2.7 0 011.2-.93 4.8 4.8 0 011.8-.32 6.8 6.8 0 011.9.27 6.2 6.2 0 011.6.71l-.92 1.9a8.1 8.1 0 00-1.5-.67zm12 6.4l-.49-1.3h-3.4l-.5 1.3h-2.6l3.6-8.4h2.6l3.5 8.4zm-3.2-3.2h2l-1-2.7zm-191 .39a3.1 3.1 0 01-1 2.1 3.4 3.4 0 01-2.3.76 3.3 3.3 0 01-1.8-.48 3.2 3.2 0 01-1.2-1.4 5 5 0 01-.44-2.1v-.8a5 5 0 01.43-2.1 3.2 3.2 0 011.2-1.4 3.4 3.4 0 011.8-.5 3.3 3.3 0 012.3.76 3.2 3.2 0 011 2.2h-1.5a2.1 2.1 0 00-.54-1.3 1.8 1.8 0 00-1.3-.41 1.7 1.7 0 00-1.5.71 3.5 3.5 0 00-.53 2.1v.76a3.7 3.7 0 00.5 2.1 1.6 1.6 0 001.4.73 1.9 1.9 0 001.3-.39 2 2 0 00.56-1.3zm7.1-.5h-1.7v3.3h-1.5v-8.5h3a3.5 3.5 0 012.3.66 2.3 2.3 0 01.8 1.9 2.4 2.4 0 01-.41 1.4 2.6 2.6 0 01-1.2.89l1.9 3.6v.075h-1.6zm-1.7-1.2h1.5a1.7 1.7 0 001.2-.38 1.3 1.3 0 00.42-1 1.4 1.4 0 00-.39-1.1 1.7 1.7 0 00-1.2-.39h-1.6zm14 .67h-3.5v2.6h4.1v1.2h-5.6v-8.5h5.5v1.2h-4.1v2.4h3.5zm9.2 1.8h-3.3l-.7 2h-1.5l3.2-8.5h1.3l3.2 8.5h-1.5zm-2.9-1.2H49l-1.2-3.5zm14-4.2h-2.7v7.3h-1.5v-7.3h-2.6v-1.2h6.8zm5.3 7.3h-1.5v-8.5h1.5zm7.5-1.9l2.2-6.7h1.6l-3.1 8.5h-1.4l-3.1-8.5h1.6zm12-2h-3.5v2.6h4.1v1.2h-5.6v-8.5h5.5v1.2h-4.1v2.4h3.5zm17 1a3.1 3.1 0 01-1 2.1 3.4 3.4 0 01-2.3.76 3.3 3.3 0 01-1.8-.48 3.2 3.2 0 01-1.2-1.4 5 5 0 01-.44-2.1v-.8a5 5 0 01.43-2.1 3.2 3.2 0 011.2-1.4 3.4 3.4 0 011.8-.5 3.3 3.3 0 012.3.76 3.2 3.2 0 011 2.2h-1.5a2.1 2.1 0 00-.54-1.3 1.8 1.8 0 00-1.3-.41 1.7 1.7 0 00-1.5.71 3.5 3.5 0 00-.53 2.1v.76a3.7 3.7 0 00.5 2.1 1.6 1.6 0 001.4.73 1.9 1.9 0 001.3-.39 2 2 0 00.56-1.3zm11-1.3a5.2 5.2 0 01-.43 2.2 3.3 3.3 0 01-1.2 1.5 3.6 3.6 0 01-3.7 0 3.3 3.3 0 01-1.3-1.4 5.1 5.1 0 01-.45-2.2v-.48a5.2 5.2 0 01.44-2.2 3.3 3.3 0 011.2-1.5 3.6 3.6 0 013.7-.006 3.3 3.3 0 011.2 1.4 5.2 5.2 0 01.44 2.2zm-1.5-.44a3.7 3.7 0 00-.54-2.2 1.9 1.9 0 00-3 0 3.7 3.7 0 00-.55 2.1v.49a3.7 3.7 0 00.55 2.2 1.8 1.8 0 001.5.77 1.7 1.7 0 001.5-.75 3.8 3.8 0 00.53-2.2zm7.5-4l2.5 6.5 2.5-6.5h1.9v8.5h-1.5v-2.8l.15-3.8-2.5 6.6h-1.1l-2.5-6.6.15 3.8v2.8h-1.5v-8.5zm13 0l2.5 6.5 2.5-6.5h1.9v8.5h-1.5v-2.8l.15-3.8-2.5 6.6h-1.1l-2.5-6.6.15 3.8v2.8h-1.5v-8.5zm18 4.5a5.2 5.2 0 01-.43 2.2 3.3 3.3 0 01-1.2 1.5 3.6 3.6 0 01-3.7 0 3.3 3.3 0 01-1.3-1.4 5.1 5.1 0 01-.45-2.2v-.48a5.2 5.2 0 01.44-2.2 3.3 3.3 0 011.2-1.5 3.6 3.6 0 013.7-.006 3.3 3.3 0 011.2 1.4 5.2 5.2 0 01.44 2.2zm-1.5-.44a3.7 3.7 0 00-.54-2.2 1.9 1.9 0 00-3 0 3.7 3.7 0 00-.55 2.1v.49a3.7 3.7 0 00.55 2.2 1.8 1.8 0 001.5.77 1.7 1.7 0 001.5-.75 3.8 3.8 0 00.53-2.2zm12 4.5h-1.5l-3.8-6.1v6.1H154v-8.5h1.5l3.8 6.1v-6.1h1.5zm8.9-2.2a1 1 0 00-.4-.87 4.8 4.8 0 00-1.4-.62 6.9 6.9 0 01-1.6-.69 2.2 2.2 0 01-1.2-1.9 2.1 2.1 0 01.84-1.7 3.4 3.4 0 012.2-.67 3.7 3.7 0 011.6.33 2.6 2.6 0 011.1.94 2.4 2.4 0 01.4 1.3h-1.5a1.3 1.3 0 00-.42-1 1.7 1.7 0 00-1.2-.38 1.8 1.8 0 00-1.1.31 1 1 0 00-.4.86.93.93 0 00.43.78 5 5 0 001.4.61 6.5 6.5 0 011.6.67 2.5 2.5 0 01.88.87 2.3 2.3 0 01.28 1.1 2 2 0 01-.82 1.7 3.5 3.5 0 01-2.2.63 4.2 4.2 0 01-1.7-.34 2.9 2.9 0 01-1.2-.95 2.4 2.4 0 01-.43-1.4h1.5a1.4 1.4 0 00.48 1.1 2.1 2.1 0 001.4.4 1.8 1.8 0 001.2-.31 1 1 0 00.39-.83z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1 @@
<svg width="152" height="35" xmlns="http://www.w3.org/2000/svg"><path d="M22 0h130v35H22z" fill="#d15d27"/><path d="M0 0h112.5v35H0z" fill="#e36d25"/><path d="M14 22v-8.5h2.9a3.6 3.6 0 012.2.58 2 2 0 01.76 1.7 1.8 1.8 0 01-.32 1.1 2 2 0 01-.93.73 1.9 1.9 0 011.1.71 2.1 2.1 0 01.38 1.2 2.3 2.3 0 01-.77 1.8 3.4 3.4 0 01-2.2.64zm1.5-4.9h1.4a1.7 1.7 0 001.1-.31 1.1 1.1 0 00.39-.89 1.1 1.1 0 00-.36-.91 1.8 1.8 0 00-1.1-.28h-1.4zm0 1.1v2.6h1.6a1.6 1.6 0 001.1-.34 1.2 1.2 0 00.39-.96 1.2 1.2 0 00-1.4-1.4zm15-4.7v5.7a2.8 2.8 0 01-.87 2.2 3.3 3.3 0 01-2.3.79 3.3 3.3 0 01-2.3-.78 2.8 2.8 0 01-.86-2.2v-5.7h1.5v5.7a1.8 1.8 0 00.43 1.3 1.7 1.7 0 001.3.45q1.7 0 1.7-1.8v-5.6zm5.8 8.5h-1.5v-8.5h1.5zm6-1.2h3.9V22h-5.4v-8.5h1.5zm13-6.1h-2.7V22h-1.5v-7.3h-2.6v-1.2h6.8zm16 5.2l1.3-6.4h1.5l-2 8.5h-1.4l-1.6-6.2-1.7 6.2H66l-2-8.5h1.5l1.3 6.4 1.6-6.4h1.2zm8.1 2.1h-1.5v-8.5h1.5zm10-7.3h-2.7V22h-1.5v-7.3h-2.6v-1.2h6.8zm10 7.3h-1.5v-3.8h-3.8V22h-1.5v-8.5h1.5v3.6h3.8v-3.6h1.5zm38-9.1a3.6 3.6 0 00-4.8 0l-.9.82-.9-.82a3.6 3.6 0 00-4.8 0 3.3 3.3 0 000 4.9l5.7 5.2 5.7-5.2a3.3 3.3 0 000-4.9z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

17
theme.toml Normal file
View File

@ -0,0 +1,17 @@
name = "geronimo"
license = "MIT"
licenselink = "https://framagit.org/ethan/geronimo/~/blob/main/LICENSE"
description = "Hugo theme based on smol"
homepage = "https://framagit.org/ethan/geronimo"
tags = []
features = []
min_version = "0.41.0"
[author]
name = "Ethan Yoo"
homepage = "https://ethanyoo.com/"
[original]
name = "morph"
homepage = "https://morph.sh/"
repo = "https://github.com/colorchestra/smol"