source: tanzpartie-hugo/themes/bilberry-hugo-theme/exampleSite/content/code/installing-bilberry-theme.md @ 16971

Last change on this file since 16971 was 16971, checked in by Henrik Bettermann, 2 years ago
File size: 912 bytes
Line 
1---
2title: "Installing Bilberry Theme"
3date: 2021-11-01T09:31:27+01:00
4
5categories: ['Code', 'Tutorials']
6tags: ['Hugo', 'Bilberry Theme']
7author: "Lednerb"
8---
9You will find all information to setup this theme with your hugo site
10on the official <br> [Github Repository](https://github.com/Lednerb/bilberry-hugo-theme).
11
12<!--more-->
13
14__If you want to install this theme, follow these steps:__
15
16- Install Hugo and create a new site:
17
18```plaintext
19hugo new site my-new-blog
20```
21
22- Switch to your `theme` folder and import the latest version of the Bilberry Theme
23
24```plaintext
25cd my-new-blog/themes
26git clone https://github.com/Lednerb/bilberry-hugo-theme.git
27```
28
29- Copy the example content to your new site
30
31```plaintext
32cp -r bilberry-hugo-theme/exampleSite/* ../
33```
34
35- Test the installation
36
37```plaintext
38cd ../
39hugo server -D
40```
41
42- Configure the `config.toml` file according to your needs
43- Start blogging
Note: See TracBrowser for help on using the repository browser.