hugo-PaperMod/content/posts/papermod/papermod-installation.md

166 lines
3.3 KiB
Markdown
Raw Normal View History

2020-09-17 10:58:09 +02:00
---
title: "Papermod - Installation"
summary: Read Install and Update instructions here
2020-09-17 10:58:09 +02:00
date: 2020-09-15T11:30:03+05:30
series: ["PaperMod"]
weight: 1
2020-10-27 14:16:08 +01:00
aliases: ["/papermod-installation"]
tags: ["PaperMod"]
2020-09-17 10:58:09 +02:00
author: "Aditya Telange"
2020-10-06 09:31:20 +02:00
showToc: true
TocOpen: true
2020-09-17 10:58:09 +02:00
---
2020-10-06 09:31:20 +02:00
## Guide
2020-09-17 10:58:09 +02:00
Follow [this](https://gohugo.io/getting-started/quick-start/) guide to setup hugo and create a new site.
2020-10-18 06:53:56 +02:00
Make sure you install latest version of `hugo`(>=0.74.0).
2020-09-17 10:58:09 +02:00
After you have created a new site, at [Step 3](https://gohugo.io/getting-started/quick-start/#step-3-add-a-theme) follow the steps:
Inside the folder of your Hugo site, run:
> ```console
> git clone https://github.com/adityatelange/hugo-PaperMod themes/hugo-PaperMod --depth=1
> ```
2020-10-27 14:16:08 +01:00
>
2020-09-17 10:58:09 +02:00
> > Updating theme :
2020-10-27 14:16:08 +01:00
> >
2020-09-17 10:58:09 +02:00
> > ```console
> > cd themes/hugo-PaperMod
> > git pull
> > ```
**or** you can use as [submodule](https://www.atlassian.com/git/tutorials/git-submodule) with
2020-10-27 14:16:08 +01:00
2020-09-17 10:58:09 +02:00
> ```console
> git submodule add https://github.com/adityatelange/hugo-PaperMod.git themes/hugo-PaperMod
2020-10-10 16:31:05 +02:00
> git submodule update --init --recursive
2020-09-17 10:58:09 +02:00
> ```
2020-10-27 14:16:08 +01:00
>
2020-09-17 10:58:09 +02:00
> > Updating theme with submodule :
2020-10-27 14:16:08 +01:00
> >
2020-09-17 10:58:09 +02:00
> > ```console
> > git submodule update --remote --merge
> > ```
> >
2020-10-27 14:16:08 +01:00
> > Then change in `config.yml`:
2020-09-17 10:58:09 +02:00
```yml
theme: "hugo-PaperMod"
```
Example Site Structure is present here: [exampleSite](https://github.com/adityatelange/hugo-PaperMod/tree/exampleSite/)
---
2020-10-06 09:31:20 +02:00
### Sample `config.yml`
```yml
baseURL: 'https://examplesite.com'
title: ExampleSite
paginate: 5
theme: hugo-PaperMod
enableRobotsTXT: true
buildDrafts: false
buildFuture: false
2020-11-03 10:45:58 +01:00
buildExpired: false
2020-10-06 09:31:20 +02:00
googleAnalytics: UA-123-45
minify:
disableXML: true
minifyOutput: true
params:
env: production # to enable google analytics, opengraph, twitter-cards and schema.
title: ExampleSite
2020-11-03 11:05:15 +01:00
description: 'ExampleSite description'
2020-10-06 09:31:20 +02:00
author: Me
2020-10-25 08:48:45 +01:00
# author: ["Me", "You"] # multiple authors
2020-10-06 09:31:20 +02:00
images: "<link or path of image for opengraph, twitter-cards>"
ShowReadingTime: true
ShowShareButtons: true
comments: false
defaultTheme: auto
disableThemeToggle : false
disableSpecial1stPost : false
2020-10-16 20:42:45 +02:00
assets:
favicon: '<path / external url>'
label:
text: "Home"
icon: /apple-touch-icon.png
iconHeight: 35
2020-10-06 09:31:20 +02:00
# profile-mode
profileMode:
enabled: false # needs to be explicitly set
title: ExampleSite
# imageUrl: '<img location>'
# imageTitle: my image
buttons:
- name: Posts
url: posts
- name: Tags
url: tags
# home-info mode
homeInfoParams:
Title: "Hi there \U0001F44B"
Content: Welcome to my blog
socialIcons:
- name: twitter
url: 'https://twitter.com/'
- name: stackoverflow
url: 'https://stackoverflow.com'
- name: github
url: 'https://github.com/'
analytics:
google:
SiteVerificationTag: "XYZabc"
```
---
### Sample `Page.md`
```yml
---
title: "My 1st post"
date: 2020-09-15T11:30:03+00:00
weight: 1
2020-10-27 14:16:08 +01:00
aliases: ["/first"]
tags: ["first"]
2020-10-06 09:31:20 +02:00
author: "Me"
2020-10-25 08:48:45 +01:00
# author: ["Me", "You"] # multiple authors
2020-10-06 09:31:20 +02:00
showToc: true
TocOpen: false
draft: false
hidemeta: false
disableShare: false
cover:
2020-10-27 14:16:08 +01:00
image: "<image path/url>"
alt: "<alt text>"
caption: "<text>"
relative: false
2020-10-06 09:31:20 +02:00
comments: false
---
2020-10-27 14:16:08 +01:00
2020-10-06 09:31:20 +02:00
```
---
2020-10-27 14:16:08 +01:00
### [Papermod - Features](../papermod-features)
### [Papermod - How to Guide](../papermod-how-to-guide)
### [Papermod - Icons](../papermod-icons)