diff --git a/assets/_utils.scss b/assets/_utils.scss
index fd773d3..bb0120c 100644
--- a/assets/_utils.scss
+++ b/assets/_utils.scss
@@ -26,6 +26,10 @@
margin: 0 auto;
}
+.hide {
+ display: none;
+}
+
@mixin fixed {
position: fixed;
top: 0;
@@ -34,6 +38,12 @@
overflow-y: auto;
}
-.hide {
- display: none;
-}
+@mixin dark-links {
+ a {
+ color: $nav-link-color;
+ }
+
+ a.active {
+ color: $color-link;
+ }
+}
\ No newline at end of file
diff --git a/assets/book.scss b/assets/book.scss
index d476111..2032466 100644
--- a/assets/book.scss
+++ b/assets/book.scss
@@ -103,13 +103,7 @@ ul.pagination {
@include fixed;
}
- a {
- color: $nav-link-color;
- }
-
- a.active {
- color: $color-link;
- }
+ @include dark-links;
}
.book-page {
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md
index 6cb0a37..772bbe8 100644
--- a/exampleSite/content/_index.md
+++ b/exampleSite/content/_index.md
@@ -1,5 +1,5 @@
---
-title: Index
+title: Introduction
type: docs
---
diff --git a/layouts/404.html b/layouts/404.html
index ca630ee..06ca617 100644
--- a/layouts/404.html
+++ b/layouts/404.html
@@ -2,7 +2,9 @@
{{ define "main"}}