LiuShen / NewAPI自定义主页代码
0 likes
0 forks
1 files
Last active 1 day ago
| 1 | <div class="bg-background text-foreground relative min-h-svh overflow-x-clip qy-home" data-qy-theme="light"> |
| 2 | <style> |
| 3 | .qy-home { |
| 4 | --qy-bg: #fbfaf7; |
| 5 | --qy-bg-soft: rgba(255, 255, 255, 0.72); |
| 6 | --qy-bg-solid: rgba(255, 255, 255, 0.92); |
| 7 | --qy-text: #151a1f; |
| 8 | --qy-muted: #68717d; |
| 9 | --qy-faint: #8b96a5; |
| 10 | --qy-line: rgba(37, 45, 57, 0.1); |
LiuShen / AppStore完善同步更新Action脚本
0 likes
0 forks
2 files
Last active 3 weeks ago
| 1 | name: Sync commits to CNB (force) |
| 2 | |
| 3 | on: |
| 4 | schedule: |
| 5 | - cron: "0 0 * * *" # 每天凌晨 0 点强制同步(兜底) |
| 6 | - cron: "0 */6 * * *" # 每 6 小时检查一次 |
| 7 | push: |
| 8 | branches: |
| 9 | - main |
| 10 | workflow_call: # 允许被其他工作流调用 |
LiuShen / ech0摘要生成提示词
0 likes
0 forks
1 files
Last active 3 weeks ago
| 1 | 你是中文情感分析专家。输入为作者最近发布的多条说说内容,请根据内容生成情绪与状态总结。 |
| 2 | |
| 3 | 输出规则: |
| 4 | 1. 必须只输出五行内容,不允许出现任何解释或行标签,例如“第一行”“第二行”等。 |
| 5 | 2. 不要输出 Markdown 代码块或列表。 |
| 6 | 3. 每一行只允许包含规定内容。 |
| 7 | 4. 第四行必须是完全空行,不允许出现任何字符或空格。 |
| 8 | 5. 可以使用常见标点,例如逗号、句号、感叹号、问号。 |
| 9 | 6. 允许使用 **加粗** 或 *斜体*。 |
| 10 | 7. **整段输出中至少包含五个加粗关键词**,用于突出核心事件或情绪。 |
Last active 3 weeks ago
SWPP标准配置文件,适配最新正式版
| 1 | import { |
| 2 | defineConfig |
| 3 | } from 'swpp-backends' |
| 4 | |
| 5 | defineConfig({ |
| 6 | compilationEnv: { |
| 7 | DOMAIN_HOST: new URL('https://blog.liushen.fun'), |
| 8 | SERVICE_WORKER: "sw", |
| 9 | JSON_HTML_LIMIT: 10, |
| 10 | // isStable: (url: URL) => { |
yxksw / Butterfly-音乐胶囊实现
0 likes
0 forks
5 files
Last active 3 weeks ago • Forked from LiuShen/Butterfly-音乐胶囊实现
🎵 音乐胶囊模块使用说明
本仓库提供了一个可集成到 Hexo 主题 liushen 的音乐胶囊播放器模块。模块包含四个主要部分:
- 主题配置文件
- 布局模板文件
- 样式文件
- 前端脚本
本文档将详细介绍它们的放置位置、引用方式和变量配置。
Allen2030 / Astro前端获取Ech0信息
0 likes
0 forks
1 files
Last active 3 weeks ago
Astro-theme-fuwari的Ech0说说获取参数
| 1 | // Ech0 API 工具函数 |
| 2 | |
| 3 | interface EssayData { |
| 4 | id: number; |
| 5 | content: string; |
| 6 | time: string; |
| 7 | tags: string[]; |
| 8 | images?: string[]; |
| 9 | } |
Allen2030 / 对fuwari主题的Twikoo评论区样式修复
0 likes
0 forks
1 files
Last active 3 weeks ago
Astro-theme-fuwari的Twikoo评论区样式修复
| 1 | --- |
| 2 | interface Props { |
| 3 | path: string; |
| 4 | } |
| 5 | |
| 6 | import { commentConfig } from "@/config"; |
| 7 | |
| 8 | const config = { |
| 9 | el: "#twikoo", |
| 10 | path: Astro.props.path, |
Newer
Older