Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mdashx/basicwebtheme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortom <tom@mdashx.com>2020-07-04 11:34:53 +0300
committertom <tom@mdashx.com>2020-07-04 11:36:46 +0300
commitb15458bd691b4cbe8680782fb4dfc460e734f2c9 (patch)
treeb3a2f8c5b9bd76548c4e394792e31d89d32af53f
parentcbf1bec2595230cfb048173c48ca87723e8ee0cd (diff)
Version 0.3.0 - Ready to use as a Hugo themev0.3.0
-rw-r--r--CHANGELOG.md10
-rw-r--r--README.md51
-rw-r--r--static/assets/css/style.css3
-rw-r--r--theme.toml5
4 files changed, 20 insertions, 49 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fd7f3d6..41703f8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,13 @@
Pagination
-Update theme to meet guidelines here: https://github.com/gohugoio/hugoThemes/blob/master/README.md
+## Version 0.3.0
-- "skipTitle" param
+Updated theme to meet guidelines here: https://github.com/gohugoio/hugoThemes/blob/master/README.md
+
+- Added "skipTitle" param
overrides default behavior of including title header in "single" template
+
+- Added optional behaviors to "post-preview" template
+
+- Added "archive" section template to support Hugo default content
diff --git a/README.md b/README.md
index 5736efa..67701aa 100644
--- a/README.md
+++ b/README.md
@@ -1,49 +1,12 @@
# Basic Web Theme
-Basic Web Theme is based on the web design I've arrived at over the
-past few months for all of my websites, after spending the past
-several years chipping away useless design elements from my sites.
+No one is impressed by your cool web design.
-The goals of Basic Web Theme is to provide usablility on desktop and
-mobile, without distractions.
-
-Ideally, the theme will only provide styling rules where doing so
-improves upon the usablility of the system defaults. For example, to
-use a readable column width on wide devices, scale content to mobile
-viewports, and provide minimal styling for block quotes, code blocks
-and tables.
-
-This Hugo theme implementation of Basic Web Theme includes templates
-for:
-
-- homepage with an option to list children from another page
-
-- list pages with full or truncated content
-
-- single pages (e.g. a single post)
-
-- standalone pages (e.g. about page, signup form, etc.)
-
-- taxonomy partial template to list taxonomy terms (e..g tags) at
- bottom of page
-
-- footer with auto-generate menu and "last updated" date
-
-- taxonomy term list page
-
-- taxonomy posts list page
-
-- shortcode for showing a table from a data template
-
-- shortcode for including a newsletter signup form
-
-- 404 page
-
-The example site gives shows how to use all of the templates in
-the Hugo theme, shows how to use taxonomy, menus, shortcodes, and data
-templates, and demonstrates the styling of various elements.
-
-
-Page Kinds: https://gohugo.io/templates/section-templates/#page-kinds
+The Basic Web Theme is simple, minimal and usable.
+The goal of this theme is to use default browser styles as much as
+possible. Styles are tweaked to improve usability: limiting column
+width, scaling for mobile devices, making columns look nice, scrolling
+code blocks properly, etc.
+Learn more: https://www.basicwebtheme.com
diff --git a/static/assets/css/style.css b/static/assets/css/style.css
index 3c081ec..c00df05 100644
--- a/static/assets/css/style.css
+++ b/static/assets/css/style.css
@@ -62,6 +62,9 @@ td {
margin-bottom: 3px;
}
+
+/* The styles below deal with the default Hugo theme content. */
+
.list-content h1, .list-content h2 {
font-size: 1.2em;
}
diff --git a/theme.toml b/theme.toml
index bc6bca4..4e08d1f 100644
--- a/theme.toml
+++ b/theme.toml
@@ -3,11 +3,10 @@ license = "MIT"
licenselink = "https://github.com/mdashx/basicwebtheme/blob/master/LICENSE"
description = "A basic web theme."
homepage = "https//www.basicwebtheme.com"
-tags = ["minimal", "responsive", "white", "simple", "blog"]
-features = []
+tags = ["minimal", "responsive", "white", "simple", "clean", "light", "blog", "readable"]
+features = ["readable columns"]
min_version = "0.59.1"
-# If the theme has a single author
[author]
name = "Tom Bullock"
homepage = "https://www.mdashx.com" \ No newline at end of file