Packages

obelisk is a static site generator for Elixir. It is inspired by jekyll, with the goal of being fast and simple to use and extend.

Current section

Files

Jump to
obelisk lib obelisk layout.ex
Raw

lib/obelisk/layout.ex

defmodule Obelisk.Layout do
def path do
"./layout/layout.eex"
end
def layout do
File.read!(path)
end
def post do
File.read!("./layout/post.eex")
end
end