Stationary

Stationary generates static blogs from EEx templates and Markdown posts.

Prerequisites

Getting Started

Use mix to create a new Elixir project.

$ mix new myblog
$ cd myblog

Add Stationary as a dependency in mix.exs.

def deps do
  [{:stationary, "~> 1.0.0"}]
end

Use mix to download dependencies and compile your project.

myblog $ mix deps.get
myblog $ mix compile