Advanced Usage

Discover advanced usage of the Hugo - FixIt theme.

Style Customization

FixIt 0.2.8 | CHANGED
Note
Hugo extended version is necessary for the style customization.

FixIt theme has been built to be as configurable as possible by defining custom .scss style files.

The directory including the custom .scss style files is assets/css relative to your project root directory.

In assets/css/_override.scss, you can override the variables in themes/FixIt/assets/css/_variables.scss to customize the style.

Here is a example:

1
2
@import url('https://fonts.googleapis.com/css?family=Fira+Mono:400,700&display=swap&subset=latin-ext');
$code-font-family: Fira Mono, Source Code Pro, Menlo, Consolas, Monaco, monospace;

In assets/css/_custom.scss, you can add some css style code to customize the style.

Page Style

FixIt 0.2.13 | NEW

The FixIt theme provides a page width configuration option pageStyle and three values.

  • narrow Keep <v0.2.13 page/toc width ratio
  • normal New default page/toc width ratio
  • wide Larger page/toc width ratio

In addition, you can also customize the pageStyle value in assets/css/_custom.scss

For example: pageStyle="custom"

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
[data-page-style='custom'] {
  @media only screen and (min-width: 1441px) {
    %page-style {
      width: 70%;
    }
  }

  @media only screen and (min-width: 1440px) {
    %page-style {
      width: 60%;
    }
  }

  @media only screen and (min-width: 1200px) {
    %page-style {
      width: 56%;
    }
  }
}
FixIt 0.2.13 | NEW

There are three css common class for print view in FixIt Theme.

  • page-break-before Insert page break before element
  • page-break-after Insert page break after element
  • print-d-none Hide elements in print view

Here is a simple exmple:

1
2
3
4
5
<div class="page-break-before"></div>
<div class="page-break-after"></div>
<div class="print-d-none">
  Something you want to hide in the print view is written here.
</div>

If you set goldmark.parser.attribute.block to true, you can also use:

1
2
3
4
5
{.page-break-before}
{.page-break-after}

Something you want to hide in the print view is written here.
{.print-d-none}

Script Customization

FixIt 0.2.16 | NEW

The directory including the custom script file named custom.js is assets/js relative to your project root directory.

If the script file assets/js/custom.js exists, it will be executed at the end of each post and page.

Templates Customization

Hugo allows you to modify the theme by overriding the theme templates, for example: you can create layouts/404.html file to override themes/FixIt/layouts/404.html, so as to meet the needs of custom 404 page template of FixIt theme.

However, for most of the templates, FixIt theme generally doesn’t recommend you do this, as it may make theme upgrades difficult in the future.

In order to avoid upgrade conflicts, based on this feature, the FixIt theme opens several empty templates in commonly used locations for user customization, see params.customFilePath parameter in theme configuration.

For example, the FixIt theme documentation site customizes the profile section of the home page by creating layouts/partials/custom/profile.html.

First enable custom file path parameter:

1
2
[params.customFilePath]
  profile = "custom/profile.html"

then, customize the template:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
<div class="profile-custom">
  {{- if .Site.BuildDrafts -}}
    <a href="https://fixit.lruihao.cn" target="_blank" rel="external" title="Go to Production Environment">
      <img src="https://img.shields.io/github/deployments/hugo-fixit/docs/Production?style=flat&label=Production&logo=vercel" alt="Production environment">
    </a>
  {{- else -}}
    <a href="https://pre.fixit.lruihao.cn" target="_blank" rel="external" title="Go to Preview Environment">
      <img src="https://img.shields.io/github/deployments/hugo-fixit/docs/Preview?style=flat&label=Preview&logo=vercel" alt="Preview environment">
    </a>
  {{- end -}}
  <a href="https://demo.fixit.lruihao.cn" target="_blank" rel="external" title="FixIt Demo">
    <img src="https://img.shields.io/badge/Demo-orange" alt="FixIt Demo">
  </a>
</div>

PWA Support

This part is shown in the pwa support page.

Related Content

Buy me a coffee~
Lruihao AlipayAlipay
Lruihao WeChat PayWeChat Pay
0%