aboutsummaryrefslogtreecommitdiff
path: root/data.go
diff options
context:
space:
mode:
Diffstat (limited to 'data.go')
-rw-r--r--data.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/data.go b/data.go
index 7782b7b..fccaec3 100644
--- a/data.go
+++ b/data.go
@@ -3,13 +3,14 @@ package main
import (
"encoding/json"
"errors"
- "github.com/BurntSushi/toml"
- "github.com/anhgelus/golatt"
"html/template"
"os"
"regexp"
"strconv"
"strings"
+
+ "github.com/BurntSushi/toml"
+ "github.com/anhgelus/golatt"
)
var (
@@ -28,6 +29,7 @@ type Config struct {
Description string `json:"description" toml:"description"`
folder string
Legal string `json:"legal" toml:"legal"`
+ Font string `json:"font" toml:"font"`
RelMeLinks []string `json:"rel_me_links" toml:"rel_me_links"`
CustomPages []string `json:"custom_pages" toml:"custom_pages"`
Person *Person `json:"person" toml:"person"`