Ein schneller, textorientierter, minimalistischer Blog.
Englisch | 中文
├── public/
├── src/
│ ├── components/
│ ├── content/
│ ├── layouts/
│ ├── pages/
│ └── consts.ts
├── astro.config.mjs
├── README.md
├── package.json
└── tsconfig.json
Das Verzeichnis src/content/
enthält „Sammlungen“ verwandter Markdown- und MDX-Dokumente. Verwenden Sie getCollection()
um Beiträge von src/content/blog/
abzurufen, und überprüfen Sie Ihren Frontmatter mithilfe eines optionalen Schemas. Weitere Informationen finden Sie in den Content Collections-Dokumenten von Astro.
Alle statischen Assets, wie z. B. Bilder, können im Verzeichnis public/
abgelegt werden.
Die gesamte Konfiguration befindet sich in src/consts.ts
.
// src/consts.ts
// site config
export const SITE_TITLE = "PlainPage" ;
export const SITE_DESCRIPTION = "Welcome (. ❛ ᴗ ❛.)" ;
export const COPYRIGHT = "© 2024 PlainPage All Rights Reserved" ;
export const ICP_NUMBER = "" ;
// social links, empty or commented out = not displayed
export const SOCIAL_LINKS = {
Github : "https://github.com/churchTao" ,
Twitter : "https://twitter.com/yourusername" ,
// LinkedIn: "https://www.linkedin.com/in/yourusername",
// Instagram: "https://www.instagram.com/yourusername",
// Facebook: "https://www.facebook.com/yourusername",
// YouTube: "https://www.youtube.com/yourusername",
} ;
// SEO related
export const SEO_CONFIG = {
ogImage : "/hero-img.png" , // default social media share image
keywords : "blog, tech, programming" , // default keywords
} ;
// navigation config
export const NAV_ITEMS = [
{ text : "Home" , link : "/" } ,
{ text : "Blog" , link : "/blog" } ,
{ text : "Tags" , link : "/tags" } ,
{ text : "About" , link : "/about" } ,
] ;
// blog config
export const BLOG_CONFIG = {
locale : "en-us" , // date format language
authorName : "Author Name" , // author name
email : "mailto:[email protected]" ,
tags : {
title : "Tags" , // tags page title
description : "All the tags used in posts." , // tags page description
} ,
} ;
Alle Befehle werden im Stammverzeichnis des Projekts von einem Terminal aus ausgeführt:
Befehl | Aktion |
---|---|
npm install | Installiert Abhängigkeiten |
npm run dev | Startet den lokalen Entwicklungsserver bei localhost:4321 |
npm run build | Erstellen Sie Ihren Produktionsstandort auf ./dist/ |
npm run preview | Sehen Sie sich Ihren Build lokal in der Vorschau an, bevor Sie ihn bereitstellen |
npm run astro ... | Führen Sie CLI-Befehle wie astro add oder astro check aus |
npm run astro -- --help | Erhalten Sie Hilfe bei der Verwendung der Astro-CLI |
Dieses Thema basiert auf dem schönen Bear Blog.
Inspiriert von Satnaing/Astro-Papier.
Basierend auf Astro.
? Sie können Ihre Website der Liste hinzufügen, indem Sie eine PR erstellen.
Lizenziert unter der MIT-Lizenz, Copyright © 2024