Browse Source

better docs for site params

make the background param safer to use
main
Gus Esquivel 8 years ago
parent
commit
30aba78291
  1. 42
      README.md
  2. 2
      layouts/index.html
  3. 3
      src/scss/slate.scss
  4. 2
      static/css/slate.css

42
README.md

@ -1,29 +1,40 @@
# slate theme for hugo # slate theme for hugo
slate is a single-page speed dial theme for [Hugo](http://gohugo.io/). You can view a demo at https://gesquive.github.io/hugo-slate-demo/ slate is a single-page speed dial theme for [Hugo](http://gohugo.io/). Supports using image logos or url text for the contents of the tiles.
![slate hugo theme screenshot](https://raw.githubusercontent.com/gesquive/slate/master/images/screenshot.png)
# Features ## Examples
You can visit a live demo at https://gesquive.github.io/hugo-slate-demo/ or view
screen shots of the [Image](https://raw.githubusercontent.com/gesquive/slate/master/images/icon_tiles.png) and [Text](https://raw.githubusercontent.com/gesquive/slate/master/images/text_tiles.png) tile display modes.
## Features
- Rotating image background - Rotating image background
- [Image](https://raw.githubusercontent.com/gesquive/slate/master/images/icon_tiles.png) and [Text](https://raw.githubusercontent.com/gesquive/slate/master/images/text_tiles.png) tile display mode - [Image](https://raw.githubusercontent.com/gesquive/slate/master/images/icon_tiles.png) and [Text](https://raw.githubusercontent.com/gesquive/slate/master/images/text_tiles.png) tile display mode
- Tag based navigation/filtering - Tag based navigation/filtering
# Installation ## Installation
## Installing this theme ### Installing this theme
mkdir themes mkdir themes
cd themes cd themes
git clone https://github.com/gesquive/slate git clone https://github.com/gesquive/slate
## Build with this theme ### Build with this theme
hugo server -t slate hugo server -t slate
# Configuration ## Configuration
The following configuration site params are available:
- **BackgroundImages**: (_optional_) specifies a list of backgrounds to rotate through, if not provided, then the specified background style will be used
- **BackgroundStyle**: (_optional_) The [background CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/background) style to use. (default value is `radial-gradient(ellipse farthest-side at center top, #FCFCFC 0%, #657383 100%)`)
- **OpenLinksInNewWindow**: (_optional_) boolean to set if tile links open in a new window/tab. (default values is `false`)
- **Favicon**: (_optional_) path to the favicon
**config.toml** **config.toml**
@ -34,7 +45,6 @@ title = "My New Hugo Site"
theme = "slate" theme = "slate"
[ params ] [ params ]
# optional image background rotation
BackgroundImages = [ BackgroundImages = [
"bg/b1920-000.jpg", "bg/b1920-000.jpg",
"bg/b1920-001.jpg", "bg/b1920-001.jpg",
@ -42,24 +52,21 @@ BackgroundImages = [
"bg/b1920-003.jpg", "bg/b1920-003.jpg",
"bg/b1920-004.jpg" "bg/b1920-004.jpg"
] ]
# optional background style (valid css only) BackgroundStyle = "#000000;"
BackgroundStyle = "background: #000000;"
# optional bool to have links open in a new window/tab (default: true)
OpenLinksInNewWindow = true OpenLinksInNewWindow = true
# optional path to favicon
Favicon = "favicon.ico" Favicon = "favicon.ico"
# list of nav tags # list of nav tags
[[ params.nav ]] [[ params.nav ]]
name = "favorites" # display name name = "favorites"
tag = "favorite" # url/tag name tag = "favorite"
icon = "star" # font-awesome icon name icon = "star"
``` ```
Example : [config.toml](https://github.com/gesquive/hugo-slate-demo/blob/master/config.toml) Example : [config.toml](https://github.com/gesquive/hugo-slate-demo/blob/master/config.toml)
## Links ### Links
All links are defined in the `data/links.yml` data file. Valid attributes are: All links are defined in the `data/links.yml` data file. Valid attributes are:
@ -122,11 +129,12 @@ tiles:
tags: ['music'] tags: ['music']
``` ```
## Navigation ### Navigation
Along the left side of the screen is a navigation bar that can be used to filter the links. The filtering occurs on the tag attribute of the links. For example, when the 'favorite' tag is selected, only the links with the 'favorite' tag attribute will be shown. Along the left side of the screen is a navigation bar that can be used to filter the links. The filtering occurs on the tag attribute of the links. For example, when the 'favorite' tag is selected, only the links with the 'favorite' tag attribute will be shown.
A nav filter is defined as: A nav filter is defined as:
- **name**: The name displayed in the UI - **name**: The name displayed in the UI
- **tag**: the tag name to filter links with - **tag**: the tag name to filter links with
- **icon**: the [font-awesome](http://fontawesome.io/icons/) name of the icon to display - **icon**: the [font-awesome](http://fontawesome.io/icons/) name of the icon to display

2
layouts/index.html

@ -5,7 +5,7 @@
<link rel="stylesheet" href="css/slate.css"> <link rel="stylesheet" href="css/slate.css">
</head> </head>
<body{{ if .Site.Params.BackgroundStyle }} style='{{ .Site.Params.BackgroundStyle | safeCSS }}'{{ end }} <body{{ if .Site.Params.BackgroundStyle }} style='background: {{ .Site.Params.BackgroundStyle | safeCSS }};'{{ end }}
{{- if .Site.Params.BackgroundImages }} data-backgrounds='{{ range .Site.Params.BackgroundImages }}{{ . }},{{ end }}'{{- end }}> {{- if .Site.Params.BackgroundImages }} data-backgrounds='{{ range .Site.Params.BackgroundImages }}{{ . }},{{ end }}'{{- end }}>
{{ partial "nav.html" . }} {{ partial "nav.html" . }}

3
src/scss/slate.scss

@ -8,7 +8,7 @@ $transition-time: .3s;
$menu-bar-width: 50px; $menu-bar-width: 50px;
$background: #bdbdbd; $background: #657383;
$text-color: #000; $text-color: #000;
$text-title-color: #fff; $text-title-color: #fff;
@ -23,7 +23,6 @@ body {
margin-left: 50px; margin-left: 50px;
color: $text-color; color: $text-color;
background-image: radial-gradient(ellipse farthest-side at center top, #FCFCFC 0%, #657383 100%); background-image: radial-gradient(ellipse farthest-side at center top, #FCFCFC 0%, #657383 100%);
} }
.container { .container {

2
static/css/slate.css

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save