Rename project
This commit is contained in:
parent
b8c709e735
commit
f595a82a5a
18
README.md
18
README.md
|
@ -1,8 +1,8 @@
|
||||||
# Lanyon
|
# Soho
|
||||||
|
|
||||||
Lanyon is a minimalist two-column [hugo](https://gohugo.io) theme based on [Hyde](https://github.com/spf13/hyde) and inspired by the success of [Flex](https://github.com/alexandrevicenzi/Flex).
|
Soho is a minimalist two-column [hugo](https://gohugo.io) theme based on [Hyde](https://github.com/spf13/hyde) and inspired by the success of [Flex](https://github.com/alexandrevicenzi/Flex).
|
||||||
|
|
||||||
![Screenshot](https://raw.githubusercontent.com/alexandrevicenzi/lanyon/master/images/tn.png)
|
![Screenshot](https://raw.githubusercontent.com/alexandrevicenzi/soho/master/images/tn.png)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
|
@ -21,14 +21,14 @@ Lanyon is a minimalist two-column [hugo](https://gohugo.io) theme based on [Hyde
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
To install Lanyon as your default theme, first install this repository in the `themes/` directory:
|
To install Soho as your default theme, first install this repository in the `themes/` directory:
|
||||||
|
|
||||||
$ cd themes/
|
$ cd themes/
|
||||||
$ git clone https://github.com/alexandrevicenzi/lanyon.git
|
$ git clone https://github.com/alexandrevicenzi/soho.git
|
||||||
|
|
||||||
Second, specify `lanyon` as your default theme in the `config.toml` file. Just add the line
|
Second, specify `soho` as your default theme in the `config.toml` file. Just add the line
|
||||||
|
|
||||||
theme = "lanyon"
|
theme = "soho"
|
||||||
|
|
||||||
at the top of the file.
|
at the top of the file.
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ at the top of the file.
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
baseURL = "https://example.com"
|
baseURL = "https://example.com"
|
||||||
title = "Lanyon"
|
title = "Soho"
|
||||||
languageCode = "en"
|
languageCode = "en"
|
||||||
enableInlineShortcodes = true
|
enableInlineShortcodes = true
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@ author = "Author Name"
|
||||||
description = "My Blog"
|
description = "My Blog"
|
||||||
|
|
||||||
## Set one of:
|
## Set one of:
|
||||||
# gravatar = "lanyon@example.com"
|
# gravatar = "soho@example.com"
|
||||||
profilePicture = "images/profile.png"
|
profilePicture = "images/profile.png"
|
||||||
|
|
||||||
copyright = "Author Name"
|
copyright = "Author Name"
|
||||||
|
|
|
@ -2,10 +2,10 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
build: .
|
build: .
|
||||||
working_dir: /go/src/github.com/alexandrevicenzi/lanyon/hugoBasicExample
|
working_dir: /go/src/github.com/alexandrevicenzi/soho/hugoBasicExample
|
||||||
command: hugo server -v --bind "0.0.0.0" --port 1313 --watch -t lanyon
|
command: hugo server -v --bind "0.0.0.0" --port 1313 --watch -t soho
|
||||||
ports:
|
ports:
|
||||||
- "1313:1313"
|
- "1313:1313"
|
||||||
volumes:
|
volumes:
|
||||||
- ./hugoBasicExample:/go/src/github.com/alexandrevicenzi/lanyon/hugoBasicExample
|
- ./hugoBasicExample:/go/src/github.com/alexandrevicenzi/soho/hugoBasicExample
|
||||||
- .:/go/src/github.com/alexandrevicenzi/lanyon/hugoBasicExample/themes/lanyon
|
- .:/go/src/github.com/alexandrevicenzi/soho/hugoBasicExample/themes/soho
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,3 +1,3 @@
|
||||||
module github.com/alexandrevicenzi/lanyon
|
module github.com/alexandrevicenzi/soho
|
||||||
|
|
||||||
go 1.12
|
go 1.12
|
||||||
|
|
|
@ -12,7 +12,7 @@ enableEmoji = true
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
description = ""
|
description = ""
|
||||||
# gravatar = "lanyon@example.com"
|
# gravatar = "soho@example.com"
|
||||||
profilePicture = "images/profile.png"
|
profilePicture = "images/profile.png"
|
||||||
copyright = "Author Name"
|
copyright = "Author Name"
|
||||||
license = "CC BY-SA 4.0"
|
license = "CC BY-SA 4.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name = "Lanyon"
|
name = "Soho"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
licenselink = "https://github.com/alexandrevicenzi/lanyon/blob/master/LICENSE.md"
|
licenselink = "https://github.com/alexandrevicenzi/soho/blob/master/LICENSE.md"
|
||||||
description = "A minimalist and mobile first theme for Hugo"
|
description = "A minimalist and mobile first theme for Hugo"
|
||||||
tags = ["blog", "responsive", "clean", "minimalist"]
|
tags = ["blog", "responsive", "clean", "minimalist"]
|
||||||
features = ["blog", "themes", "disqus", "analytics"]
|
features = ["blog", "themes", "disqus", "analytics"]
|
||||||
|
|
Loading…
Reference in New Issue