7 |
8 | {{ end }}
9 |
17 | {{ end }}
--------------------------------------------------------------------------------
/layouts/partials/head.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{ .Title }} | {{ .Site.Title }}
5 |
6 |
7 |
9 | {{- partial "head_custom.html" . -}}
10 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Hugo Theme for [Simple.css](https://simplecss.org/)
2 |
3 | 
4 |
5 | This theme is a bare minimum theme for Hugo. It uses no JavaScript, tracking, or other external resources. The styling is handled via a submodule of [Simple.css](https://github.com/kevquirk/simple.css/).
6 |
7 | ## Demo
8 |
9 | My blog uses this theme:
10 |
11 | ## Installation
12 |
13 | 1. Clone this repository: `git clone https://github.com/splch/hugo-simplecss.git`
14 | 2. Initialize the submodule: `cd hugo-simplecss && git submodule update --init --recursive`
15 |
--------------------------------------------------------------------------------
/theme.toml:
--------------------------------------------------------------------------------
1 | name = "SimpleCSS"
2 | license = "MIT"
3 | licenselink = "https://github.com/splch/hugo-simplecss/blob/master/LICENSE"
4 | description = "Use Simplecss with the bare-minimum Hugo theme to optimize readability and expressibility."
5 |
6 | # The home page of the theme, where the source can be found.
7 | homepage = "https://github.com/splch/hugo-simplecss/"
8 |
9 | # If you have a running demo of the theme.
10 | demosite = "https://slc.is/"
11 |
12 | tags = ["blog", "minimal", "personal", "light", "dark", "portfolio", "dark mode"]
13 | features = ["blog", "privacy", "no javascript", "simple"]
14 |
15 | # If the theme has a single author
16 | [author]
17 | name = "Spencer Churchill"
18 | homepage = "https://slc.is/"
19 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2022 Spencer Churchill
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of
6 | this software and associated documentation files (the "Software"), to deal in
7 | the Software without restriction, including without limitation the rights to
8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 | the Software, and to permit persons to whom the Software is furnished to do so,
10 | subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 |
--------------------------------------------------------------------------------