Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/brycematheson/allegiant.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeichi Takahashi <keichi.t@me.com>2015-02-03 16:41:01 +0300
committerKeichi Takahashi <keichi.t@me.com>2015-02-03 16:41:01 +0300
commit79e0d622df1e689cce1b8a0861af65138e6a752e (patch)
tree17867b952bff7ce2072e121c3af4493e6d726df9 /README.md
parente0219f5bb6204f8ee75913d4858abb821c101aa2 (diff)
Add README
Diffstat (limited to 'README.md')
-rw-r--r--README.md60
1 files changed, 60 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..7814b8c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,60 @@
+# Vienna
+
+## Overview
+
+Vienna is a simple and clean blog theme for [Hugo](http://gohugo.io/).
+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 = "&copy; 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
+```
+