From bf60fc37b93d2e85276de359b556e00e5f70b979 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 4 Jan 2025 15:48:34 +0200 Subject: add new theme --- .../html/fonts/Merriweather/Merriweather-Bold.ttf | Bin 0 -> 142040 bytes .../fonts/Merriweather/Merriweather-Regular.ttf | Bin 0 -> 149120 bytes extras/html/fonts/Merriweather/OFL.txt | 93 +++++++++++++++++++++ extras/html/themes/default/style.css | 91 ++++++++++++++++++++ extras/html/themes/default/theme.conf | 8 ++ gemtexter.conf | 2 +- 6 files changed, 193 insertions(+), 1 deletion(-) create mode 100644 extras/html/fonts/Merriweather/Merriweather-Bold.ttf create mode 100644 extras/html/fonts/Merriweather/Merriweather-Regular.ttf create mode 100644 extras/html/fonts/Merriweather/OFL.txt create mode 100644 extras/html/themes/default/style.css create mode 100644 extras/html/themes/default/theme.conf diff --git a/extras/html/fonts/Merriweather/Merriweather-Bold.ttf b/extras/html/fonts/Merriweather/Merriweather-Bold.ttf new file mode 100644 index 0000000..3e10e02 Binary files /dev/null and b/extras/html/fonts/Merriweather/Merriweather-Bold.ttf differ diff --git a/extras/html/fonts/Merriweather/Merriweather-Regular.ttf b/extras/html/fonts/Merriweather/Merriweather-Regular.ttf new file mode 100644 index 0000000..3fecc77 Binary files /dev/null and b/extras/html/fonts/Merriweather/Merriweather-Regular.ttf differ diff --git a/extras/html/fonts/Merriweather/OFL.txt b/extras/html/fonts/Merriweather/OFL.txt new file mode 100644 index 0000000..03dd415 --- /dev/null +++ b/extras/html/fonts/Merriweather/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2016 The Merriweather Project Authors (https://github.com/EbenSorkin/Merriweather), with Reserved Font Name "Merriweather". + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/extras/html/themes/default/style.css b/extras/html/themes/default/style.css new file mode 100644 index 0000000..f2cf40b --- /dev/null +++ b/extras/html/themes/default/style.css @@ -0,0 +1,91 @@ +@font-face { + font-family: 'text'; + src: url("./text.ttf") format("truetype"); +} + +@font-face { + font-family: 'heading'; + src: url("./heading.ttf") format("truetype"); +} + +@font-face { + font-family: 'code'; + src: url("./code.ttf") format("truetype"); +} + +@font-face { + font-family: 'handnotes'; + src: url("./handnotes.ttf") format("truetype"); +} + +body { + font-family: text, sans-serif; + max-width: 1200px; + padding: 20px; + margin: 20px auto; + border: 1px solid #eeeeee; + border-radius: 15px; +} + +a { + font-family: code, monospace; + text-decoration: none; + color: #0e0e0e; +} + +h1, h2, h3 { + font-family: heading, serif; +} + +a { + color: #666666; + padding: 0 0 0 0; +} + +a:hover { + text-decoration: underline; +} + +a.textlink:before { + content: "⇒ "; +} + +.quote { + font-style: italic; +} + +.quote:before { + content: "« "; + padding-left: 2px; +} + +.quote:after { + content: " »"; + padding-right: 2px; +} + +ul { + list-style: none; + margin: 0 0 0 0; + padding: 0 0 0 0; +} + +li:before { + content: "★"; + padding-right: 5px; +} + +img { + max-width: 90%; +} + +pre { + font-family: code, monospace; + padding: 20px; + border: 1px solid #cccccc; +} + +span.inlinecode { + font-family: code, monospace; + border: 1px solid #999999; +} diff --git a/extras/html/themes/default/theme.conf b/extras/html/themes/default/theme.conf new file mode 100644 index 0000000..9e06b30 --- /dev/null +++ b/extras/html/themes/default/theme.conf @@ -0,0 +1,8 @@ +declare -xr HTML_HEADER=./extras/html/header.html.part +declare -xr HTML_FOOTER=./extras/html/footer.html.part +declare -xr HTML_CSS_STYLE=$HTML_THEME_DIR/style.css +declare -xr HTML_WEBFONT_HEADING=./extras/html/fonts/Merriweather/Merriweather-Bold.ttf +declare -xr HTML_WEBFONT_TEXT=./extras/html/fonts/Merriweather/Merriweather-Regular.ttf +declare -xr HTML_WEBFONT_CODE=./extras/html/fonts/hack/Hack-Regular.ttf +declare -xr HTML_WEBFONT_HANDNOTES=./extras/html/fonts/khand/khand.ttf +declare -xr SOURCE_HIGHLIGHT_CSS=./extras/html/source-highlight-styles/mono.css diff --git a/gemtexter.conf b/gemtexter.conf index 7cf670d..1031ea4 100644 --- a/gemtexter.conf +++ b/gemtexter.conf @@ -8,4 +8,4 @@ declare -xr ATOM_MAX_ENTRIES=42 declare -xr CONTENT_BASE_DIR=../foo.zone-content declare -xr PRE_GENERATE_HOOK=./pre_generate_hook.sh declare -xr POST_PUBLISH_HOOK=./post_publish_hook.sh -declare -xr HTML_THEME_DIR=./extras/html/themes/retrosimple +declare -xr HTML_THEME_DIR=./extras/html/themes/default -- cgit v1.2.3