MinimalBP Wiki

Getting Started

Getting Started

  1. Follow Hugo Docs’s - Quick Start guide to install Hugo.
    (Make sure you install Hugo >= v0.112.4)

  2. Create a new Hugo site

    hugo new site MyFreshWebsite --format yaml
    # replace MyFreshWebsite with name of your website
    

    Note:

After you have created a new site, follow the below steps to add MinimalBP

Installing/Updating MnimalBP

Themes reside in MyFreshWebsite/themes directory.

MinimalBP will be installed in MyFreshWebsite/themes/minimalbp

Install using git clone

INSTALL : Inside the folder of your Hugo site MyFreshWebsite, run:

    git clone https://github.com/blackpiratelive/minimalbp.git themes/minimalbp 

UPDATE: Inside the folder of your Hugo site MyFreshWebsite, run:

cd themes/minimalbp
git pull

Download and unzip

Download minimalbp as a zip from github and extract it inside the themes folder.

Finally set theme as minimalbp in your site config

In config.yml add:

theme: ["minimalbp"]

Or

In hugo.toml add:

 theme = 'minimalbp'