Simple and clean blog theme for hugo, based on Vienna theme
Go to file
Matt Carrier bc264a0eff Added 15px of padding so social icons are not flush against the bottom of the header 2015-03-31 00:52:58 -07:00
archetypes Removed title from default archetype 2015-02-03 17:05:07 +09:00
images Add screenshot and thumbnail 2015-02-04 00:38:50 +09:00
layouts Remove redundant slashes 2015-02-25 16:04:29 +09:00
static Added 15px of padding so social icons are not flush against the bottom of the header 2015-03-31 00:52:58 -07:00
LICENSE.md Initial commit 2015-02-03 15:21:35 +09:00
README.md Update README 2015-02-23 22:11:59 +09:00
bootstrap_custom_config.json Add Bootstrap customization configuration 2015-02-04 15:51:12 +09:00
theme.toml Update theme description file 2015-02-03 22:41:14 +09:00

README.md

Vienna

Overview

Vienna is a simple and clean blog theme for Hugo. Notable features are:

  • Simple and clean design
  • Client side source code highlighting
  • Social links (Twitter, Facebook, GitHub, LinkedIn)
  • Support for tags
  • Analytics with Google Analytics or Mixpanel
  • Responsive design
  • Font Awesome icons

Installation

In your hugo site directory, run:

$ mkdir themes
$ cd themes
$ git clone https://github.com/keichi/vienna

Configuration

You may specify following options in config.toml of your site to make use of this theme's features.

baseurl = "Your site URL"
languageCode = "en-us"
title = "Your site title"
# Copyright notice. This is displayer in the footer.
copyright = "© Copyright notice"

[params]
    # Social accounts. Link to these accounts are displayed in the header and
    # footer.
    twitter = "Your Twitter username"
    github = "Your GitHub username"
    linkedin = "Your LinkedIn username"
    facebook = "Your Facebook username"
    # Google Analytics API key.
    ga_api_key = "Your Google Analytics tracking id"
    # Mixpanel API key.
    mixpanel_api_key = "Your Mixpanel API key"
    author = "Your Name"
    avatar = "/path/to/avatar"
    contact = "Your contact link (ex. mailto:foo@example.com)"
    bio = "Your short bio/tagline"
    # Short subtitle/tagline. This is displayed in the header.
    subtitle = "is a software developer, hardware hacker and a beer lover. He believes in the power of code."

Usage

Use hugo's -t vienna or --theme=vienna option with hugo commands. Example:

$ hugo server -t vienna -w -D