No description
  • Astro 84%
  • JavaScript 7.5%
  • TypeScript 5.3%
  • MDX 3.2%
Find a file
2026-05-07 21:38:11 +02:00
.github/workflows Add Pages deployment 2023-02-11 17:04:01 +01:00
.idea Set documentation link to the Handbook directly 2024-03-10 11:37:44 +01:00
.vscode Initial commit from Astro 2023-02-10 15:45:52 +01:00
dist Update website with new release announcement 2026-05-07 21:38:11 +02:00
public Add in more simple birds, Proposal (#8) 2023-09-06 18:50:05 +02:00
src Update website with new release announcement 2026-05-07 21:38:11 +02:00
.gitignore Check in built website to deploy to nginx 2023-09-03 14:14:18 +02:00
.ignore Add Announcement for 2023.10 2023-10-28 18:11:57 +02:00
astro.config.mjs fixing website config base url 2023-03-23 12:05:08 +01:00
CHANGELOG.md Update for 2025.10 snapshot 2025-10-28 17:36:45 +01:00
package-lock.json Update for 2025.10 snapshot 2025-10-28 17:36:45 +01:00
package.json Update for 2025.10 snapshot 2025-10-28 17:36:45 +01:00
README.md Update README 2023-02-11 17:00:50 +01:00
tailwind.config.cjs Rebuilding Website 2023-02-11 16:54:43 +01:00
tsconfig.json Rebuilding Website 2023-02-11 16:54:43 +01:00

OpenIndiana Website

Features:

  • Minimal styling (make it your own!)
  • 100/100 Lighthouse performance
  • SEO-friendly with canonical URLs and OpenGraph data
  • Sitemap support
  • RSS Feed support
  • Markdown & MDX support
  • TailwindCSS support

🚀 Project Structure

Inside of your Astro project, you'll see the following folders and files:

├── public/
├── src/
│   ├── components/
│   ├── content/
│   ├── layouts/
│   └── pages/
├── astro.config.mjs
├── README.md
├── package.json
└── tsconfig.json

Astro looks for .astro or .md files in the src/pages/ directory. Each page is exposed as a route based on its file name.

There's nothing special about src/components/, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.

The src/content/ directory contains "collections" of related Markdown and MDX documents. Use getCollection() to retrieve posts from src/content/blog/, and type-check your frontmatter using an optional schema. See Astro's Content Collections docs to learn more.

Any static assets, like images, can be placed in the public/ directory.

🧞 Commands

All commands are run from the root of the project, from a terminal:

Command Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3000
npm run build Build your production site to ./dist/
npm run preview Preview your build locally, before deploying
npm run astro ... Run CLI commands like astro add, astro check
npm run astro --help Get help using the Astro CLI

Credit

This theme is based off of the lovely Bear Blog.