A supersonic static-site generator written in Rust.
I've been an avid user of the Jekyll CMS for many years now and have used this CMS to build all of my websites with. However, I recently discovered that Ruby is on a downward trend in the developer community, and since I was also looking to improve my Rust skills, I wondered how one would write a blog using Rust. This is when I realized that there aren't many options. Acid is another option. Acid* works quite similarly to Jekyll but is a bit more bare-bones at this point. (This may change.) Enjoy. :)
You will need the following tools installed and available:
bash
$ git clone https://github.com/iamtheblackunicorn/acid.git
bash
$ cd acid
bash
$ cargo build --release
You will need the Rust toolchain and Git installed and available from the command line. Once that is done, you can install Acid with the following commands. These commands will work on all platforms.
bash
$ cargo install --git https://github.com/iamtheblackunicorn/acid.git
bash
$ cargo install acid-rs
bash
$ acid build yourprojectdir
yourprojectdir
represents the path of your project.
bash
$ acid clean yourprojectdir
This will delete the build
directory with your compiled project inside your project directory called yourprojectdir
.
Creating a new Acid site entails the following steps. Acid is very modular, allowing YOU to extend your site as you see fit. There are some basic steps, however. These are the steps you need to take to create a new Acid site. My recommendation is that you have a look at the site
directory in this repository.
2.) Inside this directory, create a new file called config.json
. config.json
could have the following contents:
json
{
"title":"ACID.RS",
"baseurl":"/acid/",
"has_assets":"true",
"assets_path":"assets",
"description":"A supersonic static-site generator written in Rust."
}
title
: The title of your site.baseurl
: The "root" URL of your site. If you're deploying your site on GitHub Pages as an apex site, this field can be filled with /
. If not, fill this with /your_repo/
.has_assets
: Does your site have local static assets? These are copied to your build folder at compile time.assets_path
: Where inside your site folder are these assets?description
: Your site's description.config.json
with as many fields as you like. All fields will be available via the {{ site.field }}
variable in your templates, where field
is a placeholder for any other field you might have.3.) Inside this directory, create a new called index.markdown
. This file is the base for generating your site's index.html
file. This file could look something like this:
```markdown
layout:blog title:ACID.RS
``
-
layout: This YAML field tells ***Acid*** which layout to build your
index.htmlfrom.
-
title: This YAML field tells ***Acid*** the page title.
- Further fields: You can fill your Markdown files with as many fields as you like. All fields will be available via the
{{ page.field }}variable in your templates, where
field` is a placeholder for any other field you might have.
layouts
, posts
, pages
, and assets
.
layouts
: This directory holds all your site's templates. These templates are Liquid templates. A sample layout for the main blog overview page, called blog.html
, could look something like this:
Liquid
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{{ 'assets/css/styles.css' | prepend: site.baseurl }}"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ site.description }}"/>
<title>{{ site.title }}</title>
</head>
<body>
<h1>{{ site.title }}</h1>
<p class="subtitle">{{ site.description }}</p>
{% for post in posts %}
<div class="content">
<h2>{{ post.title }}</h2>
<p>{{ post.description }}</p>
<p><a href="{{ post.url }}">READ ME</a></p>
</div>
{% endfor %}
<div class="footer">
<p class="footer">Proudly hosted by GitHub and powered by <a href="https://github.com/iamtheblackunicorn/acid">ACID.RS</a></p>.
</div>
</body>
</html>
posts
. Each post can be accessed via a for
loop.page.html
or post.html
could look something like this:
Liquid
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="{{ 'assets/css/styles.css' | prepend: site.baseurl }}"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="{{ site.description }}"/>
<title>{{ site.title }}</title>
</head>
<body>
<h1>{{ site.title }}</h1>
<p class="subtitle">{{ site.description }}</p>
<div class="content">
{{ page.content }}
</div>
<div class="footer">
<p class="footer">Proudly hosted by GitHub and powered by <a href="https://github.com/iamtheblackunicorn/acid">ACID.RS</a></p>.
</div>
</body>
</html>
posts
: This directory contains your site's posts. These are Markdown files with filenames like this: YYYY-MM-DD-Your-Title.markdown
. YYYY-MM-DD
represents your post's date.2020-03-09-Welcome.markdown
could look something like this:
markdown
---
layout:post
title:Release Notes v.1.0.0
description:Notes on the v.1.0.0. release.
---
## Version 1.0.0
This is the first version of Acid, version 1.0.0.
## Changes</li>
<li>Initial release.</li>
<li>Initial upload to GitHub.
index.markdown
apply here with the difference that you can write your content here.pages
: This directory contains content pages, this could be an about
page for example.about.makdown
could look something like this:
markdown
---
layout:page
title:About
---
## About
This is a sample about page. Write something about yourself here.
index.markdown
apply here with the difference that you can write your content here.assets
: This directory contains your site's static assets, like CSS and Javascript.bash
$ acid build .
build
.If you have a GitHub account, you can upload your project to a repository, create a new branch called gh-pages
, create a new file called rust.yml
at .github/workflows
in your repository, fill it with the code below, and voilá: You can now view your project on the web under the URL of yourusername.github.io/yourporject
.
YAML
on: [push]
name: Acid Project CI
jobs:
build_and_test:
name: Acid Project CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: build
args: --release
- uses: actions-rs/cargo@v1
with:
command: run
args: build .
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: build
If you have some suggestions for improvement or you want to contribute, either file an issue or fork the repository. If you want to do the latter, make and test your changes, and file a Pull Request.