Welcome to blogmate.io! We're really happy you're here. Getting started is really easy, with only two steps. If you run into any issues, please reach out.

Onboarding

1. Setup Your Blog

  1. Go to your Blog in the admin section
  2. Add the URL for your blog, e.g. "https://yourblog.com"
  3. Save your settings

2. Add the Script Tag To Your Site

Integration with blogmate just requires adding a single script tag. This script will inject blogmate onto your page by inserting the iframe at the bottom of the main section meaning your page HTML must include a section with main tags.
<html>
 <head>
  ...
    <script defer src="https://blogmate.io/scripts/embed.js"></script>
  </head>
</html>

Jekyll

If you are using Jekyll, you can insert the following code snippet into the head of your template. If your template is based on Minima, you can add the script tag to '_includes/custom-head.html'. If you don't want certain posts to have comments, you can restrict based on the post id.

{%- if page.id && jekyll.environment == "production" -%}
    <script defer src="https://blogmate.io/scripts/embed.js"></script>
{%- endif -%}