aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
blob: 1d5ac6dd77b52f15f94ae81d2989f12aa81e97e2 (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
68
69
70
71
72
73
74
75
76
77
78
79
# Hugo base theme

Hugo theme based on [gohugo](https://gohugo.io)

## How to use
 - Place a image in `static/img/`
 - Create posts to display your services. Use the follow as an example:

### post

```toml
+++
date = 2014-10-13T20:07:19Z
draft = true
title = "First"
description = "Ceci est mon premier post \n bla bla bla"
weight = 1
icon = "pacman"
+++

Hello first post
```
### carousel

Create a carousel.md file in /content/carousel

```toml
+++
date = 2014-10-13T19:54:21Z
draft = true
title = "About"
weight = 5
icon = "circlestar"
[[carousel]]
  quote = "First quote"
  author  ="John Do"
  url = ""
  quote_date = "13 August"
[[carousel]]
  quote = "Second quote"
  author  ="Nhoj Od"
  url = ""
  quote_date = "14 August"
+++
```



## Demo
View gohugo.io theme in action [here](https://gohugo.io)
View audrey-carpentras.com in action [here](http://audrey-carpentras.com/)

===

Work also with YAML header

For more Hugo details, read [documentation](http://gohugo.io/overview/introduction/).

## Config

Example of config.toml file:
```toml
baseurl = "http://yourSiteHere"
languageCode = "fr-fr"
title = "my new web site"
[params]
  description = "I <3 making web site"
  mainIcon = "/img/hugo.png"

[[params.social]]
    title = "twitter"
    url = "https://twitter.com/SBootstrap"
[[params.social]]
    title = "github"
    url = "https://github.com/IronSummitMedia/startbootstrap"
[[params.social]]
    title = "linkedin"
    url = ""
```