2020-09-17 10:58:09 +02:00
|
|
|
---
|
|
|
|
title: "Papermod - Installation"
|
2020-10-27 14:26:59 +01:00
|
|
|
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
|
2020-11-11 05:57:42 +01:00
|
|
|
baseURL: "https://examplesite.com"
|
2020-10-06 09:31:20 +02:00
|
|
|
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:
|
2020-11-11 05:57:42 +01:00
|
|
|
disableXML: true
|
|
|
|
minifyOutput: true
|
2020-10-06 09:31:20 +02:00
|
|
|
|
|
|
|
params:
|
2020-11-11 05:57:42 +01:00
|
|
|
env: production # to enable google analytics, opengraph, twitter-cards and schema.
|
2020-10-06 09:31:20 +02:00
|
|
|
title: ExampleSite
|
2020-11-11 05:57:42 +01:00
|
|
|
description: "ExampleSite description"
|
|
|
|
author: Me
|
|
|
|
# author: ["Me", "You"] # multiple authors
|
|
|
|
|
2020-12-28 14:55:16 +01:00
|
|
|
images: ["<link or path of image for opengraph, twitter-cards>"]
|
2020-11-11 05:57:42 +01:00
|
|
|
|
|
|
|
ShowReadingTime: true
|
|
|
|
ShowShareButtons: true
|
|
|
|
comments: false
|
|
|
|
defaultTheme: auto
|
|
|
|
disableThemeToggle: false
|
|
|
|
disableSpecial1stPost: false
|
|
|
|
|
|
|
|
assets:
|
|
|
|
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:
|
|
|
|
text: "Home"
|
|
|
|
icon: /apple-touch-icon.png
|
|
|
|
iconHeight: 35
|
|
|
|
|
|
|
|
# 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"
|
2020-12-15 18:41:18 +01:00
|
|
|
|
|
|
|
menu:
|
|
|
|
main:
|
|
|
|
- identifier: categories
|
|
|
|
name: categories
|
|
|
|
url: /categories/
|
|
|
|
weight: 10
|
|
|
|
- identifier: tags
|
|
|
|
name: tags
|
|
|
|
url: /tags/
|
|
|
|
weight: 20
|
|
|
|
- identifier: example
|
|
|
|
name: example.org
|
|
|
|
url: https://example.org
|
|
|
|
weight: 30
|
2020-10-06 09:31:20 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### 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)
|
|
|
|
|
2020-11-13 18:44:12 +01:00
|
|
|
### [Papermod - How to Guide](../papermod-how-to)
|
2020-10-27 14:16:08 +01:00
|
|
|
|
|
|
|
### [Papermod - Icons](../papermod-icons)
|