Skip to content
This repository has been archived by the owner on Sep 2, 2019. It is now read-only.

Commit

Permalink
Deploy from travis
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis CI committed Nov 13, 2017
0 parents commit 42b5dd7
Show file tree
Hide file tree
Showing 32 changed files with 9,498 additions and 0 deletions.
20 changes: 20 additions & 0 deletions LICENSE.md
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright (c) 2017 YOUR_NAME_HERE

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
47 changes: 47 additions & 0 deletions README.md
@@ -0,0 +1,47 @@
# hugo-gentoo-theme
[![Build Status](https://travis-ci.org/d-kusk/hugo-gentoo-theme.svg?branch=develop)](https://travis-ci.org/d-kusk/hugo-gentoo-theme)

![hugo-gentoo-theme's screenshot](https://github.com/d-kusk/hugo-gentoo-theme/blob/develop/images/screenshot.png)

hugo-gentoo-theme is a [Hugo](https://gohugo.io) theme.
This theme has a motif of Gentoo penguin.


## Feature

- Responsive Design
- Support for tags and categories
- Support for some JSON-LD
- Analysis with Google Analytics

## Get the Theme
Inside the folder of your Hugo site run:

```
$ cd themes
$ git clone https://github.com/d-kusk/hugo-gentoo-theme.git
```

For more information read the official [setup guide](https://gohugo.io/overview/installing/) of Hugo.

## Setting config.toml
Read to [wiki](https://github.com/d-kusk/hugo-gentoo-theme/wiki/Write-settings-to-config.toml) for setting to config.toml.

## Preview your site locally
Use Hugo’s built-in server to see your site in action as you make changes.

```
$ hugo server -t hugo-gentoo-theme
```

Visit ``localhost:1313`` in your browser.

## Write your new blog posts
To create a new blog post, run:

```
$ hugo new post/your-post-name.md
```

## License
This theme is released under the [MIT license](https://github.com/d-kusk/hugo-gentoo-theme/blob/master/LICENSE.md)
8 changes: 8 additions & 0 deletions archetypes/default.md
@@ -0,0 +1,8 @@
+++
title = ""
description = ""
data = {{ .Date }}
tags = ["", ""]
categories = [""]
draft = true
+++
34 changes: 34 additions & 0 deletions exampleSite/config.toml
@@ -0,0 +1,34 @@
baseurl = "Your Site URL"
languageCode = "Your language code"
title = "Your Site Name"
copyright = "Your Site copyright"
canonifyurls = true
paginate = 3

googleAnalytics = "Yout Google Analytics ID"

[params]
description = "Your site description"
author = "Your Name"

[taxonomies]
category = "categories"
tag = "tags"

[[menu.global]]
name = "Categories"
url = "/categories/"

[[menu.global]]
name = "Tags"
url = "/tags/"

[[menu.footer]]
name = "About"
url = "/page/about/"


[sitemap]
changefreq = "monthly"
priority = 0.5
filename = "sitemap.xml"
18 changes: 18 additions & 0 deletions exampleSite/content/page/about.md
@@ -0,0 +1,18 @@
+++
title = "About Hugo"
date = "2014-04-09"
menu = "main"
+++

Hugo is a static site engine written in Go.


It makes use of a variety of open source projects including:

* [Cobra](https://github.com/spf13/cobra)
* [Viper](https://github.com/spf13/viper)
* [J Walter Weatherman](https://github.com/spf13/jWalterWeatherman)
* [Cast](https://github.com/spf13/cast)

Learn more and contribute on [GitHub](https://github.com/gohugoio).

0 comments on commit 42b5dd7

Please sign in to comment.