Info Page

To customize the info page for PaperMod based website:

params:
  homeInfoParams:
    Title: "đŸ‘‹Hello World!"
    Content: >-
      Welcome to Huijing Huang's tech blogs!      

Social Icons

To add social icons:

params:
  socialIcons:
    - name: "github"
      url: "https://github.com/rewrlution"
    - name: "linkedin"
      url: "https://www.linkedin.com/in/huijing-huang/"
    - name: "email"
      url: "mailto:sssjtuhuang@gmail.com"

Here’s the full list of social icons.

Tags

To enable the tags mode for the PaperMod theme in Hugo, add tags to the post’s front matter:

date: "2025-02-28T14:16:39-08:00"
draft: false
title: "Hugo Infopage"
tags: ["hugo", "PaperMod", "customization"]

Configure the config.yaml to include the taxonomies settings:

params: ...
taxonomies:
  tag: "tags"

Main Menu

To display the tags and posts in the main menu:

menu:
  main:
    - identifier: posts
      name: posts
      url: /posts/
      weight: 10
    - identifier: tags
      name: tags
      url: /tags/
      weight: 20