27
0
Fork 1
forked from mirror/Mainroad
ITS fork - Responsive, simple, clean and content-focused Hugo theme based on the MH Magazine lite WordPress theme
Find a file
2018-08-17 15:56:50 +03:00
archetypes Fix default.md archetype 2018-04-16 14:12:53 +03:00
exampleSite Insert final newline 2018-08-17 15:56:50 +03:00
i18n Add French translation () 2018-08-17 09:35:01 +03:00
images Update screenshots 2016-12-18 17:54:19 +03:00
layouts Update MathJax 2.7.4 -> 2.7.5 2018-08-08 17:53:59 +03:00
static Various CSS improvements 2018-08-14 16:50:31 +03:00
.editorconfig Update .editorconfig ruleset: add yaml 2018-08-17 10:05:15 +03:00
.gitignore Add package-lock.json 2018-06-13 19:21:09 +03:00
.stylelintrc Update .stylelintrc: add stylelint-order plugin 2018-04-13 11:19:45 +03:00
CONTRIBUTING.md Add CONTRIBUTING.md 2018-07-26 19:46:13 +03:00
LICENSE.md Insert final newline 2018-08-17 15:56:50 +03:00
package-lock.json Add package-lock.json 2018-06-13 19:21:09 +03:00
package.json Add package.json 2018-05-09 19:03:11 +03:00
README.md Update MathJax 2.7.4 -> 2.7.5 2018-08-08 17:53:59 +03:00
theme.toml Bump Hugo min version [0.36 -> 0.38] 2018-07-08 19:33:03 +03:00

Mainroad

Mainroad is a responsive, simple, clean and content-focused Hugo theme based on the MH Magazine lite WordPress theme by MH Themes.

Demo (Fast update) | Standart Demo

screenshot

Features:

  • Hugo internal templates (Open Graph, Twitter Cards, Disqus, Google Analytics)
  • Responsive menu
  • SVG icons
  • Theme options (Sidebar position, Author Box, Post Navigation) available through config.toml file parameters
  • Table of Contents
  • MathJax

Browser support:

  • Desktop: IE10+, Chrome, Firefox, Safari
  • Mobile: Android browser (on Android 4.4+), Safari (on iOS 7+), Google Chrome, Opera mini

Other browsers (like Opera on Blink engine) are also supported, but not tested. Support for older versions of Internet Explorer (IE9 and below) ended.

Installation

In your Hugo site themes directory, run:

$ git clone https://github.com/vimux/mainroad

Next, open config.toml in the base of the Hugo site and ensure the theme option is set to mainroad:

theme = "mainroad"

For more information read the official setup guide of Hugo.

Configuration

Config.toml example

baseurl = "/"
title = "Mainroad"
languageCode = "en-us"
paginate = "10" # Number of posts per page
theme = "mainroad"
disqusShortname = "" # Enable comments by entering your Disqus shortname
googleAnalytics = "" # Enable Google Analytics by entering your tracking id

[Author] # Used in authorbox
  name = "John Doe"
  bio = "John Doe's true identity is unknown. Maybe he is a successful blogger or writer. Nobody knows it."
  avatar = "img/avatar.png"

[Params]
  subtitle = "Just another site" # Subtitle of your site. Used in site header
  description = " John Doe's Personal blog about everything" # Site description. Used in meta description
  opengraph = true # Enable OpenGraph if true
  twitter_cards = true # Enable Twitter Cards if true
  readmore = false # Show "Read more" button in list if true
  homeLayout = "content + sidebar" # Configure home page layout
  listLayout = "content + sidebar" # Configure layout for list pages
  singleLayout = "content + sidebar" # Configure layout for single pages
  authorbox = true # Show authorbox at bottom of pages if true
  toc = true # Enable Table of Contents
  post_navigation = true # Show post navigation at bottom of pages if true
  postSections = ["post"] # the section pages to show on home page and the "Recent articles" widget
  #postSections = ["blog", "news"] # alternative that shows more than one section's pages
  #dateformat = "2006-01-02" # change the format of dates
  #mathjax = true # Enable MathJax
  #mathjaxPath = "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" # Specify MathJax path
  #mathjaxConfig = "TeX-AMS-MML_HTMLorMML" # Specify MathJax config

[Params.widgets]
  search = true # Enable "Search" widget
  recent_articles = true # Enable "Recent articles" widget
  recent_articles_num = 5 # Set the number of articles in the "Recent articles" widget
  categories = true # Enable "Categories" widget
  tags = true # Enable "Tags" widget
  tags_counter = false # Enable counter for each tag in "Tags" widget (disabled by default)

  # Enable "Social" widget, if any of "social_*" set a value
  social_facebook = "username"
  social_twitter = "username"
  social_linkedin = "username"
  social_telegram = "username"
  social_github = "username"
  social_email = "example@example.com"
  social_google_plus = "profileid"

Front Matter example

---
title: "Example article title"
date: "2017-08-21"
description: "Example article description"
thumbnail: "img/placeholder.jpg" # Optional, thumbnail
disable_comments: false # Optional, disable Disqus comments if true
authorbox: true # Optional, enable authorbox for specific post
toc: true # Optional, enable Table of Contents for specific post
mathjax: true # Optional, enable MathJax for specific post
categories:
  - "Category 1"
  - "Category 2"
tags:
  - "Test"
  - "Another test"
---

For more information about front matter variables read Hugo Front Matter from Hugo official documentation.

Appearance Layouts

Mainroad comes with several appearance layout options for home, list and single pages.

Use homeLayout, listLayout or singleLayout parameters in site config to configure home, list and single pages appearance layouts.

Available values: content, content + sidebar, content + left sidebar

Contributing

Have you found a bug or got an idea for a new feature? Feel free to use the issue tracker to let me know. Or make directly a pull request, but please respect the following contributing guide.

License

This theme is released under the GPLv2 license.