begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
{php include pubTemplate("header")}
<div class="container">
<div class="card">
<div class="card-header">更换皮肤</div>
<div class="card-body">
<div class="tstheme">
<ul>
{loop $arrTheme $key $item}
<li>
<a href="javascript:void('0');" onclick="selectTheme('{$item}')"><img src="{SITE_URL}theme/{$item}/preview.jpg"></a>
<p>{$item}</p>
</li>
{if is_int(($key+1)/7)}
<div class="clear"></div>
{/if}
{/loop}
</ul>
</div>
</div>
</div>
</div>
{php include pubTemplate("footer")}