diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index f08cf03..b2b2dd4 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -4,14 +4,15 @@
{{ partial "content.html" . }}
+ {{ partial "share.html" . }}
+ {{ partial "comments.html" . }}
+ {{ partial "related-content.html" . }}
+
{{ with .Scratch.Get "unsplash_data" }}
{{ end }}
-
- {{ partial "share.html" . }}
- {{ partial "related-content.html" . }}
{{ end }}
diff --git a/layouts/partials/comments.html b/layouts/partials/comments.html
new file mode 100644
index 0000000..35e3b79
--- /dev/null
+++ b/layouts/partials/comments.html
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/static/src/scss/style.scss b/static/src/scss/style.scss
index 38b065a..5d825c9 100644
--- a/static/src/scss/style.scss
+++ b/static/src/scss/style.scss
@@ -386,3 +386,32 @@ a.no-color-change {
max-width: 75%;
}
}
+
+// Override styles for commento
+#commento {
+ .commento-profile-button {
+ fill: $body-color;
+ }
+
+ .commento-name,
+ #commento-mod-tools-lock-button,
+ .commento-login-text,
+ .commento-anonymous-checkbox-container label {
+ color: $body-color;
+ }
+
+ #commento-textarea-root,
+ #commento-guest-details-input-root,
+ .commento-textarea-container textarea {
+ background-color: $black;
+ color: $body-color;
+ }
+
+ .commento-card {
+ border-top: 1px solid transparentize($black, 0.4);
+
+ p {
+ color: $body-color;
+ }
+ }
+}