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

github.com/serg/yourfolio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorserg <contact@sergfurtak.com>2018-06-01 17:51:44 +0300
committerserg <contact@sergfurtak.com>2018-06-01 17:51:44 +0300
commit8155ff65cbd1ad2e56b3806d7c99442e9acd7450 (patch)
tree787a3029ccd43debe2037da32509ae78790773aa
parentf3cd0ecac6eb8e66b5cd1d5438914d61f01f2654 (diff)
add readme
-rw-r--r--README.md38
1 files changed, 38 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..10ac70b
--- /dev/null
+++ b/README.md
@@ -0,0 +1,38 @@
+# Yourfolio
+Super simple and responsive theme for your personal website on Hugo framework.
+
+## Installation
+Before start you already need to have a Hugo on your machine. You can install it by following [these instructions](https://gohugo.io/getting-started/installing/)
+
+Create the Hugo website template if you are starting from scratch:
+
+```
+$ hugo new site your-site-name
+```
+
+Inside the folder of your Hugo website run:
+
+```
+$ cd themes
+$ git clone https://github.com/serg/yourfolio.git
+```
+
+For more information read the official [setup guide](https://gohugo.io/themes/installing-and-using-themes/) of the Hugo themes.
+
+## Getting started
+Set the theme option in your `config.yaml` for using this theme:
+```
+...
+theme: yourfolio
+...
+```
+Also you can copy a whole `config.yaml` file into your website folder and change it for fitting your requirements.
+
+As example please see on the `exampleSite` folder inside the theme folder for how to configure a website and create content files.
+
+## Check the website
+Start a Hugo development server on your local machine inside your website folder:
+```
+$ hugo server
+```
+Your website will be available in browser by this path `localhost:1313`