Sha256: 3abe510dee95da6e4a2947452fba26f6209fe5cf67a21efd77463d13aedc0f81

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

voppe-jekyll-theme
===

# Setup

Add this line to your Jekyll site's Gemfile:

```ruby
gem "voppe-jekyll-theme"
```

And add this line to your Jekyll site's `_config.yml`:

```yaml
theme: voppe-jekyll-theme
```

Execute installation:
```
    $ bundle install
```

# Usage

### Menu

Create a file `menu.yml` in your `_data` folder. The file's structure is the following
``` yaml
items:
    *menuitems*
footer:
    *menuitems*
```

Where `menuitems` is an array of items with the following structure
```yaml
*section*:
    # If not specified defaults to '/*section*/'
    link: string 
    
    # Defaults to medium
    size: medium|large

    # The text to show on item hover
    label: string;

    # A fontawesome icon name (e.g. 'envelope')
    icon: string

    # A background image link
    background: string 
```

Remember to update your `_config.yml` file to include your section
```yaml
collections: 
    *section*:
        output: true
```

## License

The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
voppe-jekyll-theme-0.5.1 README.md
voppe-jekyll-theme-0.4.1 README.md