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

github.com/themefisher/meghna-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsomrat <monnaf37@gmail.com>2019-03-09 12:15:49 +0300
committersomrat <monnaf37@gmail.com>2019-03-09 12:15:49 +0300
commitffede7a3ef34bda4eda5d479203549327a62960a (patch)
tree4c7807501228cadd25f64d51b9becd24d726caee /exampleSite
parentf43e4a3513fdd4cedd768ad0d09643237ec093a2 (diff)
added installation page and modified readme file
Diffstat (limited to 'exampleSite')
-rw-r--r--exampleSite/config.toml1
-rw-r--r--exampleSite/content/blog/installation.md83
-rw-r--r--exampleSite/static/images/blog/meghna.pngbin0 -> 90886 bytes
3 files changed, 84 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index d635b53..23c563c 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -3,6 +3,7 @@ languageCode = "en-us"
DefaultContentLanguage = "en"
title = "Meghna"
theme = "meghna-hugo"
+summaryLength = 10
[taxonomies]
author = "author"
diff --git a/exampleSite/content/blog/installation.md b/exampleSite/content/blog/installation.md
new file mode 100644
index 0000000..5486c60
--- /dev/null
+++ b/exampleSite/content/blog/installation.md
@@ -0,0 +1,83 @@
++++
+title = "How To Setup Meghna Hugo"
+date = "2019-3-06T21:49:20+02:00"
+description = "This is meta description for blog page"
+tags = ["golang", "programming", "theme", "hugo"]
+categories = ["starting"]
+author = "Themefisher"
+image = "images/blog/meghna.png"
++++
+
+## Install this template by following those simple steps:
+
+### STEP-1 : Hugo installation
+
+Check this link below for install hugo on your computer.
+[hugo install documentation](https://gohugo.io/getting-started/installing/)
+
+### STEP-2 : Create your project
+
+Hugo provides a `new` command to create a new website.
+
+```
+hugo new site <new_project>
+```
+
+### STEP-3 : Install the theme
+Run this command
+```
+hugo new site meghna-hugo
+```
+and then go to the themes folder inside of meghna-hugo folder. You can also use this command ```cd meghna-hugo/themes``` for going to this folder.
+Then run the command
+```
+git clone git@github.com:themefisher/meghna-hugo.git
+```
+
+Alternatively, you can [download the theme as .zip](https://github.com/themefisher/meghna-hugo/archive/master.zip) file and extract it in the `themes` directory
+
+After that you need to go to the `meghna-hugo/exampleSite` folder and copy or cut all the elements, and now go back to the root folder and paste it here.
+
+open the command prompt again and run `cd ../` command for go back to the root folder.
+
+### STEP-4 : Host locally
+
+Launching the website locally by using the following command:
+
+```
+hugo serve
+```
+
+Go to `http://localhost:1313`
+
+Or you can check this video documentation for installing this template:
+{{< youtube 3O3qvDoVp5g >}}
+
+### STEP-5 : Basic configuration
+
+When building the website, you can set a theme by using `--theme` option. However, we suggest you modify the configuration file (`config.toml`) and set the theme as the default.
+
+```toml
+# Change the default theme to be use when building the site with Hugo
+theme = "meghna-hugo"
+```
+
+### STEP-6 : Create your first content pages
+
+```
+hugo new blog/post-name.md
+```
+
+### STEP-7 : Build the website
+
+When your site is ready to deploy, run the following command:
+
+```
+hugo
+
+# You can also create a minified version by using this command:
+hugo--minify
+
+```
+
+A `public` folder will be generated, containing all static content and assets for your website. It can now be deployed on any web server. \ No newline at end of file
diff --git a/exampleSite/static/images/blog/meghna.png b/exampleSite/static/images/blog/meghna.png
new file mode 100644
index 0000000..fffbff2
--- /dev/null
+++ b/exampleSite/static/images/blog/meghna.png
Binary files differ