This is a CNblog blog template theme built on Tona.
If you wish to customize or further develop your blog theme, please refer to the following steps:
pnpm installpnpm devpnpm build.
├── src/
│ ├── main.js # Theme Entry File
│ └── style.css # Style File
├── vite.config.mjs # Vite Configration File
└── package.json # Project Settings
In src/main.js, you can register plugins using createTheme().use():
import { createTheme } from 'tona'
import './style.css'
function myPlugin() {
// The logic of your plud
}
createTheme().use(myPlugin)Write your theme styles in src/style.css.
This content is distributed under the MIT license.