Compare commits

..

No commits in common. "8ae51c55f7abf643a3caec691a2483418a69bf38" and "252c7e68c5678edd5799466bad21777e44fe23e3" have entirely different histories.

6 changed files with 21 additions and 66 deletions

View file

@ -1,27 +0,0 @@
# nextDESIGN v9
## Version 9.4 (2021-08-18)
- Adjusted font sizes
- Justified text alignment
- Make "read more posts" link on main page a button
- Get about text through variable
- Rework "commenting" system
## Version 9.3 (2021-05-04)
- Added Plausible analytics script
- Switched monospace font from Hermit to JetBrains Mono
## Version 9.2 (2020-09-23)
- Provide dark color scheme
## Version 9.1.1 (2020-08-29)
- Add link to Gitea
- Reorder "other places" section
## Version 9.1 (2020-05-15)
- Initial release

View file

@ -1,6 +1,6 @@
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2020-2021 Marcel Kapfer Copyright (c) 2020 Marcel Kapfer
Permission is hereby granted, free of charge, to any person obtaining a copy of 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 this software and associated documentation files (the "Software"), to deal in

View file

@ -31,21 +31,14 @@ $s-content: 1000px;
$s-nav-title: 24px; $s-nav-title: 24px;
$s-border: 2px; $s-border: 2px;
$s-border-radius: 2px; $s-border-radius: 2px;
$s-comment-margin-top: 60px;
$s-font-size: 18px;
$p-box-shadow: 1px 1px 5px #888; $p-box-shadow: 1px 1px 5px #888;
html {
font-size: $s-font-size;
}
body { body {
background-color: $c-bg; background-color: $c-bg;
color: $c-font; color: $c-font;
font-family: "Raleway", sans-serif; font-family: "Raleway", sans-serif;
line-height: 1.5; line-height: 1.5;
text-align: justify;
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
background-color: $c-bg-inv; background-color: $c-bg-inv;
@ -158,7 +151,7 @@ main {
} }
h1, h2 { h1, h2 {
font-size: 3rem; font-size: 3em;
margin: 20px 0 0; margin: 20px 0 0;
padding: 0; padding: 0;
text-decoration: underline; text-decoration: underline;
@ -171,7 +164,7 @@ main {
} }
h2 { h2 {
font-size: 2rem; font-size: 2em;
margin: 40px 0 0; margin: 40px 0 0;
text-decoration-thickness: 3px; text-decoration-thickness: 3px;
@ -190,14 +183,6 @@ main {
} }
} }
h3 {
font-size: 1.3rem;
}
h4 {
font-size: 1.1rem;
}
figure { figure {
margin: 0; margin: 0;
@ -251,18 +236,13 @@ main {
} }
} }
.comment { .comment-notice {
font-size: 0.95rem; margin-top: 50px;
margin-top: $s-comment-margin-top; font-size: 14px;
text-align: center;
a {
font-size: 1.1rem;
}
} }
#tags > a, #categories > a { #tags > a, #categories > a {
font-size: 0.9rem; font-size: 14px;
color: #fff; color: #fff;
padding: 4px 8px; padding: 4px 8px;
border-radius: 20px; border-radius: 20px;

View file

@ -21,10 +21,9 @@
</p> </p>
{{ .Content }} {{ .Content }}
{{ if .Site.Params.comment.comments }} {{ with .Site.Params.comment.commentmail }}
<div class="comment"> <p class="comment-notice">
<p>I would like to hear what you think about this post. Feel free to write me a mail!</p> If you would like to comment on this post, feel free to write me a mail at {{ . }}!
<a class="btn" href="mailto:comment@mmk2410.org?subject=Reply to: &quot;{{ .Page.Title }}&quot;">Reply by mail</a> </p>
</div>
{{ end }} {{ end }}
{{ end }} {{ end }}

View file

@ -1,12 +1,12 @@
{{ define "main" }} {{ define "main" }}
<header> <header>
<h1>{{ .Site.Title }}</h1> <h1>{{ .Site.Title }}</h1>
<h3>{{ .Site.Params.about }}</h3> <h3>I compose music and write stuff</h3>
</header> </header>
{{ .Content }} {{ .Content }}
<h4>Read more from me</h3> <h3>Read more from me</h3>
{{ with .Site.GetPage "/about" }} {{ with .Site.GetPage "/about" }}
<a class="btn" href="{{ .Permalink }}">More about me</a> <a class="btn" href="{{ .Permalink }}">More about me</a>
@ -20,7 +20,7 @@
<a class="btn" href="{{ .Permalink }}">My projects</a> <a class="btn" href="{{ .Permalink }}">My projects</a>
{{ end }} {{ end }}
<h4>Find me on other places</h3> <h3>Find me on other places</h3>
{{ with .OutputFormats.Get "rss" }} {{ with .OutputFormats.Get "rss" }}
<a class="btn" href="{{ .Permalink }}">RSS Feed</a> <a class="btn" href="{{ .Permalink }}">RSS Feed</a>
@ -38,7 +38,7 @@
<a class="btn" href="{{ . }}">Repos on GitLab</a> <a class="btn" href="{{ . }}">Repos on GitLab</a>
{{- end -}} {{- end -}}
<h2>Latest Posts</h2> <h2>Latest Post</h2>
{{ range first 3 .Site.RegularPages }} {{ range first 3 .Site.RegularPages }}
<article> <article>
@ -48,6 +48,6 @@
{{ end }} {{ end }}
{{ with .Site.GetPage "/blog" }} {{ with .Site.GetPage "/blog" }}
<a class="btn" href="{{ .Permalink }}">Read more posts</a> <a href="{{ .Permalink }}">Read more posts</a>
{{ end }} {{ end }}
{{ end }} {{ end }}

View file

@ -1,11 +1,14 @@
# theme.toml template for a Hugo theme
# See https://github.com/gohugoio/hugoThemes#themetoml for an example
name = "nextDESIGN" name = "nextDESIGN"
license = "MIT" license = "MIT"
licenselink = "https://gitlab.com/mmk2410/nextDESIGN/blob/main/LICENSE" licenselink = "https://gitlab.com/mmk2410/nextDESIGN/blob/master/LICENSE"
description = "Simple design created for mmk2410.org" description = "Simple design created for mmk2410.org"
homepage = "https://mmk2410.org/" homepage = "https://mmk2410.org/"
tags = [] tags = []
features = [] features = []
min_version = "0.87.0" min_version = "0.41.0"
[author] [author]
name = "Marcel Kapfer" name = "Marcel Kapfer"