diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 1f00b30..b29d493 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -49,7 +49,7 @@
{{ .Content }}
- {{ if .Site.DisqusShortname }}
+ {{ if .Site.Config.Services.Disqus.Shortname }}
diff --git a/layouts/partials/page.html b/layouts/partials/page.html
index e0eb4df..091bec9 100644
--- a/layouts/partials/page.html
+++ b/layouts/partials/page.html
@@ -2,7 +2,7 @@
{{ .Content }}
- {{ if .Site.DisqusShortname }}
+ {{ if .Site.Config.Services.Disqus.Shortname }}
diff --git a/themes/hugo-universal-theme/static/css/custom.css b/themes/hugo-universal-theme/static/css/custom.css
index a745873..df050a8 100644
--- a/themes/hugo-universal-theme/static/css/custom.css
+++ b/themes/hugo-universal-theme/static/css/custom.css
@@ -11,3 +11,22 @@
.box-simple {
min-height: 230px;
}
+
+a {
+ color: #ff6905;
+ text-decoration: none;
+ transition: color 0.3s ease;
+}
+
+a:hover {
+ color: #e55f00;
+ text-decoration: underline;
+}
+
+a:visited {
+ color: #b34c00;
+}
+
+a:active {
+ color: #cc5500;
+}