Packages

Generate HTML views from `.eex` template files for Raxx web applications.

Current section

Files

Jump to
raxx_view lib raxx layout.ex
Raw

lib/raxx/layout.ex

defmodule Raxx.Layout do
@moduledoc false
defmacro __using__(options) do
:elixir_errors.warn(__ENV__.line, __ENV__.file, """
The module `#{inspect(__MODULE__)}` is deprecated use `Raxx.View.Layout` instead.
""")
quote do
use Raxx.View.Layout, unquote(options)
end
end
end