2014-05-29 18:42:05 -04:00
|
|
|
|
---
|
|
|
|
|
date: 2014-05-12T10:09:34Z
|
|
|
|
|
menu:
|
|
|
|
|
main:
|
|
|
|
|
parent: themes
|
|
|
|
|
next: /themes/creation
|
|
|
|
|
prev: /themes/usage
|
|
|
|
|
title: Customizing a Theme
|
|
|
|
|
weight: 40
|
|
|
|
|
---
|
2014-05-27 18:32:57 -04:00
|
|
|
|
|
|
|
|
|
Hugo themes permit you to supplement or override any template or file
|
|
|
|
|
from within your working directory.
|
|
|
|
|
|
|
|
|
|
## Replacing Static files
|
|
|
|
|
|
2014-12-04 11:26:12 -05:00
|
|
|
|
For including a different file than what the theme ships
|
|
|
|
|
with. For example, if you would like to use a more recent version of jQuery
|
|
|
|
|
than what the theme happens to include, simply place an identically named file in the same
|
|
|
|
|
relative location but in your working directory. For example, if the
|
|
|
|
|
theme has jQuery 1.6 in `/themes/themename/static/js/jquery.min.js`, simply place your file
|
|
|
|
|
in the same relative path `/static/js/jquery.min.js`.
|
2014-05-27 18:32:57 -04:00
|
|
|
|
|
|
|
|
|
## Replace a single template file
|
|
|
|
|
|
2014-12-04 11:26:12 -05:00
|
|
|
|
Anytime Hugo looks for a matching template, it will first check the
|
2014-05-27 18:32:57 -04:00
|
|
|
|
working directory before looking in the theme directory. If you would
|
2014-12-04 11:26:12 -05:00
|
|
|
|
like to modify a template, simply create that template in your local
|
2015-01-27 21:17:09 -05:00
|
|
|
|
`layouts` directory. In the [template documentation](/templates/overview/)
|
2014-05-27 18:32:57 -04:00
|
|
|
|
each different template type explains the rules it uses to determine
|
|
|
|
|
which template to use.
|
|
|
|
|
|
2014-06-06 16:15:19 -04:00
|
|
|
|
This is especially helpful when the theme creator used [partial
|
2015-01-27 21:17:09 -05:00
|
|
|
|
templates](/templates/partials/). These partial templates are perfect for easy
|
2014-06-06 16:15:19 -04:00
|
|
|
|
injection into the theme with minimal maintenance to ensure future
|
|
|
|
|
compatibility.
|
|
|
|
|
|
2014-12-04 11:26:12 -05:00
|
|
|
|
**Warning: This only works for templates that Hugo knows about. If the
|
|
|
|
|
theme imports template files in a creatively named directory,
|
|
|
|
|
Hugo won’t know to look for the local `/layouts` first.**
|
2014-05-27 18:32:57 -04:00
|
|
|
|
|
|
|
|
|
## Replace an archetype
|
|
|
|
|
|
|
|
|
|
If the archetype that ships with the theme for a given content type (or
|
|
|
|
|
all content types) doesn’t fit with how you are using the theme, feel
|
2014-12-04 11:26:12 -05:00
|
|
|
|
free to copy it to your `/archetypes` directory and make modifications as
|
2014-05-27 18:32:57 -04:00
|
|
|
|
you see fit.
|
|
|
|
|
|
|
|
|
|
## Beware of the default
|
|
|
|
|
|
|
|
|
|
**Default** is a very powerful force in Hugo... Especially as it pertains to
|
|
|
|
|
overwriting theme files. If a default is located in the local archetype
|
2014-12-04 11:26:12 -05:00
|
|
|
|
directory or `/layouts/_default/` directory, it will be used instead of
|
2014-05-27 18:32:57 -04:00
|
|
|
|
any of the similar files in the theme.
|
|
|
|
|
|
|
|
|
|
It is usually better to override specific files rather than using the
|
|
|
|
|
default in your working directory.
|