module TheAdmin
# Layout helpers
# @author Tim Mushen
module LayoutHelpers
# Card (top) view helper
# @param title [String] title of the card
# @param subtitle [String] subtitle of the card
# @param card_class [String] card html classes
# @param header_css [String] header css of the card
# @param buttons [String] card buttons
# @return [String] rendered card top html
def x_card_top(title: "",subtitle: "", card_class: "", header_css: "", buttons: "", modal_cog_url: "")
modal_cog_html = ""
unless modal_cog_url == ""
modal_cog_html = ""
end
if title != ""
title =<