mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
ba44e860a3
* Add meta author, description and generator tags * Add Hugo version beside the logo and in the footer * Suggest the user to run `go get -u -v` to update dependencies * Requires Go 1.3+ rather than Go 1.1+ * Improve rendering/formatting in some places * Add trailing slash to URLs where appropriate * GitHub redirects all http requests to https, update accordingly
29 lines
699 B
Markdown
29 lines
699 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. The [Hugo Themes
|
|
Repo](https://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
|