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

github.com/gohugoio/hugoBasicExample.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanzei <Hanzei@users.noreply.github.com>2018-08-08 23:11:05 +0300
committerdigitalcraftsman <digitalcraftsman@users.noreply.github.com>2018-08-08 23:11:05 +0300
commit278f6dee519b273f951601213db025fe1a70e9cb (patch)
treee78b1fd0d4d23499548c657cea31b8ba25dbee0a
parent3b9de186969c5cdf717dc27c808345fd20f93e8b (diff)
Add install instructions for single theme in README.md
Fixed #12
-rw-r--r--README.md37
1 files changed, 19 insertions, 18 deletions
diff --git a/README.md b/README.md
index 3f24109..49eb04a 100644
--- a/README.md
+++ b/README.md
@@ -1,25 +1,26 @@
-hugoBasicExample
-==========
+# hugoBasicExample
This is an example site for [Hugo](https://gohugo.io/).
-It is intended to be a demo site for the various [Hugo themes][].
+It is intended to be a demo site for the various [Hugo themes](https://themes.gohugo.io/).
# Using
-1. First, [install Hugo](https://gohugo.io/overview/installing/);
-2. Then, clone this repository;
-3. Clone the [Hugo themes][];
-4. Run Hugo and select the theme of your choosing.
-
-In other words:
-
-<pre><code>git clone https://github.com/gohugoio/HugoBasicExample.git
-cd HugoBasicExample
+1. [Install Hugo](https://gohugo.io/overview/installing/)
+2. Clone this repository
+```bash
+git clone https://github.com/gohugoio/hugoBasicExample.git
+cd hugoBasicExample
+```
+3. Clone the repository you want to test. If you want to test all hugo themes, you can clone [the full list](https://github.com/gohugoio/hugoThemes)
+```bash
+git clone --recursive https://URL/OF/YOUR/THEME themes/YOURTHEME
+```
+or
+```bash
git clone --recursive https://github.com/gohugoio/hugoThemes.git themes
-hugo server -t <em>themename</em>
-</code></pre>
-
-Enjoy!
-
-[Hugo themes]: https://github.com/gohugoio/hugoThemes
+```
+4. Run Hugo and select the theme of your choosing
+```bash
+hugo server -t YOURTHEME
+```