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

github.com/zzzmisa/hugo-theme-doors.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzzmisa <zzzmisa.office@gmail.com>2019-08-05 17:42:23 +0300
committerzzzmisa <zzzmisa.office@gmail.com>2019-08-05 17:42:23 +0300
commit42f24936ea07bb12ad77d17954af11401d62ac77 (patch)
treed70fe40c7cc2dc052e8ba443596ea882aa2e2e6b /README.md
Initial commit
Diffstat (limited to 'README.md')
-rw-r--r--README.md45
1 files changed, 45 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..75ac401
--- /dev/null
+++ b/README.md
@@ -0,0 +1,45 @@
+# Hugo Theme Doors
+Single page theme for links to your works.
+See a real usage here: https://zzzmisa.com/
+
+## PC view
+![Doors screenshot](https://github.com/zzzmisa/hugo-theme-doors/blob/master/images/screenshot.png?raw=true)
+
+## Mobile view
+<img src="https://github.com/zzzmisa/hugo-theme-doors/blob/master/images/screenshot_mb.png?raw=true" height="600">
+
+## Features
+* Links to your works
+* Responsive
+* SNS button
+* Google Analytics
+* Accelerated Mobile Pages (AMP) supported
+
+## Getting started
+The example of how to use this theme is provided in the `exampleSite` folder. At first, try running the example site. The contents of the site can be configured by `config.toml`. After the example site appears, rewrite `config.toml` with your own data to make your own site.
+
+## Run example site
+1. Install [Hugo](https://gohugo.io/).
+2. Create a new project folder to running the example site.
+ ```
+ $ mkdir mySite
+ ```
+3. Install this theme into your project folder.
+ ```
+ $ cd mySite
+ $ git clone https://github.com/zzzmisa/hugo-theme-doors.git themes/hugo-theme-doors
+ ```
+4. Copy the entire contents of the `exampleSite` to root folder of your project folder.
+ ```
+ $ cp -r themes/hugo-theme-doors/exampleSite/* .
+ ```
+5. Test the example site.
+ ```
+ $ hugo server -w
+ ```
+ See the result at http://localhost:1313/ on your browser.
+6. Build the example site.
+ ```
+ $ hugo
+ ```
+ Find result files in the `public` folder in the root of your project folder.