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

github.com/gonnux/hugo-apps-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorByeonggon Lee <gonny952@gmail.com>2018-11-29 14:14:36 +0300
committerGitHub <noreply@github.com>2018-11-29 14:14:36 +0300
commitbd6910358debf42486a21a99e4f0ddde5f234621 (patch)
tree32d0fb65c129320f87a1a97629b45b5f202a616e
parent1ed74e2c32fe7e1256f9a70f0a03dc61df2ecc94 (diff)
Create README.md
-rw-r--r--README.md75
1 files changed, 75 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..e0b497d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,75 @@
+
+# Hugo Apps Theme
+[![GitHub stars](https://img.shields.io/github/stars/gonapps/hugo-apps-theme.svg?style=flat-square)](https://github.com/gonapps/hugo-apps-theme/stargazers)
+[![GitHub forks](https://img.shields.io/github/forks/gonapps/hugo-apps-theme.svg?style=flat-square)](https://github.com/gonapps/hugo-apps-theme/fork)
+[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://raw.githubusercontent.com/gonapps/hugo-apps-theme/master/LICENSE)
+
+Hugo apps theme
+
+## Installation
+From the root of your website
+```bash
+mkdir -p themes
+cd themes
+git clone https://github.com/gonapps/hugo-apps-theme
+```
+From config.toml of your site
+```toml
+theme = "hugo-apps-theme"
+```
+
+## Creating a page
+```bash
+hugo new about.md
+#hugo new about.html
+```
+```bash
+hugo new apps/myapp.md
+#hugo new apps/myapp.html
+```
+```bash
+mkdir apps/myapp
+touch apps/myapp/index.html
+touch apps/myapp/app.js
+touch apps/myapp/app.css
+```
+
+## Configuration
+
+### Front Matter
+- title(string): title for your page
+- weight(integer): weight of your page, used for sorting
+- full(boolean): whether your page is full page or not
+- img(string): logo image for your page
+
+### config.toml
+- baseURL(string): base url of your site
+- hasCJKLanguage(boolean): whether you support CJK language or not
+- disqusShortname(string): disqus short name
+- googleAnalytics(string): google analytics tracking id
+- title(string): title of your site
+- copyright(string): copyright of your site
+- [params]avatar(string): avatar image url of index page of your site
+- [params]author(string): your name at index page
+- [params]info(string): info string below your name at index page
+- [[menu.main]]name(string): name of menu item
+- [[menu.main]]url(string): url of menu item
+- [[menu.main]]weight(integer): weight of menu item, used for sorting
+
+## Features
+* Responsive
+* Disqus
+* HighlightJS
+* Google Analytics
+* Open Graph
+
+### Contribution
+Fork this repository and create an PR to dev branch.
+
+## Inspired by
+This theme is inspired by following themes:<br/>
+[Hugo Coder](https://github.com/luizdepra/hugo-coder)
+
+## License
+Licensed under the [MIT](https://opensource.org/licenses/MIT) License.<br/>
+See the [LICENSE](https://raw.githubusercontent.com/gonapps/hugo-apps-theme/master/LICENSE) file for more details.