Shopone主题模板是用于构建产品帮助中心、产品手册、操作说明、视频教程和常见问题解答的专业模板。
模板特点:
- 构建通用内容:FAQs、News、Videos、Events 等。
- 每个产品 SKU 又有完整的 FAQs、News、Videos等内容。
- 子页面包括通用的内容,来自通用栏目。
- 子页面包括的特殊内容,则在本页创建。
目标:极大的提高了内容的复用率。

界面展示结果:
- 首页、顶部导航展示通用栏目内容。
- 产品 SKU 中展示当前产品的通用+特殊内容。

目标:极大的提高了内容的复用率。









```
├── README.md
├── config
│ └── settings_schema.json
├── layout
│ └── theme.liquid
├── package-lock.json
├── package.json
├── snippets
│ ├── _breadcrumb.liquid
│ ├── _collapse_pages.liquid
│ ├── _feedback_form.liquid
│ ├── _footer.liquid
│ ├── _header.liquid
│ ├── _hero.liquid
│ ├── _page_sliders.liquid
│ ├── _play_video.liquid
│ ├── _related_pages.liquid
│ ├── _sub_page_list.liquid
│ └── _tag.liquid
├── statics
│ ├── about.liquid
│ └── sitemap.liquid
├── tailwind.config.js
├── templates
│ ├── channel.liquid
│ ├── channel.products.liquid
│ ├── channel.videos.liquid
│ ├── index.liquid
│ ├── page.liquid
│ ├── page.product.liquid
│ ├── page.video.liquid
│ ├── post.liquid
│ ├── search.liquid
│ └── tag.liquid
└── yarn.lock
```