This repository has been archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
148 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
export default [ | ||
{ | ||
text: 'Home', | ||
link: '/en/', | ||
icon: 'home' | ||
}, | ||
{ | ||
text: 'About', | ||
link: '/en/about', | ||
icon: "user" | ||
}, | ||
{ | ||
text: 'User Guide', | ||
link: '/en/guide/', | ||
icon: "book" | ||
}, | ||
{ | ||
text: 'Development Guide', | ||
link: '/en/develop/basic/', | ||
icon: "code" | ||
}, | ||
{ | ||
text: 'API Guide', | ||
link: '/en/develop/interface/', | ||
icon: "plug" | ||
}, | ||
{ | ||
text: 'Changelog', | ||
link: '/en/changelog', | ||
icon: "newspaper" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
export default { | ||
'/guide/': [ | ||
{ | ||
text: "User Guide", | ||
collapsible: true, | ||
children: [ | ||
{text: "Quick Start", link: "/guide/"}, | ||
{text: "More Configurations", link: "/guide/config.html"}, | ||
{text: "Theme Configuration", link: "/guide/theme.html"}, | ||
{text: "Comment System", link: "/guide/comment.html"}, | ||
{text: "Content Modules", link: "/guide/tags.html"}, | ||
{text: "Error Codes", link: "/guide/error-code.html"} | ||
] | ||
}, | ||
{ | ||
text: "Migration Guide", | ||
collapsible: true, | ||
children: [ | ||
{text: "Migrating from Shoka", link: "/guide/shoka.html"} | ||
] | ||
}, | ||
{ | ||
text: "Best Practices", | ||
collapsible: true, | ||
children: [ | ||
{text: "Performance Optimization", link: "/guide/performance.html"} | ||
] | ||
} | ||
], | ||
'/develop/': [ | ||
{ | ||
text: "Development Guide", | ||
collapsible: true, | ||
children: [ | ||
{text: "Quick Start", link: "/develop/basic/"}, | ||
{text: "Writing Plugins", link: "/develop/basic/plugin.html"} | ||
] | ||
}, | ||
{ | ||
text: "API Guide", | ||
collapsible: true, | ||
children: [ | ||
{text: "Glossary and Explanation", link: "/develop/interface/"}, | ||
{text: "DOM Helper Functions", link: "/develop/interface/dom.html"}, | ||
{text: "Storage Helper Functions", link: "/develop/interface/storage.html"}, | ||
{text: "Theme ShokaX Anime", link: "/develop/interface/anime.html"} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
home: true | ||
|
||
heroText: ShokaX | ||
tagline: Highly customizable Hexo theme that sets your blog apart | ||
actions: | ||
- type: primary | ||
text: Quick Start | ||
link: /guide/ | ||
- type: secondary | ||
text: Custom Development | ||
link: /develop/basic/ | ||
|
||
features: | ||
- title: Easy to Use | ||
details: ShokaX provides an installation CLI to simplify the setup process, ensuring that theme installation is no longer a stumbling block for new website owners. | ||
icon: boxes-stacked | ||
- title: Performance Improvement | ||
details: ShokaX, through code and third-party resource optimization, reduces loading times by around 40% compared to Shoka. | ||
icon: gears | ||
- title: Scalability & Customization Friendly | ||
details: ShokaX solves upgrade issues post-theme customization via InjectAPI and introduces a community plugin system. | ||
icon: plug | ||
- title: Developer-Friendly | ||
details: ShokaX leverages TypeScript for enhanced type hinting, along with comprehensive comments and development documentation. | ||
icon: code | ||
- title: Easy Migration | ||
details: Migrating from Shoka to ShokaX is relatively straightforward, requiring modifications to a few configurations and a reinstallation of npm packages. | ||
icon: truck-fast | ||
- title: Rich Functionality | ||
details: ShokaX offers out-of-the-box features like native PWA, multiple comment systems, and various widgets. | ||
icon: toolbox | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters