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

github.com/nathancday/min_night.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate <nathancday@gmail.com>2017-11-15 05:28:25 +0300
committerNate <nathancday@gmail.com>2018-03-12 02:28:20 +0300
commit1295d3f9c169b5177f4222bd08a16f84b98ba264 (patch)
tree603b5d813bd3dfa6be7339d0aec6df8084c86847
parent6159dd825e80af2be8c73d7bf37ab939c9e730f0 (diff)
tweaked color and highlight
-rw-r--r--LICENSE.md2
-rw-r--r--README.md18
-rw-r--r--exampleSite/config.toml16
-rw-r--r--theme.toml12
4 files changed, 28 insertions, 20 deletions
diff --git a/LICENSE.md b/LICENSE.md
index f43efa8..61b5ce9 100644
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2017 Calin Tataru
+Copyright (c) 2017 Nate Day
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
diff --git a/README.md b/README.md
index 16e8966..c016370 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,14 @@
# Minimal2
-Personal blog theme powered by [Hugo](https://gohugo.io).
-A live demo is available [here](https://themungler.com).
+A personal blog theme powered by [Hugo](https://gohugo.io), built on top on the great [Minimal](https://github.com/calintat/minimal) theme. The notable additions include:
+
+- A night-mode toggle
+- A larger more defined footer
+- A tags/categories partial template
+- All tags are links too
+- Seperate list templates for posts and projects
+
+A live demo is available [here](https://natedayta.com).
## Installation
@@ -23,7 +30,7 @@ $ git submodule update --remote themes/minimal
## Configuration
-After installation, take a look at the `exampleSite` folder inside `themes/minimal`.
+After installation, take a look at the `exampleSite` folder inside `themes/minimal2`.
To get started, copy the `config.toml` file inside `exampleSite` to the root of your Hugo site:
@@ -51,8 +58,9 @@ For best results, I recommend you use a dark accent colour with a light backgrou
[params]
accent = "red"
showBorder = true
- backgroundColor = "white"
+ backgroundColor = "#f5f5f5"
```
+You can use hex codes or color names ("red"), I reccomend using hex codes for more specific color assignments.
### Fonts
@@ -81,5 +89,5 @@ Please note the style and languages should be written in hyphen-separated lowerc
[params]
highlight = true
highlightStyle = "solarized-dark"
- highlightLanguages = ["go", "haskell", "kotlin", "scala", "swift"]
+ highlightLanguages = ["R"]
```
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 15ffac4..962b614 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,9 +1,9 @@
baseURL = "/"
languageCode = "en-us"
-title = "NateDay-ta"
-description = "R focused data docs"
+title = "Min Night"
+description = "A personal blog"
theme = "minimal"
-disqusShortname = ""#"nateday-me" # delete this to disable disqus comments
+disqusShortname = ""
googleAnalytics = ""
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files/", "_cache$"]
@@ -11,15 +11,15 @@ ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files/", "_cache$"]
post = "/:year/:month/:day/:slug/"
[params]
- author = "Nate Day"
- description = "R focused data docs"
- githubUsername = "NathanCDay"
- accent = "#006264"
+ author = ""
+ description = "A personal blog"
+ githubUsername = ""
+ accent = "maroon" # dark colors do best
showBorder = true
backgroundColor = "#f5f5f5"
font = "Raleway" # should match the name on Google Fonts!
highlight = true
- highlightStyle = "atelier-seaside-light"
+ highlightStyle = "atelier-heath-light"
highlightLanguages = ["R"]
[[menu.main]]
diff --git a/theme.toml b/theme.toml
index 3cf5309..bf87552 100644
--- a/theme.toml
+++ b/theme.toml
@@ -1,12 +1,12 @@
-name = "Minimal"
+name = "Minimal2"
license = "MIT"
-licenselink = "https://github.com/calintat/minimal/blob/master/LICENSE.md"
+licenselink = "https://github.com/nathancday/minimal2/blob/master/LICENSE.md"
description = "Personal blog theme powered by Hugo"
-homepage = "http://github.com/calintat/minimal/"
+homepage = "http://github.com/nathancday/minimal2"
tags = ["blog", "minimal", "personal", "responsive"]
-features = ["responsive"]
+features = ["responsive", "night-theme"]
min_version = "0.24.1"
[author]
- name = "Calin Tataru"
- homepage = "https://calintat.github.io/"
+ name = "Nate Day"
+ homepage = "https://natedayta.com"