You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
660 B
30 lines
660 B
$root = $
|
|
|
|
mixin menuitem($path, $icon, $text)
|
|
li
|
|
.selected ? $root.ViewPath == $path
|
|
a[href=$path]
|
|
div.mg-icon #{$icon}
|
|
div.mg-label #{$text}
|
|
|
|
mixin tagmenuitem($tag)
|
|
li
|
|
[class=$tag.CSSClass]
|
|
a[href=$tag.Path]
|
|
div.mg-icon #{$tag.Icon}
|
|
div.mg-label #{$tag.Name}
|
|
|
|
|
|
|
|
mixin formoption($name, $selected, $label, $info)
|
|
div.radio-wrapper
|
|
$id = printf("checkbox-%s", $name)
|
|
|
|
if $selected
|
|
input[id=$id][type="checkbox"][name=$name][value="true"][checked]
|
|
else
|
|
input[id=$id][type="checkbox"][name=$name][value="true"]
|
|
|
|
label[for="checkbox-unlisted"]
|
|
b #{$label}:
|
|
spamn #{$info}
|