{"id":21401490,"url":"https://github.com/spoonx/stix-website","last_synced_at":"2025-03-16T16:16:57.224Z","repository":{"id":149466143,"uuid":"154825414","full_name":"SpoonX/stix-website","owner":"SpoonX","description":":books: The stix website.","archived":false,"fork":false,"pushed_at":"2018-11-13T14:22:03.000Z","size":1013,"stargazers_count":2,"open_issues_count":3,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-23T03:15:08.556Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://stix.netlify.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SpoonX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-26T11:40:42.000Z","updated_at":"2020-05-19T03:22:58.000Z","dependencies_parsed_at":null,"dependency_job_id":"a324fa64-530a-4b32-802b-91a844989fd3","html_url":"https://github.com/SpoonX/stix-website","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpoonX%2Fstix-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpoonX%2Fstix-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpoonX%2Fstix-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpoonX%2Fstix-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpoonX","download_url":"https://codeload.github.com/SpoonX/stix-website/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243893897,"owners_count":20364919,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-22T15:28:08.156Z","updated_at":"2025-03-16T16:16:57.185Z","avatar_url":"https://github.com/SpoonX.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This website was created with [Docusaurus](https://docusaurus.io/).\n\n# What's In This Document\n\n* [Get Started in 5 Minutes](#get-started-in-5-minutes)\n* [Directory Structure](#directory-structure)\n* [Editing Content](#editing-content)\n* [Adding Content](#adding-content)\n* [Full Documentation](#full-documentation)\n\n# Get Started in 5 Minutes\n\n1. Make sure all the dependencies for the website are installed:\n\n```sh\n# Install dependencies\n$ yarn\n```\n2. Run your dev server:\n\n```sh\n# Start the site\n$ yarn start\n```\n\n## Directory Structure\n\nYour project file structure should look something like this\n\n```\nmy-docusaurus/\n  docs/\n    doc-1.md\n    doc-2.md\n    doc-3.md\n  website/\n    blog/\n      2016-3-11-oldest-post.md\n      2017-10-24-newest-post.md\n    core/\n    node_modules/\n    pages/\n    static/\n      css/\n      img/\n    package.json\n    sidebar.json\n    siteConfig.js\n```\n\n# Editing Content\n\n## Editing an existing docs page\n\nEdit docs by navigating to `docs/` and editing the corresponding document:\n\n`docs/doc-to-be-edited.md`\n\n```markdown\n---\nid: page-needs-edit\ntitle: This Doc Needs To Be Edited\n---\n\nEdit me...\n```\n\nFor more information about docs, click [here](https://docusaurus.io/docs/en/navigation)\n\n## Editing an existing blog post\n\nEdit blog posts by navigating to `website/blog` and editing the corresponding post:\n\n`website/blog/post-to-be-edited.md`\n```markdown\n---\nid: post-needs-edit\ntitle: This Blog Post Needs To Be Edited\n---\n\nEdit me...\n```\n\nFor more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)\n\n# Adding Content\n\n## Adding a new docs page to an existing sidebar\n\n1. Create the doc as a new markdown file in `/docs`, example `docs/newly-created-doc.md`:\n\n```md\n---\nid: newly-created-doc\ntitle: This Doc Needs To Be Edited\n---\n\nMy new content here..\n```\n\n1. Refer to that doc's ID in an existing sidebar in `website/sidebar.json`:\n\n```javascript\n// Add newly-created-doc to the Getting Started category of docs\n{\n  \"docs\": {\n    \"Getting Started\": [\n      \"quick-start\",\n      \"newly-created-doc\" // new doc here\n    ],\n    ...\n  },\n  ...\n}\n```\n\nFor more information about adding new docs, click [here](https://docusaurus.io/docs/en/navigation)\n\n## Adding a new blog post\n\n1. Make sure there is a header link to your blog in `website/siteConfig.js`:\n\n`website/siteConfig.js`\n```javascript\nheaderLinks: [\n    ...\n    { blog: true, label: 'Blog' },\n    ...\n]\n```\n\n2. Create the blog post with the format `YYYY-MM-DD-My-Blog-Post-Title.md` in `website/blog`:\n\n`website/blog/2018-05-21-New-Blog-Post.md`\n\n```markdown\n---\nauthor: Frank Li\nauthorURL: https://twitter.com/foobarbaz\nauthorFBID: 503283835\ntitle: New Blog Post\n---\n\nLorem Ipsum...\n```\n\nFor more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)\n\n## Adding items to your site's top navigation bar\n\n1. Add links to docs, custom pages or external links by editing the headerLinks field of `website/siteConfig.js`:\n\n`website/siteConfig.js`\n```javascript\n{\n  headerLinks: [\n    ...\n    /* you can add docs */\n    { doc: 'my-examples', label: 'Examples' },\n    /* you can add custom pages */\n    { page: 'help', label: 'Help' },\n    /* you can add external links */\n    { href: 'https://github.com/facebook/Docusaurus', label: 'GitHub' },\n    ...\n  ],\n  ...\n}\n```\n\nFor more information about the navigation bar, click [here](https://docusaurus.io/docs/en/navigation)\n\n## Adding custom pages\n\n1. Docusaurus uses React components to build pages. The components are saved as .js files in `website/pages/en`:\n1. If you want your page to show up in your navigation header, you will need to update `website/siteConfig.js` to add to the `headerLinks` element:\n\n`website/siteConfig.js`\n```javascript\n{\n  headerLinks: [\n    ...\n    { page: 'my-new-custom-page', label: 'My New Custom Page' },\n    ...\n  ],\n  ...\n}\n```\n\nFor more information about custom pages, click [here](https://docusaurus.io/docs/en/custom-pages).\n\n# Full Documentation\n\nFull documentation can be found on the [website](https://docusaurus.io/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspoonx%2Fstix-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspoonx%2Fstix-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspoonx%2Fstix-website/lists"}