by Docsie
See our blog https://www.docsie.io/blog/
I tried to setup a static blog for my company, but I quickly found out that it's really difficult to get a nice looking free blog with search and comments without:
- ❌ Paying a monthly Subscription for a SaaS commercial Blog
- ❌ Hosting a search backend/opensource blog
- ❌ Paying for third party search solution
The goal of this project is to be a free static blog:
- ✅ That can be hosted on github pages
- ✅ That supports search, comments, analytics and custom javascripts out of the box with minimal configuration
- ✅ That looks nice and modern and supports beautiful responsive theming with tailwind CSS
- ✅ That costs 0 dollars to host and maintain
- ✅ Provides it's administrator with a simple workflow to create, approve and publish blog posts from other contributors
- ✅ Provides me with a fun side project to contirbute to in my spare time
See example here: www.docsie.io/blog/
pip install git+https://github.com/LikaloLLC/BlogVi
mkdir blog
cd blog
Note: 1_settings.yaml
is the required filename.
touch 1_settings.yaml
# mandatory
blog_name: "Docsie.io Blog"
blog_post_location_url: "https://docs.google.com/spreadsheets/d/e/2PACX-1vR2Unb1VTOB1upja915Rp7N6MJnqtLLOPYUlrJW7R0qybH_kGWB1wPozgjAf6X5JD-Bv_XldO9yKSLU/pub?output=csv"
domain_url: "https://www.docsie.io/"
blog_root_url: "blog/"
# optional
link_menu:
- link: "https://www.docsie.io"
text: "Docsie"
- link: "https://www.docsie.io/pricing/"
text: "Docsie Pricing"
- link: "https://www.docsie.io/try_docsie/"
text: "Try Docsie"
search_config:
title:
weight: 8
summary:
weight: 6
author_name:
weight: 5
categories:
weight: 3
comments:
enabled: true
commentbox_project_id: "5725910686760960-proj"
subscribe:
enabled: true
title: "Subscribe to the newsletter"
summary: "Stay up to date with our latest news and products"
button_text: "Subscribe"
sharect:
enabled: true
twitter: true
facebook: true
twitterUsername: ""
backgroundColor: "#333333"
iconColor: "#FFFFFF"
selectableElements:
- body
landing_meta:
title: ""
description: ""
image: ""
keywords: ""
url: ""
author: ""
blogvi .
blog_name
The name of the blog, which will be shown on the home page.
blog_post_location_url
A URL to the CSV table, containing content and meta of all articles.
domain_url
Domain name. Used in generating internal links.
blog_root_url
Blog path under the specified domain. Used in generating internal links.
link_menu
The list of external links in the header and footer
search_config
The search config.
Each key is an article field name, and wight gives them higher (or lower) values in search results.
comments
Enable or disable comment system on the blog. It uses commentbox as a provider.
You need to provide commentbox_project_id
, available after registration a project,
in order to enable this functionality.
google_tag_manager
Enable or disable Google Tag Manager on the blog. This is handy if you have lots of marketing, analytics and other tags that you need to add to your blog.
You need to provide google_tag_manager_projectid
, which you can get by following this guide,in order to enable this functionality.
subscribe
Enable or disable "subscribe to the newsletter" form.
sharect
Enable or disable sharing system. Uses sharect as a provider.
It mirrors settings from sharect.
landing_meta
Meta info for the blog.