A bilingual (Chinese/English) blog theme for Astro, themed after Arknights: Endfield.
- Clone & Enter the repo:
git clone https://github.com/devLythen/astro-endfield-theme.git astro-blog
cd astro-blog- Install the dependencies (bun's example)
bun install- Do what you wanna do
bun run dev # Start the developing server
bun run build # Build the static pagesCopy and edit theme.toml.example → theme.toml:
[site]
title = "My Blog"
lang = "zh-CN"
[about]
description = "wow another blog"
tagline = "OBSERVE · RECORD · CREATE"
# [build]
# outDir = "dist"Add .md files to src/content/posts/:
---
title: My First Post
date: 1980-01-01
description: A short summary
tags: [tag1, tag2]
draft: false
---
Your content here.git pull origin mainTheme files update automatically. Your config and posts are protected by .gitignore — no merge conflicts.