Current section
Files
Jump to
Current section
Files
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 endend