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

README.md - github.com/10mohi6/hugo-theme-simple-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 224d4b9688ca06b433dffd8e69b13148b4e15b4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# 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

## 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 = "<your site url>"
title = "<your site 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"

[params]
description = "<your site description>"
```

## 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