你好笔记你好笔记
A post about 这是中文测试
Namecrane 是十五年的老商家 BuyVM 母公司 Frantech 旗下公司。由 BuyVM (BuyShared) 独立而来。
适合一次性付费养老自用的域名邮箱,收信、偶尔发信,存储备份。网站 stmp 发注册、激活、找回密码、订单邮件等。
邮箱特点:
Fastmail,贵,年付60美元。 MXRoute,终身优惠99美元。老板喜欢针对国人,容易被封号。存储容量小。 Proton Mail,贵,年付120美元。 私有协议,不支持第三方客户端。
A post about My Post
Your content goes here... hello
Learn more about hi and my-blog
Hello! I'm hi, and welcome to my-blog.
This is where you can introduce yourself to your readers. Consider including:
Describe the topics you cover on your blog. For example:
Share your story - what led you to start blogging? What experiences shaped your perspective?
Add your contact information and social media links:
This blog is built with Blogr, a modern CLI static site generator. The site uses the Minimal Retro theme, chosen for its clean design and focus on readability.
Share some interesting or fun facts about yourself:
Thanks for visiting! Feel free to reach out if you have any questions or just want to chat.
Last updated: 2025-12-13
Welcome to my-blog! This is your first blog post to help you get started.
Congratulations! 🎉 You've successfully set up your new blog with Blogr. This is your first blog post, and it's here to help you understand how everything works.
Blogr is a modern CLI static site generator specifically designed for blogs. It focuses on:
Here are some commands to help you get started:
blogr new "My Second Post"
This will create a new markdown file in your posts/ directory with the proper front matter.
blogr serve
This starts a local development server with live reload. Any changes you make to your posts or configuration will automatically update in your browser.
blogr build
This generates the static files for your blog in the dist/ directory.
blogr deploy
This builds and deploys your site to GitHub Pages automatically.
All your blog posts go in the posts/ directory as Markdown files. Each post needs front matter at the top with metadata:
---
title: "Your Post Title"
date: "2024-01-15"
author: "Your Name"
description: "Brief description for SEO and previews"
tags: ["tag1", "tag2", "tag3"]
status: "published" # or "draft"
slug: "url-friendly-slug"
featured: false # Set to true for featured posts
---
Blogr supports all standard Markdown features plus some extras:
#, ##, ###, etc.[Link text](https://example.com)Code blocks are automatically highlighted:
fn main() {
println!("Hello, Blogr!");
}
function greet(name) {
console.log(`Hello, ${name}!`);
}
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
Your blog uses the Minimal Retro theme. You can customize colors, fonts, and other settings in your blogr.toml file:
[theme.config]
primary_color = "#FF6B35"
secondary_color = "#F7931E"
background_color = "#2D1B0F"
font_family = "Monaco, 'Courier New', monospace"
show_reading_time = true
show_author = true
Put images, custom CSS, JavaScript, and other static files in the static/ directory. They'll be copied to your built site automatically.
your-blog/
├── blogr.toml # Configuration
├── posts/ # Your blog posts
│ ├── welcome.md # This post
│ └── about.md # About page
├── static/ # Static assets
│ ├── images/
│ ├── css/
│ └── js/
├── themes/ # Custom theme files (optional)
└── dist/ # Built site (generated)
blogr serve to check how posts lookNow that you have Blogr set up, here are some things you might want to do:
blogr --help for command referenceblogr project check to validate your setupHappy blogging! 🚀
This post was automatically generated when you initialized your Blogr project. Feel free to edit or delete it.