--- // 静态图片 // Svg 组件 import Svg from "@/components/Svg/Svg.astro"; import { Image } from "astro:assets"; // 时间处理 import { fmtTime } from "@/utils/index"; // 获取用户配置数据 import SITE_CONFIG from "@/config"; const { Avatar, Author, Motto, WebSites, GoogleAds, AsideShow } = SITE_CONFIG; // 获取文章数据 import { getCategories, getTags, getRecommendArticles, getCountInfo } from "@/utils/getPostInfo"; // 获取数据统计 // 分类列表 const categories = getCategories(); // 热门标签 const tags = getTags().slice(0, 16); // 获取网站统计数据 const CountInfo = getCountInfo(); // 最新文章 const recommendArticles = getRecommendArticles(); // Google 广告组件 import GoogleAd from "@/components/GoogleAd/GoogleAd.astro"; // 侧边栏样式 import "./Aside.less"; ---