mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 18:21:39 +09:00
* 관리자 페이지 스타일 미세 조정 (계속) - 컨텐츠 좌우 여백을 15px으로 조정. - 모듈 즐겨찾기 별표 아이콘 크기 조정, 가운데 정렬. * 필요 없어진 style 영역 제거
16 lines
932 B
HTML
16 lines
932 B
HTML
<ul class="x_nav x_nav-tabs">
|
|
<li class="x_active"|cond="$act == 'dispAutoinstallAdminIndex'"><a href="{getUrl('', 'module', 'admin', 'act', 'dispAutoinstallAdminIndex')}">{lang('all')} ({$tCount})</a></li>
|
|
<li class="x_active"|cond="$act == 'dispAutoinstallAdminInstalledPackages'"><a href="{getUrl('', 'module', 'admin', 'act', 'dispAutoinstallAdminInstalledPackages')}">Installed({$iCount})</a></li>
|
|
</ul>
|
|
|
|
<nav cond="$act == 'dispAutoinstallAdminIndex'" class="x_thumbnail x_clearfix category">
|
|
<div loop="$categories => $category" cond="$category->depth == 0">
|
|
<h2>{$category->title}</h2>
|
|
<ul>
|
|
<li loop="$category->children => $children" class="active"|cond="$children->category_srl == $category_srl">
|
|
<a href="{getUrl('','module','admin','act','dispAutoinstallAdminIndex','category_srl',$children->category_srl,'childrenList','')}">{$children->title}({$children->nPackages})</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|