Koibumi Astro Blog Document

This is a blog template build with Astro. It started from the minimal official Astro blog template but use Koibumi Design System for styling.

This is a simple template that you can customize it easily. For advanced usage, you can check the Astro documentation.

Site Profile Configuration

You can configure the site profile in src/consts.ts file. Here is the default configuration:

export const SITE_TITLE = 'Koibumi Blog';

export const SITE_DESCRIPTION = 'A blog about SolidJS, Astro, and koibumi design.';

export const FAVICON_SRC = '/favicon.svg';

export const AVATAR_SRC = '/avatar.avif';

export const BIO = " Welcome to my website! I write about programming, technology, and other things that interest me."

export const GLOBAL_STYLE: 'quartz' | 'glass' | 'lightGlass' = 'glass'

export const COPYRIGHT_NAME = 'Koibumi Design';
AttributeDescription
SITE_TITLEThe title of the site.
SITE_DESCRIPTIONThe description of the site.
FAVICON_SRCThe path of the favicon.
AVATAR_SRCThe path of the avatar.
BIOThe bio of the author.
GLOBAL_STYLEThe global style of the site. You can choose one from quartz, glass, and lightGlass.
COPYRIGHT_NAMEThe name of the copyright.

How to change the favicon and avatar

You can find the avatar and favicon in /public folder. You can replace them with your own images.

If you change the name of the file, for example, favicon.svg to favicon.ico, you need to also change the FAVICON_SRC or AVATAR_SRC in src/consts.ts file.

How to set the language

Setting the language by editing the const.ts is not supported yet. You can set the language by editing the lang attribute in the html tag in these files:

  • src/layouts/BlogPost.astro
  • src/pages/index.astro
  • src/pages/blog/index.astro

How to set your contact information

Setting contact information is not supported yet. You can only edit the src/pages/index.astro file manually.

Edit this pattern:


<div id="contact">
    <a class="icon-link" href="https://github.com/koibumi-design" target="_blank" aria-label="GitHub">
        <GitHubIcon/>
    </a>
</div>

To get the icons, you can use the Simple Icons website.

Frontmatter of the blog post

You must set the frontmatter of the blog post in the markdown file. Here is an example:

---
title: 'Koibumi Astro Blog Document'
description: 'Introduce how to use Koibumi Astro Blog (English Version)'
pubDate: 'Mar 26 2023'
heroImage: '/117092881_p1.webp'
pinned: true
notCompleted: false
---
AttributeDescription
titleThe title of the blog post.
descriptionThe description of the blog post.
pubDateThe publication date of the blog post.
heroImage(optional) The cover of the blog post.
pinned(optional, default is false) Pin the blog post.
notCompleted(optional, default is false) Mark as not completed. Not completed post will not be shown in the blog list.

How to add a new blog post

Just create a .md file in the src/content/blog folder. You can copy the existing file and edit the frontmatter.

If you don’t know how to use markdown, you should check the Markdown Guide.

How to add a new page

Create a new .astro file in the src/pages folder. You can copy the existing file and edit it.

If you want to add the page or external link to the navigation bar, you can edit the src/components/Header.astro file.

How to change a new background

Find src/styles/global.scss file and edit the background-image property in the body selector.

body {

  /* Edit the following line */
  background-image: url('/background.webp'), linear-gradient(to right, #ffcdb9, #FFC0CB);

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

How to use LaTex in the blog post

Math is rendered using KaTeX. To load that, add css tag in the first line of the markdown file.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">

How to host my blog

For convenience to editing, you can import the repository to your GitHub account. Then, you can deploy it to any free static site hosting service you like.

Recommend free hosting services:

A domain is required to use these services.

Attribution List