├── LICENSE
├── README.md
├── archetypes
└── default.md
├── images
├── screenshot.png
├── splash.png
└── tn.png
├── layouts
├── _default
│ ├── baseof.html
│ ├── list.html
│ ├── single.html
│ └── summary.html
├── index.html
└── partials
│ ├── footer.html
│ ├── header.html
│ ├── pagination.html
│ └── sidebar.html
├── static
└── css
│ └── style.css
└── theme.toml
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016 Vimux
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 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Blank
2 |
3 | Blank — starter [Hugo](https://gohugo.io/) theme for developers. Use it to make your own theme.
4 |
5 | **[Demo](https://blank-demo.netlify.app/)**
6 |
7 | 
8 |
9 | ## Installation
10 |
11 | In your Hugo site `themes` directory, run:
12 |
13 | ```
14 | git clone https://github.com/vimux/blank
15 | ```
16 |
17 | Next, open `config.toml` in the base of the Hugo site and ensure the theme option is set to `blank`.
18 |
19 | ```
20 | theme = "blank"
21 | ```
22 |
23 | For more information read the official [quick start guide](https://gohugo.io/getting-started/quick-start/) of Hugo.
24 |
25 | ## Contributing
26 |
27 | Have you found a bug or got an idea for a new feature? Feel free to use the [issue tracker](https://github.com/Vimux/blank/issues) to let me know. Or make directly a [pull request](https://github.com/Vimux/blank/pulls).
28 |
29 | ## License
30 |
31 | This theme is released under the [MIT license](https://github.com/Vimux/blank/blob/master/LICENSE).
32 |
--------------------------------------------------------------------------------
/archetypes/default.md:
--------------------------------------------------------------------------------
1 | +++
2 | title = "{{ replace .Name "-" " " | title }}"
3 | date = {{ .Date }}
4 | +++
5 |
--------------------------------------------------------------------------------
/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vimux/blank/43cac0184173ed5b08edb2157aa0afbe509c2f51/images/screenshot.png
--------------------------------------------------------------------------------
/images/splash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vimux/blank/43cac0184173ed5b08edb2157aa0afbe509c2f51/images/splash.png
--------------------------------------------------------------------------------
/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Vimux/blank/43cac0184173ed5b08edb2157aa0afbe509c2f51/images/tn.png
--------------------------------------------------------------------------------
/layouts/_default/baseof.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |