Shortcode for Hugo to display the replies to a Fediverse-thread as blog comments.
Go to file
tastytea 8776d5cea2
Add styling section to readme.
2019-10-31 06:20:47 +01:00
README.adoc Add styling section to readme. 2019-10-31 06:20:47 +01:00
mastodon-api-comments.html Rename everything from fediverse-comments to mastodon-api-comments. 2019-10-31 06:20:30 +01:00
mastodon-api-comments.js Rename everything from fediverse-comments to mastodon-api-comments. 2019-10-31 06:20:30 +01:00

README.adoc

mastodon-api-comments

Setup

First copy mastodon-api-comments.html to your shortcodes directory. This is either layouts/shortcodes or themes/{your-theme}/layouts/shortcodes.

Then download mastodon.js and JQuery and copy it together with mastodon-api-comments.js from this repo into content/scripts.

Then add the following code to layouts/partials/mastodon-api-comments-scripts.html or themes/{your-theme}/layouts/partials/mastodon-api-comments-scripts.html:

<script type="application/javascript" src="/scripts/jquery-3.4.1.min.js"></script>
<script type="application/javascript" src="/scripts/mastodon.js"></script>
<script type="application/javascript" src="/scripts/mastodon-api-comments.js"></script>

Usage

The shortcode takes the following arguments:

Argument Description

instance

The domain name of the instance.

status_id

The ID of the status.

Styling

The generated HTML uses these classes:

Name Description

mastodon-api-comments

Encompasses everything.

mastodon-api-comment-intro

The introduction sentence.

mastodon-api-comment

A complete comment.

mastodon-api-comment-author

The author portion the comment.

Example CSS

.mastodon-api-comment
{
    margin-left: 1em;
    border: 0.1em solid black;
    padding: 0.1em 1em;
}
.mastodon-api-comment:nth-child(even)
{
    background-color:#0402
}
.mastodon-api-comment:nth-child(odd)
{
    background-color:#2402
}