9 lines
156 B
HTML
9 lines
156 B
HTML
$def with (id, title, active)
|
|
|
|
$if (active == id):
|
|
<a class="tab_button_active"
|
|
$else:
|
|
<a class="tab_button"
|
|
href="$(self_url(tab=id))">$title</a>
|
|
|