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

README.md - github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f4c6df945f800dc6d47fa031e03dcceea23857d (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
64
65
66
67
# Hugo frais

**/!\ Please note that this is a Work In Progress theme**

A fresh (and french) theme for [Hugo](//gohugo.io/).

Recipe for a good theme:
- **light**: minimum viable dependencies
- **responsive**: mobile-first is not an option
- **accessible**: a11y is quality
- **SVG**: light + responsive + accessibility = Epic win
- **consistent**: if maintainability is king, BEM is queen
- **customizable**: make it yours
- ...

## How to install

Inside the folder of your Hugo site run:

```sh
$ cd themes
$ git clone https://github.com/the2ne/hugo-frais
```

Then update your _config.toml_ file:

```toml
theme = "hugo-frais"
```

For more information read the official [setup guide](//gohugo.io/overview/installing/) of Hugo.


## Configuration

You can define some social network bullshit like:
- [params] **author** *str* : the author's website name;
- [params] **pseudo** *str* : the author's online pseudonym;
- [params] **twitter** *str* : Twitter account;
- [params] **github** *str* : GitHub account;
- [params] **linkedin** *str* : LinkedIn account;

_./config.toml example:_
```toml
[params]
    author = "Olivier Fredon"
    pseudo = "the2ne"
    twitter = "the2ne"
    github = "the2ne"
    linkedin = "the2ne"
```


## Contributing

Did you found a bug or got an idea for a new feature? Feel free to use the [issue tracker](//github.com/the2ne/hugo-frais/issues) to let me know. Or make directly a [pull request](//github.com/the2ne/hugo-frais/pulls).


## License

This theme is released under the MIT license. For more information read the [License](//github.com/the2ne/hugo-frais/blob/master/LICENSE.md).


## Annotations

Thanks to:
- [Steve Francia](//github.com/spf13) for creating Hugo and the awesome community around the project.