Skip to content

ashishlahoti/hugo-theme-highway

Repository files navigation

hugo-theme-highway

Highway is a theme for Hugo, a static site generator.

Overview

  • Highway theme use Hugo Mainroad Theme as a base and add many features.
  • Highway theme is an initiative taken while building a website CodingNConcept with all the features available in the theme.

Features

  1. Client Side Search Engine
  2. Multiple Author Support for Blog Website
  3. Authonumbering of Headings and subheadings in Blog Posts
  4. Nested Menu for Website Navigation
  5. Social Share Icons for Blog Posts
  6. Google Analytics
  7. RSS Feed
  8. sitemap.xml for SEO
  9. JSON+LD for SEO
  10. Useful ShortCodes

Run Example Site

Clone the hugo-theme-highway github repo and run the example site with following commands:-

git clone https://github.com/ashishlahoti/hugo-theme-highway.git
cd hugo-theme-highway
hugo server --source exampleSite --themesDir ../..

Create Hugo Website with Highway Theme

Step 1: Install Git and Hugo

If you are using MacOS, then you can install Homebrew package manager and run following commands from terminal:-

  1. To install Git, run brew install git
  2. To install Hugo, run brew install hugo

If you are using Windows or Other Operation System, then you can install them with these links:-

  1. Git
  2. Hugo

Step 2. Create a New Site

hugo new site quickstart

The above will create a new Hugo site in a folder named quickstart.

Step 3: Add Highway Theme

First, download the theme from GitHub and add it to your site’s themes directory:

cd quickstart
git init
git submodule add https://github.com/ashishlahoti/hugo-theme-highway.git themes/highway

Note for non-git users:

Then, add the theme to the site configuration:

echo theme = \"highway\" >> config.toml

Note: If you do not want to use Highway theme then See themes.gohugo.io for a list of themes to consider. Steps to use any other theme would be same.

Step 4: Add Some Content

You can manually create content files (for example as content/<CATEGORY>/<FILE>.<FORMAT>) and provide metadata in them, however you can use the new command to do a few things for you (like add title and date):

hugo new posts/my-first-post.md

Edit the newly created content file if you want, it will start with something like this:

---
title: "My First Post"
date: 2019-03-26T08:47:11+01:00
draft: true
---

Drafts do not get deployed; once you finish a post, update the header of the post to say draft: false.

Step 5: Start the Hugo server

Now, start the Hugo server with drafts enabled:

hugo server -D

Navigate to your new site at http://localhost:1313

Step 6: Build Static Site

Now time to generate static website from Hugo pages. Just run:

hugo -D

Output will be in ./public/ directory by default (-d/--destination flag to change it, or set publishdir in the config file).

Host Hugo Website on Github

You will find it interesting that you can host one website per Github account for FREE!

Follow these simple steps to host your website.

Other Useful links for Github:-

https://docs.github.com/en/github/managing-files-in-a-repository/adding-a-file-to-a-repository

About

Highway is a theme for Hugo, a static site generator.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published