diff --git a/templates/_style.html b/templates/_style.html
index aefb6bd..0a65893 100644
--- a/templates/_style.html
+++ b/templates/_style.html
@@ -80,6 +80,61 @@
margin-right: auto;
}
+ input {
+ font: inherit;
+ font-style: normal;
+ border: 3px solid var(--text-subcolor);
+ background: var(--background-color);
+ color: var(--text-color);
+
+ padding: 10px;
+ margin: 2.5px 0 2.5px -8px;
+
+ /* resize : none; */
+ overflow: auto;
+ }
+ input:focus {
+ outline: 2px solid var(--text-subcolor);
+ }
+
+ input[type=submit] {
+ color: var(--text-subcolor);
+ }
+ input[type=submit]:hover,
+ input[type=submit]:focus {
+ color: var(--background-color);
+ background: var(--text-subcolor);
+ }
+
+ .comments-form {
+ margin-top: -0.8em;
+
+ input[type=submit] {
+ width: 15%;
+ float: right
+ }
+
+ input[type=text] {
+ width: 80%;
+ }
+ }
+
+ .comments-embed {
+ margin: 10px;
+ margin-top: -1em;
+ width: 100%;
+ height: auto;
+ }
+
+ .comments-list {
+ background: var(--background-color);
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+ }
+
a {
/* Links */
color: var(--text-color);
@@ -118,8 +173,8 @@
color: var(--text-subcolor);
}
- .publish-date {
- margin: -1.5em 0 0 0;
+ .header-caption {
+ margin: -1.5em 0 0 0;
color: var(--text-subcolor);
}
@@ -170,8 +225,8 @@
footer {
margin-top: 4em;
- text-align: center;
- color: var(--text-subcolor);
+ text-align: center;
+ color: var(--text-subcolor);
}
footer p {
diff --git a/templates/blog.html b/templates/blog.html
index 3f5ded4..e0c7ee2 100644
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -1,7 +1,7 @@
{{ template "_style.html" .}}
{{ template "_header.html" .}}
-
+{{ template "_content_start.html" .}}
{{ .Title }}
@@ -13,6 +13,7 @@
{{ end }}
-{{ .Content }}
+{{ .Content }}
+{{ template "_content_end.html" .}}
{{ template "_footer.html" .}}
diff --git a/templates/comments.html b/templates/comments.html
new file mode 100644
index 0000000..3992784
--- /dev/null
+++ b/templates/comments.html
@@ -0,0 +1,20 @@
+
+
+
+
Comments
+
+
+
Comment:
+
+
+
+
+
What other people said...
+
+
\ No newline at end of file
diff --git a/templates/comments_embedded.html b/templates/comments_embedded.html
new file mode 100644
index 0000000..a629ddd
--- /dev/null
+++ b/templates/comments_embedded.html
@@ -0,0 +1,5 @@
+{{ template "_style.html" .}}
+
+
\ No newline at end of file
diff --git a/templates/default.html b/templates/default.html
index c7121c7..a170901 100644
--- a/templates/default.html
+++ b/templates/default.html
@@ -1,13 +1,19 @@
{{ template "_style.html" .}}
{{ template "_header.html" .}}
+
+{{ template "_content_start.html" .}}
{{ .Title }}
{{ if not .Page.DatePublished.IsZero }}
-
Published on
+
{{ end }}
{{ .Content }}
+{{ template "_content_end.html" .}}
+
+
+{{ template "comments.html" .}}
{{ template "_footer.html" .}}
diff --git a/templates/default_no_comment.html b/templates/default_no_comment.html
new file mode 100644
index 0000000..bc39534
--- /dev/null
+++ b/templates/default_no_comment.html
@@ -0,0 +1,17 @@
+{{ template "_style.html" .}}
+{{ template "_header.html" .}}
+
+
+{{ template "_content_start.html" .}}
+
{{ .Title }}
+
+{{ if not .Page.DatePublished.IsZero }}
+
+
+{{ end }}
+
+{{ .Content }}
+{{ template "_content_end.html" .}}
+
+
+{{ template "_footer.html" .}}
\ No newline at end of file