Skip to content

Commit bb51831

Browse files
committed
refactor: rename theme to devise; docs: update readme
1 parent 623500b commit bb51831

File tree

7 files changed

+34
-12
lines changed

7 files changed

+34
-12
lines changed

README.md

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1-
# devise
1+
# Devise
22

33
A minimal [hugo](https://gohugo.io/) blog theme.
4+
5+
## Installation
6+
7+
From the root of your Hugo site, run the following:
8+
9+
```
10+
$ git submodule add https://github.com/austingebauer/devise.git themes/devise
11+
$ git submodule init
12+
$ git submodule update
13+
```
14+
15+
## Updates
16+
17+
You can get updates to the Devise theme by running:
18+
19+
```
20+
$ git submodule update --remote themes/devise
21+
```
22+
23+
## Configuration
24+
25+
TODO

images/screenshot.png

Loading

images/tn.png

Loading

node_modules/node-sass/package.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "hugo-dev-theme",
2+
"name": "devise",
33
"version": "1.0.0",
4-
"description": "hugo-dev-theme hugo theme",
4+
"description": "devise hugo theme",
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
@@ -17,7 +17,7 @@
1717
"theme"
1818
],
1919
"author": "Austin Gebauer",
20-
"license": "ISC",
20+
"license": "MIT",
2121
"devDependencies": {
2222
"@fortawesome/fontawesome-free": "^5.8.2"
2323
}

theme.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# theme.toml template for a Hugo theme
22
# See https://github.com/gohugoio/hugoThemes#themetoml for an example
33

4-
name = "hugo-dev-theme"
4+
name = "devise"
55
license = "MIT"
6-
licenselink = "https://github.com/austingebauer/hugo-dev-theme/blob/master/LICENSE"
7-
description = "A minimal hugo blog theme for software developers"
6+
licenselink = "https://github.com/austingebauer/devise/blob/master/LICENSE"
7+
description = "A minimal hugo blog theme"
88
homepage = "http://austingebauer.com/"
9-
tags = ["developer"]
9+
tags = ["developer", "blog", "minimal", "personal"]
1010
features = []
11-
min_version = "0.42"
11+
min_version = "0.59.1"
1212

1313
[author]
1414
name = "Austin Gebauer"
15-
homepage = "austingebauer.com"
15+
homepage = "http://austingebauer.com/"

0 commit comments

Comments
 (0)