mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
a6d3862b87
- Correct some typos - Add backticks and commas where necessary - Use fenced code blocks specifying "bash" as the language to avoid weird highlighting - Place commas outside of quotation marks surroundingn codes to avoid possible confusion - Suggest users to use the discussion forum rather than the mailing list
29 lines
686 B
Markdown
29 lines
686 B
Markdown
---
|
|
date: 2014-05-12T10:09:49Z
|
|
menu:
|
|
main:
|
|
parent: themes
|
|
next: /themes/usage
|
|
prev: /themes/overview
|
|
title: Installing Themes
|
|
weight: 20
|
|
---
|
|
|
|
Hugo themes are located in a centralized github repository. [Hugo Themes
|
|
Repo](http://github.com/spf13/hugoThemes) itself is really a meta
|
|
repository which contains pointers to set of contributed themes.
|
|
|
|
## Installing all themes
|
|
|
|
If you would like to install all of the available hugo themes, simply
|
|
clone the entire repository from within your working directory.
|
|
|
|
```bash
|
|
git clone --recursive https://github.com/spf13/hugoThemes.git themes
|
|
```
|
|
|
|
## Installing a specific theme
|
|
|
|
mkdir themes
|
|
cd themes
|
|
git clone URL_TO_THEME
|