All Projects → calintat → Minimal

calintat / Minimal

Licence: mit
Personal blog theme powered by Hugo

Projects that are alternatives of or similar to Minimal

Educenter Hugo
Educenter is an educational website template. It can be used as an online teaching platform, school and university websites
Stars: ✭ 96 (-70.91%)
Mutual labels:  hugo, bootstrap, responsive
Hugo Theme Fuji
A minimal Hugo theme with nice theme color. | 一个主题色极简 Hugo 主题。
Stars: ✭ 145 (-56.06%)
Mutual labels:  hugo, responsive
Hugo Resume
A Hugo theme ported from startbootrap.com's resume template
Stars: ✭ 145 (-56.06%)
Mutual labels:  hugo, bootstrap
Hugo Theme M10c
A minimalistic (m10c) blog theme for Hugo
Stars: ✭ 223 (-32.42%)
Mutual labels:  hugo, responsive
Hugo Coder
A minimalist blog theme for hugo.
Stars: ✭ 1,374 (+316.36%)
Mutual labels:  hugo, responsive
Aether
A responsive and clean Hugo theme for blogs
Stars: ✭ 136 (-58.79%)
Mutual labels:  hugo, responsive
Hugo Theme Bootstrap4 Blog
A blogging-centric Bootstrap v4 theme for the Hugo static site generator.
Stars: ✭ 191 (-42.12%)
Mutual labels:  hugo, bootstrap
Hugo Tranquilpeak Theme
A gorgeous responsive theme for Hugo blog framework
Stars: ✭ 686 (+107.88%)
Mutual labels:  hugo, responsive
hugo-lamp
A light Hugo AMP responsive theme for blogger ⚡.
Stars: ✭ 51 (-84.55%)
Mutual labels:  responsive, hugo
hugo-theme-texify
A minimal, latex-style hugo theme for personal blogging
Stars: ✭ 91 (-72.42%)
Mutual labels:  responsive, hugo
hyde-hyde
A cool theme inspired by spf13's Hyde theme
Stars: ✭ 234 (-29.09%)
Mutual labels:  responsive, hugo
Light Bootstrap Dashboard Angular2
Light Bootstrap Dashboard Angular 2
Stars: ✭ 299 (-9.39%)
Mutual labels:  bootstrap, responsive
Hugo Icon
Icon theme for Hugo
Stars: ✭ 85 (-74.24%)
Mutual labels:  hugo, responsive
Hugo Theme Console
A minimal, responsive and light theme for Hugo inspired by Linux console.
Stars: ✭ 143 (-56.67%)
Mutual labels:  hugo, responsive
Hugo Bootstrap Premium
Hugo appernetic bootstrap premium theme
Stars: ✭ 82 (-75.15%)
Mutual labels:  hugo, bootstrap
Hugo Agency Theme
Port of Startbootstrap's Agency theme to Hugo
Stars: ✭ 155 (-53.03%)
Mutual labels:  hugo, bootstrap
Kube
Kube is a professional and a responsive Hugo theme for developers and designers that offers a documentation section mixed with a landing page and a blog.
Stars: ✭ 349 (+5.76%)
Mutual labels:  hugo, responsive
Hugo Theme Hello Friend
Pretty basic theme for Hugo that covers all of the essentials. All you have to do is start typing!
Stars: ✭ 586 (+77.58%)
Mutual labels:  hugo, responsive
hugoblog
Hugoblog is responsive, simple, and clean that would fit for your personal blog based on Hugo Theme Static Site Generator (SSG)
Stars: ✭ 48 (-85.45%)
Mutual labels:  responsive, hugo
yourfolio
⭐ Super simple and responsive theme for your personal website on Hugo
Stars: ✭ 28 (-91.52%)
Mutual labels:  responsive, hugo

Minimal

Personal blog theme powered by Hugo. A live demo is available here.

Installation

You can install the theme either as a clone or submodule.

I recommend the latter. From the root of your Hugo site, type the following:

$ git submodule add https://github.com/calintat/minimal.git themes/minimal
$ git submodule init
$ git submodule update

Now you can get updates to Minimal in the future by updating the submodule:

$ git submodule update --remote themes/minimal

Configuration

After installation, take a look at the exampleSite folder inside themes/minimal.

To get started, copy the config.toml file inside exampleSite to the root of your Hugo site:

$ cp themes/minimal/exampleSite/config.toml .

Now edit this file and add your own information. Note that some fields can be omitted.

I recommend you use the theme's archetypes so now delete your site's archetypes/default.md.

Features

You can tweak the look of the theme to suit your needs in a number of ways:

  • The accent colour can be changed by using the accent field in config.toml.

  • You can also change the background colour by using backgroundColor.

  • Add colored 5px borders at the top and bottom of pages by setting showBorder to true.

For best results, I recommend you use a dark accent colour with a light background, for example:

[params]
    accent = "red"
    showBorder = true
    backgroundColor = "white"

Fonts

The theme uses Google Fonts to load its font. To change the font:

[params]
    font = "Raleway" # should match the name on Google Fonts!

Syntax highlighting

The theme supports syntax highlighting thanks to highlight.js.

It's disabled by default, so you have to enable it by setting highlight to true in your config.

You can change the style used for the highlighting by using the highlightStyle field.

Only the "common" languages will be loaded by default. To load more, use highlightLanguages.

A list of all the available styles and languages can be found here.

Please note the style and languages should be written in hyphen-separated lowercase, for example:

[params]
    highlight = true
    highlightStyle = "solarized-dark"
    highlightLanguages = ["go", "haskell", "kotlin", "scala", "swift"]
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].