Archive the New Comment System posts

This commit is contained in:
2021-10-01 19:29:27 -05:00
parent 8854c6d685
commit 92b555980e
3 changed files with 19 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
+++
title = "Archive"
description = """
Lorem ipsum
"""
+++

View File

@@ -0,0 +1,42 @@
+++
title = "New Comment System (again)"
date = "2021-04-17"
toc = true
aliases = [
"posts/new-comment-system-again/",
]
description = """
I decided to switch my comment system from Isso to
[Commento](https://www.commento.io/)
"""
#tags = [
# "announcement",
# "hugo",
# "blog",
#]
+++
## Isso vs Commento
I know it's only been six days since I added Isso, but I decided to switch to a
better comment system. Isso is meant to be simple, which means that it's missing
a lot of features. Commento has a lot of features such as sticky (pinned)
comments, spam detection, thread locking, email notifications (I couldn't get
this working on Isso), and a nicer design. I also was able to write some
[custom CSS rules][1] which make it look alright on my blog's theme. It also
supports SSO, so I might add support for signing up with GitHub, and possibly
GitLab.
## Summary of the [first post](new-comment-system)
If you haven't read the
[New Comment System](new-comment-system) post, here's the
most important information. There's a comment section at the bottom of each post
where you can view and post comments. You can post anonymously, or create an
account so you can show your username and get email notifications. You can also
upvote, downvote, and reply to other comments.
[1]: https://git.bbaovanc.com/bbaovanc.com/blog/src/commit/478e15218313a33216d361de387b3bd878cd0ba6/assets/css/comments.css

View File

@@ -0,0 +1,44 @@
+++
title = "New Comment System"
date = "2021-04-11"
toc = true
aliases = [
"posts/new-comment-system/",
]
description = """
I added a comment system to my blog, using [Isso](https://posativ.org/isso/).
"""
#tags = [
# "announcement",
# "hugo",
# "blog",
#]
+++
## 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 (forbidden).
### 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.