产品沉思录索引页面,精选产品思考与洞察文章合集。
- 内容精选:收录产品思考、行业洞察等优质文章
- 轻量快速:纯静态页面,无需数据库
- 响应式设计:全平台适配
- 易于部署:一行命令启动
# Python 3
python3 -m http.server 8889
# 访问 http://localhost:8889# 克隆项目
git clone git@github.com:Evenss/pmthinking-index.git
# 启动服务
cd pmthinking-index
python3 -m http.server 8889pmthinking-index/
├── index.html # 博客主页
└── articles.json # 文章数据
{
"articles": [
{
"title": "文章标题",
"date": "2024-01-01",
"category": "分类",
"content": "文章内容...",
"tags": ["标签 1", "标签 2"]
}
]
}编辑 articles.json,在 articles 数组中添加:
{
"title": "新文章标题",
"date": "2024-03-10",
"category": "产品思考",
"content": "文章内容...",
"tags": ["产品", "洞察"]
}编辑 index.html 中的 <style> 部分,调整配色、字体等。
- Chrome / Edge (推荐)
- Firefox
- Safari
- 移动端浏览器
MIT License