The Theseus OS Blog
This blog provides detailed status updates and useful information about Theseus OS and its development.
Attribution
This blog was adapted from The Rust blog, implemented as a small static site generator and that deployed to GitHub Pages.
Building
To build the site locally:
> git clone https://github.com/theseus-os/blog Theseus_blog
> cd Theseus_blog
> cargo run
From there, the generated HTML will be in the site
directory. You can use any web server to check it out in your browser:
> cd site
> python3 -m http.server
The site is now available to browse locally at http://0.0.0.0:8000.
Contributing
Contributions are welcome from anyone!
When writing a new blog post, keep in mind the file headers:
---
layout: post
title: Title of the blog post.
author: Blog post author(s).
release: true if it's a post about a formal release of Theseus; false otherwise.
---
License
Like both Theseus and The Rust Blog, the content of this blog is dual-licensed as both MIT and Apache 2.0.