Simple and clean blog theme for hugo, based on Vienna theme
Go to file
Keichi Takahashi be308b5371 Update theme description file 2015-02-03 22:41:14 +09:00
archetypes Removed title from default archetype 2015-02-03 17:05:07 +09:00
layouts Add disqus comments 2015-02-03 22:15:15 +09:00
static Vertically centre SNS icons 2015-02-03 21:47:08 +09:00
LICENSE.md Initial commit 2015-02-03 15:21:35 +09:00
README.md Add README 2015-02-03 22:41:01 +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 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 feattures.

baseurl = "Your site URL"
languageCode = "en-us"
title = "Your site title"
author = "Your Name"
# 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. (Optional)
    twitter = "Your Twitter username"
    github = "Your GitHub username"
    linkedin = "Your LinkedIn username"
    facebook = "Your Facebook username"
    # Mixpanel API key. (Optional)
    mixpanel_api_key = "Your Mixpanel API key"
    # Short bio/tagline. This is displayer in the header.
    bio = "Your short bio/tagline"

Usage

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

$ hugo server -t vienna -w -D