From 83f780a8b47b6945baf71ecd0992036256229bd5 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sun, 11 Apr 2021 00:43:32 -0500 Subject: [PATCH] Add new comment system post --- content/posts/new-comment-system.md | 39 +++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 content/posts/new-comment-system.md diff --git a/content/posts/new-comment-system.md b/content/posts/new-comment-system.md new file mode 100644 index 0000000..29a8f55 --- /dev/null +++ b/content/posts/new-comment-system.md @@ -0,0 +1,39 @@ ++++ +title = "New Comment System" +date = "2021-04-11T00:17:13-05:00" +author = "bbaovanc" +tags = ["announcement", "hugo", "blog"] +keywords = ["hugo", "comment system", "blog", "isso"] + +description = """ +I added a comment system to my blog, using [Isso](https://posativ.org/isso/). +""" + +showFullContent = false +toc = true ++++ + +## About + +I set up a comment system named [Isso](https://posativ.org/isso/) on my blog +today. At the bottom of each blog post, there's a comment section. You don't +need to sign up with an account or sign in with Google, Facebook, none of that +junk. You can comment anonymously, or provide any of the following three fields: +name, email address, and website, which will be shown to other people viewing +your comment. I'm going off of the assumption that no one cares/is malicious +enough to spam my comment sections. + +## Known Issues + +### Editing and deleting not working + +You're supposed to be able to edit and delete comments up to 15 minutes after +posting them. As of now, that doesn't seem to be working; the request just +returns 403 (unauthorized). + +### White text on white background when previewing comment + +This is a CSS related issue. This was also happening when editing/writing a +comment, but I edited it so the edit box has black text. I think a better fix is +to make the new comment form have a dark background, but I'll deal with that +later.