mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 02:01:40 +09:00
45 lines
1.7 KiB
HTML
45 lines
1.7 KiB
HTML
<load target="../../admin/tpl/css/admin.css" />
|
|
<h1>{$skin_info->title}</h1>
|
|
<table class="x_table x_table-striped x_table-hover">
|
|
<col width="100" />
|
|
<col />
|
|
<tr>
|
|
<th scope="row"><label for="textfield1">{$lang->title}</label></th>
|
|
<td>{$skin_info->title}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><label for="textfield2">{$lang->author}</label></th>
|
|
<td class="blue">
|
|
<!--@foreach($skin_info->author as $author)-->
|
|
{$author->name} <!--@if($author->homepage || $author->email_address)-->(<!--@if($author->homepage)--><a href="{$author->homepage}" target="_blank" rel="noopener">{$author->homepage}</a><!--@end--><!--@if($author->homepage && $author->email_address)-->, <!--@end--><!--@if($author->email_address)--><a href="mailto:{$author->email_address}">{$author->email_address}</a><!--@end-->)<!--@end--><br />
|
|
<!--@endforeach-->
|
|
</td>
|
|
</tr>
|
|
<!--@if($skin_info->homepage)-->
|
|
<tr>
|
|
<th scope="row"><label for="textfield2">{$lang->homepage}</label></th>
|
|
<td class="blue"><a href="{$skin_info->homepage}" target="_blank" rel="noopener">{$skin_info->homepage}</a></td>
|
|
</tr>
|
|
<!--@endif-->
|
|
<tr>
|
|
<th scope="row"><label for="textfield2">{$lang->regdate}</label></th>
|
|
<td>{zdate($skin_info->date, 'Y-m-d')}</td>
|
|
</tr>
|
|
<!--@if($skin_info->license || $skin_info->license_link)-->
|
|
<tr>
|
|
<th scope="row">{$lang->skin_license}</th>
|
|
<td>
|
|
{nl2br(trim($skin_info->license))}
|
|
<!--@if($skin_info->license_link)-->
|
|
<p><a href="{$skin_info->license_link}" onclick="window.close(); return false;">{$skin_info->license_link}</a></p>
|
|
<!--@end-->
|
|
</td>
|
|
</tr>
|
|
<!--@end-->
|
|
<!--@if($skin_info->description)-->
|
|
<tr>
|
|
<th scope="row" class="borderBottomNone">{$lang->description}</th>
|
|
<td class="borderBottomNone">{nl2br(trim($skin_info->description))}</td>
|
|
</tr>
|
|
<!--@end-->
|
|
</table>
|