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

github.com/StaticMania/roxo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornrgoncalves <nrgoncalves@users.noreply.github.com>2022-10-20 12:53:51 +0300
committerGitHub <noreply@github.com>2022-10-20 12:53:51 +0300
commit709f6ab8461cbdde70a008a9dd7c21ad744d37c0 (patch)
tree30364ed4c7f8115e0c7ccdf599a98b06a8aaa023
parenta14673aaea81faba3b5f0ef14c3acd3ace6bd965 (diff)
Fix docs path to theme to match `config.toml`
The documentation seems to be inconsistent with the `config.toml` file, in that it places the submodule under `themes/roxo` and not `themes/roxo-hugo`, while the config file points to `roxo-hugo` (fixes #25).
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0123e60..9252bde 100644
--- a/README.md
+++ b/README.md
@@ -18,10 +18,10 @@ Checkout the live demo [here](https://roxo-hugo.staticmania.com/)
## Installation
-1. Add the repository into your Hugo Project repository as a submodule, `git submodule add git@github.com:StaticMania/roxo-hugo.git themes/roxo`.
+1. Add the repository into your Hugo Project repository as a submodule, `git submodule add git@github.com:StaticMania/roxo-hugo.git themes/roxo-hugo`.
2. Copy the `data`, `content`, `static`, `resources` & `config.toml` files from the `exampleSite` directory and paste it on you Hugo Project repository/directory. From the site home directory:
- cp -a themes/roxo/exampleSite/* .
+ cp -a themes/roxo-hugo/exampleSite/* .
3. Build your site with `hugo serve` and see the result at `http://localhost:1313/`.