commit e9839679e648c0fc115888ef5c12135d94e838f5 Author: Marcel Kapfer Date: Fri May 15 20:17:59 2020 +0200 Initial commit diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b3b18bb --- /dev/null +++ b/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2020 Marcel Kapfer + +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. diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..ac36e06 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,2 @@ ++++ ++++ diff --git a/assets/css/main.scss b/assets/css/main.scss new file mode 100644 index 0000000..a516d55 --- /dev/null +++ b/assets/css/main.scss @@ -0,0 +1,252 @@ +/* nextDESIGN v9 + * + * nextDESIGN is a personal web design for mmk2410.org. + * The current version (v9) is focused in simplicity and minimalism. + * + * 2020 © Marcel Kapfer + * Licensed under the MIT License + */ + +/*************** + * Variables + ***************/ + +$c-bg: #fafafa; +$c-bg-main: #fff; +$c-primary: #4d3c9b; +$c-bg-category: #4d3c9b; +$c-bg-tag: #8171c8; +$c-font: #333; +$c-nav-font: #f4f4f4; +$c-btn-font: $c-nav-font; +$c-btn-bg: $c-bg-category; + +$s-content: 1000px; +$s-nav-title: 24px; +$s-border: 2px; +$s-border-radius: 2px; + +$p-box-shadow: 1px 1px 5px #888; + +body { + background-color: $c-bg; + color: $c-font; + font-family: "Raleway", sans-serif; + line-height: 1.5; +} + +body > header { + align-items: center; + color: $c-nav-font; + display: flex; + background-color: $c-primary; + justify-content: space-between; + padding: 20px 40px; + + #title { + font-size: $s-nav-title; + font-weight: 700; + } + + a { + color: $c-nav-font; + text-decoration: none; + + &:hover { + text-decoration: underline; + } + } + + nav { + display: inline; + + ul { + margin: 0; + padding: 0; + float: right; + + li { + display: inline; + padding-right: 10px; + + &:last-child { + padding-right: 0; + } + } + } + } + + .show-menu { + display: none; + margin-top: 10px; + padding: 10px; + text-align: center; + width: 100%; + } + + input[type=checkbox] { + display: none + } + + @media screen and (max-width: 1000px) { + border-radius: initial; + flex-direction: column; + + nav { + display: none; + text-align: center; + width: 100%; + + ul { + float: unset; + + li { + display: block; + padding: 0; + + a { + display: block; + padding: 10px 0; + } + } + } + } + + .show-menu { + display: block; + } + + input[type=checkbox]:checked ~ nav { + display: block; + } + } +} + +main { + background-color: $c-bg-main; + border: solid $s-border $c-primary; + box-shadow: $p-box-shadow; + margin: 100px auto; + max-width: 1000px; + padding: 40px; + + article { + margin: 40px 0; + } + + h1, h2 { + font-size: 3em; + margin: 20px 0 0; + padding: 0; + text-decoration: underline; + text-decoration-color: $c-primary; + text-decoration-thickness: 4px; + } + + h2 { + font-size: 2em; + margin: 40px 0 0; + text-decoration-thickness: 3px; + + a { + color: $c-font; + text-decoration-color: $c-primary; + + &:hover { + text-decoration: none; + } + } + } + + figure { + margin: 0; + + img { + width: 100% + } + } + + a { + color: $c-primary; + text-decoration: none; + + &:hover { + text-decoration: underline; + } + } + + code { + font-family: "Hermit", monospace; + } + + .btn { + color: $c-btn-font; + background: $c-btn-bg; + padding: 8px 16px; + border-radius: 20px; + line-height: 3; + white-space: nowrap; + } + + .highlight > pre { + border-radius: 2px; + overflow-y: auto; + padding: 20px; + } + + .pagination { + text-align: center; + } + + .page-item { + display: inline; + padding-right: 10px; + + &:last-child { + padding-right: 0; + } + } + + .comment-notice { + margin-top: 50px; + font-size: 14px; + } + + #tags > a, #categories > a { + font-size: 14px; + color: #fff; + padding: 4px 8px; + border-radius: 20px; + white-space: nowrap; + } + + #tags > a { + background: $c-bg-tag; + } + + #categories > a { + background: $c-bg-category; + } + + @media screen and (max-width: 1000px) { + border: none; + box-shadow: none; + margin: 0 auto; + } +} + +footer { + background-color: $c-primary; + color: $c-nav-font; + padding: 40px; + text-align: center; + + a { + color: $c-nav-font; + text-decoration: none; + + &:hover { + text-decoration: underline; + } + } +} diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..a8ef6d1 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,15 @@ + + + + {{ partial "head.html" . }} + + + {{- partial "header.html" . -}} +
+ {{- block "main" . }}{{- end }} +
+
+ {{- partial "footer.html" . -}} +
+ + diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..1160361 --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,11 @@ +{{ define "main" }} +

{{ .Title }}

+ {{ .Content }} +
+ {{ range .Paginator.Pages }} +

{{ .Title }}

+ {{ partial "list-post.html" . }} + {{ end }} +
+ {{ template "_internal/pagination.html" . }} +{{ end }} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..ece5c43 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,29 @@ +{{ define "main" }} +

{{ .Title }}

+

{{.Date.Format "2006-01-02"}}

+

{{ .WordCount }} words, ~ {{ .ReadingTime }} min reading time

+ +

+ {{ with .Params.categories }} + + {{ range . }} + {{ . }} + {{ end }} + + {{ end }} + {{ with .Params.tags }} + + {{ range . }} + {{ . }} + {{ end }} + + {{ end }} +

+ {{ .Content }} + + {{ with .Site.Params.comment.commentmail }} +

+ If you would like to comment on this post, feel free to write me a mail at {{ . }}! +

+ {{ end }} +{{ end }} diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..d5d30ea --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,52 @@ +{{ define "main" }} +
+

{{ .Site.Title }}

+

I compose music and write stuff

+
+ + {{ .Content }} + +

Read more from me

+ + {{ with .Site.GetPage "/about" }} + More about me + {{ end }} + + {{ with .Site.GetPage "/blog" }} + My blog + {{ end }} + + {{ with .Site.GetPage "/projects" }} + My projects + {{ end }} + +

Find me on other places

+ + {{ with .Site.Params.social.mastodon }} + Mastodon + {{- end -}} + {{ with .Site.Params.social.twitter }} + Twitter + {{- end -}} + + {{ with .Site.Params.social.git }} + Git Repos + {{- end -}} + + {{ with .OutputFormats.Get "rss" }} + RSS + {{- end -}} + +

Latest Post

+ + {{ range first 3 .Site.RegularPages }} + + {{ end }} + + {{ with .Site.GetPage "/blog" }} + Read more posts + {{ end }} +{{ end }} diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..0db3c6b --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,16 @@ +

+ {{ with .Site.Params.copyrighthtml }} + {{ . | safeHTML }} + {{ end }} +

+{{ with .Site.GetPage "/imprint" }} +

+ {{ .Site.Params.imprinttext }} +

+{{ end }} +

Last updated: {{ .Lastmod.Format "2006-01-02" }} + {{ $giturl := .Site.Params.giturl }} + {{- with .GitInfo }} + ({{ .AbbreviatedHash }}) + {{- end -}} +

diff --git a/layouts/partials/head.html b/layouts/partials/head.html new file mode 100644 index 0000000..4ca6fab --- /dev/null +++ b/layouts/partials/head.html @@ -0,0 +1,31 @@ + + +{{ if .IsHome -}} + {{ .Site.Title }} +{{- else -}} + {{ .Site.Title }} - {{ .Title }} +{{- end }} + + + + + + + +{{- $style := resources.Get "css/main.scss" | toCSS | minify | fingerprint }} + + +{{ range .AlternativeOutputFormats -}} + {{ printf `` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} +{{ end -}} + +{{- template "_internal/opengraph.html" . }} + +{{- template "_internal/twitter_cards.html" . -}} + + + + + + + diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..0b1b125 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,14 @@ +
+ {{ .Site.Title }} + + + +
diff --git a/layouts/partials/list-post.html b/layouts/partials/list-post.html new file mode 100644 index 0000000..bec193b --- /dev/null +++ b/layouts/partials/list-post.html @@ -0,0 +1,21 @@ +

{{.Date.Format "2006-01-02"}}

+

+ {{ with .Params.categories }} + + {{ range . }} + {{ . }} + {{ end }} + + {{ end }} + {{ with .Params.tags }} + + {{ range . }} + {{ . }} + {{ end }} + + {{ end }} +

+{{ .Summary }} +{{- if .Truncated -}} +

Read more

+{{- end -}} diff --git a/static/css/fonts.css b/static/css/fonts.css new file mode 100644 index 0000000..21fc944 --- /dev/null +++ b/static/css/fonts.css @@ -0,0 +1,84 @@ +/************** + * Raleway + **************/ + +/* raleway-regular - latin */ +@font-face { + font-family: 'Raleway'; + font-style: normal; + font-weight: 400; + src: local('Raleway'), local('Raleway-Regular'), + url('/fonts/raleway-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/raleway-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} +/* raleway-italic - latin */ +@font-face { + font-family: 'Raleway'; + font-style: italic; + font-weight: 400; + src: local('Raleway Italic'), local('Raleway-Italic'), + url('/fonts/raleway-v14-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/raleway-v14-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} +/* raleway-700 - latin */ +@font-face { + font-family: 'Raleway'; + font-style: normal; + font-weight: 700; + src: local('Raleway Bold'), local('Raleway-Bold'), + url('/fonts/raleway-v14-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/raleway-v14-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} +/* raleway-700italic - latin */ +@font-face { + font-family: 'Raleway'; + font-style: italic; + font-weight: 700; + src: local('Raleway Bold Italic'), local('Raleway-BoldItalic'), + url('/fonts/raleway-v14-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/raleway-v14-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} + +/************** + * Hermit + **************/ + +/* hermit */ +@font-face { + font-family: 'Hermit'; + font-style: normal; + font-weight: 400; + src: local('Hermit'), + url('/fonts/Hermit-Regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/Hermit-Regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} + +/* hermit italic */ +@font-face { + font-family: 'Hermit'; + font-style: italic; + font-weight: 400; + src: local('Hermit'), + url('/fonts/Hermit-RegularItalic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/Hermit-RegularItalic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} + +/* hermit bold */ +@font-face { + font-family: 'Hermit'; + font-style: normal; + font-weight: 700; + src: local('Hermit'), + url('/fonts/Hermit-Bold.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/Hermit-Bold.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} + +/* hermit bold italic */ +@font-face { + font-family: 'Hermit'; + font-style: italic; + font-weight: 700; + src: local('Hermit'), + url('/fonts/Hermit-BoldItalic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/Hermit-BoldItalic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} diff --git a/static/css/normalize.css b/static/css/normalize.css new file mode 100644 index 0000000..192eb9c --- /dev/null +++ b/static/css/normalize.css @@ -0,0 +1,349 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} diff --git a/static/fonts/Hermit-Bold.woff b/static/fonts/Hermit-Bold.woff new file mode 100644 index 0000000..3a98d4f Binary files /dev/null and b/static/fonts/Hermit-Bold.woff differ diff --git a/static/fonts/Hermit-Bold.woff2 b/static/fonts/Hermit-Bold.woff2 new file mode 100644 index 0000000..adf8c85 Binary files /dev/null and b/static/fonts/Hermit-Bold.woff2 differ diff --git a/static/fonts/Hermit-BoldItalic.woff b/static/fonts/Hermit-BoldItalic.woff new file mode 100644 index 0000000..731206e Binary files /dev/null and b/static/fonts/Hermit-BoldItalic.woff differ diff --git a/static/fonts/Hermit-BoldItalic.woff2 b/static/fonts/Hermit-BoldItalic.woff2 new file mode 100644 index 0000000..57255f5 Binary files /dev/null and b/static/fonts/Hermit-BoldItalic.woff2 differ diff --git a/static/fonts/Hermit-Regular.woff b/static/fonts/Hermit-Regular.woff new file mode 100644 index 0000000..df8c1c4 Binary files /dev/null and b/static/fonts/Hermit-Regular.woff differ diff --git a/static/fonts/Hermit-Regular.woff2 b/static/fonts/Hermit-Regular.woff2 new file mode 100644 index 0000000..9b4dc0a Binary files /dev/null and b/static/fonts/Hermit-Regular.woff2 differ diff --git a/static/fonts/Hermit-RegularItalic.woff b/static/fonts/Hermit-RegularItalic.woff new file mode 100644 index 0000000..307a16c Binary files /dev/null and b/static/fonts/Hermit-RegularItalic.woff differ diff --git a/static/fonts/Hermit-RegularItalic.woff2 b/static/fonts/Hermit-RegularItalic.woff2 new file mode 100644 index 0000000..974716d Binary files /dev/null and b/static/fonts/Hermit-RegularItalic.woff2 differ diff --git a/static/fonts/raleway-v14-latin-700.woff b/static/fonts/raleway-v14-latin-700.woff new file mode 100644 index 0000000..d89a0a2 Binary files /dev/null and b/static/fonts/raleway-v14-latin-700.woff differ diff --git a/static/fonts/raleway-v14-latin-700.woff2 b/static/fonts/raleway-v14-latin-700.woff2 new file mode 100644 index 0000000..0220642 Binary files /dev/null and b/static/fonts/raleway-v14-latin-700.woff2 differ diff --git a/static/fonts/raleway-v14-latin-700italic.woff b/static/fonts/raleway-v14-latin-700italic.woff new file mode 100644 index 0000000..f412eab Binary files /dev/null and b/static/fonts/raleway-v14-latin-700italic.woff differ diff --git a/static/fonts/raleway-v14-latin-700italic.woff2 b/static/fonts/raleway-v14-latin-700italic.woff2 new file mode 100644 index 0000000..e0742c8 Binary files /dev/null and b/static/fonts/raleway-v14-latin-700italic.woff2 differ diff --git a/static/fonts/raleway-v14-latin-italic.woff b/static/fonts/raleway-v14-latin-italic.woff new file mode 100644 index 0000000..48b91a4 Binary files /dev/null and b/static/fonts/raleway-v14-latin-italic.woff differ diff --git a/static/fonts/raleway-v14-latin-italic.woff2 b/static/fonts/raleway-v14-latin-italic.woff2 new file mode 100644 index 0000000..e142d3f Binary files /dev/null and b/static/fonts/raleway-v14-latin-italic.woff2 differ diff --git a/static/fonts/raleway-v14-latin-regular.woff b/static/fonts/raleway-v14-latin-regular.woff new file mode 100644 index 0000000..ab3a51b Binary files /dev/null and b/static/fonts/raleway-v14-latin-regular.woff differ diff --git a/static/fonts/raleway-v14-latin-regular.woff2 b/static/fonts/raleway-v14-latin-regular.woff2 new file mode 100644 index 0000000..86b505e Binary files /dev/null and b/static/fonts/raleway-v14-latin-regular.woff2 differ diff --git a/theme.toml b/theme.toml new file mode 100644 index 0000000..ee32682 --- /dev/null +++ b/theme.toml @@ -0,0 +1,15 @@ +# theme.toml template for a Hugo theme +# See https://github.com/gohugoio/hugoThemes#themetoml for an example + +name = "nextDESIGN" +license = "MIT" +licenselink = "https://gitlab.com/mmk2410/nextDESIGN/blob/master/LICENSE" +description = "Simple design created for mmk2410.org" +homepage = "https://mmk2410.org/" +tags = [] +features = [] +min_version = "0.41.0" + +[author] + name = "Marcel Kapfer" + homepage = "https://mmk2410.org"