mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
papermod stuff update
This commit is contained in:
parent
d199f5540f
commit
c0fcf738e0
@ -12,7 +12,9 @@ draft: true
|
|||||||
|
|
||||||
## Intro
|
## Intro
|
||||||
|
|
||||||
We'll be using `yml/yaml` format for all examples down below, I recommend using `yml` over `toml` as it is easier to read.
|
- **We'll be using `yml/yaml` format for all examples down below, I recommend using `yml` over `toml` as it is easier to read.**
|
||||||
|
|
||||||
|
- You can find any [YML to TOML](https://www.google.com/search?q=yml+to+toml) converters if necessary.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ Example Site Structure is present here: [exampleSite](https://github.com/adityat
|
|||||||
### Sample `config.yml`
|
### Sample `config.yml`
|
||||||
|
|
||||||
```yml
|
```yml
|
||||||
baseURL: 'https://examplesite.com'
|
baseURL: "https://examplesite.com"
|
||||||
title: ExampleSite
|
title: ExampleSite
|
||||||
paginate: 5
|
paginate: 5
|
||||||
theme: hugo-PaperMod
|
theme: hugo-PaperMod
|
||||||
@ -76,7 +76,7 @@ minify:
|
|||||||
params:
|
params:
|
||||||
env: production # to enable google analytics, opengraph, twitter-cards and schema.
|
env: production # to enable google analytics, opengraph, twitter-cards and schema.
|
||||||
title: ExampleSite
|
title: ExampleSite
|
||||||
description: 'ExampleSite description'
|
description: "ExampleSite description"
|
||||||
author: Me
|
author: Me
|
||||||
# author: ["Me", "You"] # multiple authors
|
# author: ["Me", "You"] # multiple authors
|
||||||
|
|
||||||
@ -90,7 +90,11 @@ params:
|
|||||||
disableSpecial1stPost: false
|
disableSpecial1stPost: false
|
||||||
|
|
||||||
assets:
|
assets:
|
||||||
favicon: '<path / external url>'
|
favicon: "<link / abs url>"
|
||||||
|
favicon16x16: "<link / abs url>"
|
||||||
|
favicon32x32: "<link / abs url>"
|
||||||
|
apple_touch_icon: "<link / abs url>"
|
||||||
|
safari_pinned_tab: "<link / abs url>"
|
||||||
|
|
||||||
label:
|
label:
|
||||||
text: "Home"
|
text: "Home"
|
||||||
@ -116,12 +120,11 @@ params:
|
|||||||
|
|
||||||
socialIcons:
|
socialIcons:
|
||||||
- name: twitter
|
- name: twitter
|
||||||
url: 'https://twitter.com/'
|
url: "https://twitter.com/"
|
||||||
- name: stackoverflow
|
- name: stackoverflow
|
||||||
url: 'https://stackoverflow.com'
|
url: "https://stackoverflow.com"
|
||||||
- name: github
|
- name: github
|
||||||
url: 'https://github.com/'
|
url: "https://github.com/"
|
||||||
|
|
||||||
|
|
||||||
analytics:
|
analytics:
|
||||||
google:
|
google:
|
||||||
|
Loading…
Reference in New Issue
Block a user