mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
<load target="css/editor.css" />
|
|
<load target="../../../modules/admin/tpl/css/admin.css" />
|
|
<load target="../../../common/css/bootstrap.min.css" />
|
|
|
|
<section class="section">
|
|
<h1>{$component->title} ver. {$component->version}</h1>
|
|
<table class="x_table x_table-striped x_table-hover">
|
|
<tr>
|
|
<th scope="row"><div>{$lang->component_author}</div></th>
|
|
<td>
|
|
<!--@foreach($component->author as $author)-->
|
|
{$author->name} <!--@if($author->homepage || $author->email_address)-->(<!--@if($author->homepage)--><a href="{$author->homepage}" onclick="window.open(this.href);return false;">{$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 />
|
|
<!--@end-->
|
|
</tr>
|
|
<!--@if($component->homepage)-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->homepage}</div></th>
|
|
<td class="blue"><a href="{$component->homepage}" onclick="window.open(this.href);return false;">{$component->homepage}</a></td>
|
|
</tr><!--@end-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->regdate}</div></th>
|
|
<td>{zdate(str_replace('-',"",$component->date), 'Y-m-d')}</td>
|
|
</tr>
|
|
<!--@if($component->license || $component->license_link)-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->component_license}</div></th>
|
|
<td>
|
|
{nl2br(trim($component->license))}
|
|
<!--@if($component->license_link)-->
|
|
<p><a href="{$component->license_link}" onclick="window.close(); return false;">{$component->license_link}</a></p>
|
|
<!--@end-->
|
|
</td>
|
|
</tr><!--@end-->
|
|
<!--@if($component->description)-->
|
|
<tr>
|
|
<th scope="row"><div>{$lang->component_description}</div></th>
|
|
<td>{nl2br(trim($component->description))}</td>
|
|
</tr><!--@end-->
|
|
</table>
|
|
|
|
</section>
|