A Blog and RSS system written in Rust.
Install Rust:
shell
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Install OB:
shell
cargo install ob
You will need to create four files:
html
<!DOCTYPE html>
<html lang="en">
<head>
<title>Your Blog</title>
<meta charset="utf-8"/>
</head>
<body>
<h1>Blog Updates</h1>
<ul>
<!-- OB -->
</ul>
</body>
</html>
html
<!DOCTYPE html>
<html lang="en">
<head>
<title></title>
<meta charset="utf-8"/>
</head>
<body>
<!-- OB -->
</body>
</html>
```xml
<!-- OB -->
```
json
{
"blog": "index.html",
"template": "template.html",
"rss": "rss.xml",
"items": 4,
"blog_address": "https://your_blog.com/blog/",
"images": true
}
For the system to work, add the following comment line to the Rolling Blog File, the Template and RSS feed (as above).
html
<!-- OB -->
When you publish a blog post, it will be added directly below that line in the proper format.
``` USAGE: ob [FLAGS]
FLAGS: -d, --delete Delete an entry -h, --help Prints help information -n, --new Create a new draft -p, --publish Publish a daft -V, --version Prints version information ```
The first time ob
is used it will create a folder at: /blog
.
When you create a new draft it will be located at: /blog/drafts
.
When you publish a new draft it will be located at: /blog/example.html
.
Example usage:
shell
ob --new
/docs
folder.