Current section

Files

Jump to
ex_admin_runtime lib ex_admin themes admin_lte2 page.ex
Raw

lib/ex_admin/themes/admin_lte2/page.ex

defmodule ExAdmin.Theme.AdminLte2.Page do
@moduledoc false
use Xain
def columns(cols) do
count = Kernel.div 12, Enum.count(cols)
for html <- cols do
div html, class: "col-lg-#{count}"
end
end
end