From 5facec02458ace3c279fcbc9e82326dfbb67ba40 Mon Sep 17 00:00:00 2001 From: 10mohi6 <10.mohi.6.y@gmail.com> Date: Thu, 28 May 2020 14:56:10 +0900 Subject: first commit --- README.md | 61 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..6f3de0b --- /dev/null +++ b/README.md @@ -0,0 +1,61 @@ +# simple-blog + +simple-blog is a simple blog theme for [hugo](http://gohugo.io/). + +![screenshot](https://raw.githubusercontent.com/10mohi6/hugo-theme-simple-blog/master/images/screenshot.png) + +## Features + +- based on [bootstrap](https://getbootstrap.com/) +- pagination +- tags +- categories +- js unused + +## Installation + +```shell +$ git clone https://github.com/10mohi6/hugo-theme-simple-blog themes/simple-blog +``` + +## Usage + +```shell +$ hugo server -t simple-blog +``` + +## Configuration + +config.toml + +```toml +theme = "simple-blog" +baseURL = "" +title = "" +copyright = "© 2020 copyright text." +paginate = 3 +languageCode = "en" +DefaultContentLanguage = "en" +enableInlineShortcodes = true +footnoteReturnLinkContents = "^" + +[menu] + + [[menu.main]] + identifier = "about" + name = "About" + url = "/about/" + weight = 10 + +[taxonomies] +category = "categories" +tag = "tags" +``` + +## Contributing + +1. Fork it +2. Create your feature branch (`git checkout -b my-new-feature`) +3. Commit your changes (`git commit -am 'Add some feature'`) +4. Push to the branch (`git push origin my-new-feature`) +5. Create new Pull Request \ No newline at end of file -- cgit v1.2.3