barfs blogs
Requires rust and make.
make
make install
blarf looks for a directory containing markdown articles, and optionally a stylesheet, email address, and a directory containing static assets. If no stylesheet is provided, blarf uses a default stylesheet.
blog_src/
|_ styles.css
|_ articles/
| |_ 1-my_first_post.md
| |_ 2-neat_stuff.md
|_ public/
| |_ img/
| | |_ face.png
| | |_ vacation.png
| |_ other_stuff/
| |_ cv.pdf
Run blarf to create the site.
blarf \
--email me@example.com \
--css blog_src/styles.css \
--static blog_src/public \
--dest my_site
You will end up with an output directory like this:
my_site/
|_ index.html
|_ styles.css
|_ img/
| |_ face.png
| |_ vacation.png
|_ other_stuff/
| |_ cv.pdf
|_ articles/
| |_ 1-my_first_post.html
| |_ 2-neat_stuff.html
Serve and enjoy.
Articles should conform to a few of conventions for best results:
# My first post!
). This becomes the article's title in the page's HTML and in the list of historical links in the footer.#### November 24, 2018
##### TR
<blockquote>
<p>All things must pass.</p>
<p class="author">George Harrison</p>
</blockquote>
<figure>
<img src="/img/Sint_Servaasbrug.jpg" alt="Sint Servaasbrug" />
<figcaption>Sint Servaasbrug</figcaption>
</figure>