Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add Hugo link #1774

Merged
merged 4 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ export const sidebarData: ISidebar[] = [
},
{ name: 'Communities', url: '/communities', resources: DB.communities },
{ name: 'Roadmaps', url: '/roadmaps', resources: DB.roadmaps },
{ name: 'Other Tools', url: '/other-tools', resources: DB.otherTools },
],
},
]
Expand Down
1 change: 1 addition & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export { default as podcasts } from './other/podcasts.json'
export { default as otherResources } from './other/other-resources.json'
export { default as communities } from './other/communities.json'
export { default as roadmaps } from './other/roadmaps.json'
export { default as otherTools } from './other/other-tools.json'
// competitive programming
export { default as cpPlatforms } from './competitive_programming/cp-platforms.json'
export { default as cpTutorials } from './competitive_programming/cp-tutorials.json'
Expand Down
9 changes: 9 additions & 0 deletions database/other/other-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
"name": "Hugo",
"description": "If you're looking for a framework to help you build your documentation site quickly, check out Hugo. It allows you to output your content in multiple formats, including JSON or AMP as well as provides shortcodes to simplify your Markdown files.",
"url": "https://gohugo.io/",
"category": "other",
"subcategory": "other-tools"
}
]
Loading