104 lines
3.4 KiB
Markdown
104 lines
3.4 KiB
Markdown
---
|
|
weight: 15
|
|
title: "Theme Documentation - Advanced"
|
|
date: 2020-05-06T21:29:01+08:00
|
|
description: "Discover what the Hugo - gokarna theme is all about and the core-concepts behind it."
|
|
tags: ["installation", "configuration", "markdown"]
|
|
type: post
|
|
|
|
---
|
|
|
|
Discover what the Hugo - Gokarna theme is all about and the core-concepts behind it.
|
|
TODO: Similar intro as in README, opinionated, authors
|
|
|
|
## Content Types
|
|
|
|
This theme supports two types of content types: `post` and `page`. To specify them, you need to add them in your markdown metadata.
|
|
|
|
### Post
|
|
|
|
This is the default blog post type which will be shown in your "Posts" section and who's tags will be indexed. Basically, a normal blog post.
|
|
|
|
```markdown
|
|
---
|
|
title: "Hello, world!"
|
|
date: 2021-01-01
|
|
description: "A blog post"
|
|
type: "post"
|
|
tags: ["blog"]
|
|
---
|
|
|
|
# Hello World!
|
|
This is my blog.
|
|
```
|
|
|
|
### Page
|
|
|
|
We introduced this type to distinguish between blog posts and normal markdown pages. The reason to create this was to give the user complete freedom in creating their website. You can use this to create a portfolio of your projects or showcase your designs. The possibilites are endless and the choice is yours.
|
|
|
|
```markdown
|
|
---
|
|
title: "Hello, world!"
|
|
type: "page"
|
|
---
|
|
|
|
# Projects
|
|
Keep an eye on this space for my upcoming projects
|
|
```
|
|
|
|
## Weights
|
|
|
|
The `weight` attribute can be added in the markdown metadata for `post` types. We have an option in our config.toml: `params.showPostsOnHomePage` which allows you to:
|
|
|
|
1. Show popular posts on home page if the value is set to `popular`. It sorts the all the posts by it's weight attribute in ascending order.
|
|
2. Show recent posts on home page if the value is set to `recent`
|
|
3. Do not show anything if the variable is unset or an empty string.
|
|
|
|
## Custom Head HTML
|
|
|
|
The goal of this feature is to give the user more control over the theme. It's functioning is very straightforward - "You can inject any HTML you want in the `<head>` tag" . This may seem simple at first, but it opens up a lot of possibilities.
|
|
|
|
### Bring your own scripts
|
|
|
|
Add your own JavaScript or CSS by putting them in the `static/` folder and importing them into your HTML.
|
|
|
|
```toml
|
|
[params]
|
|
customHeadHTML = """
|
|
<script>console.log("Custom script or import");</script>
|
|
<script src="/js/custom.js"></script>
|
|
"""
|
|
```
|
|
|
|
### Analytics
|
|
|
|
Integration with any analytics tool: This was a personal pet peeve. User privacy is our primary concern and this meant not using Google Analytics or any of the popular tools.
|
|
|
|
We preferred privacy friendly tools like Umami(TODO link) & fathom(TODO link), but the downside was that no theme supported them out of the box which led to either changing the theme source code or contributing supporting code to the original theme (both of which are good ways to extend the theme, but not our ideal choice)
|
|
|
|
Giving users the freedom to add anything in the HTML via config.toml seemed like an elegant way to solve the problem.
|
|
|
|
```toml
|
|
[params]
|
|
customHeadHTML = """
|
|
<script async defer data-website-id="webiste-id" src="https://analytics.example.com/script.js"></script>
|
|
"""
|
|
```
|
|
|
|
## Syntax Highlighting
|
|
|
|
Hugo lets you choose the color scheme for the codeblocks. You can choose from the options here: https://xyproto.github.io/splash/docs/all.html
|
|
|
|
After choosing your theme, just update the `pygmentsStyle` attribute in config.toml.
|
|
|
|
```toml
|
|
pygmentsStyle = "monokai"
|
|
```
|
|
|
|
You can read more about syntax highlighting on the [official hugo docs](TODO).
|
|
|
|
|
|
|
|
|
|
|