- [misc] Remove unused view files.
This commit is contained in:
@@ -1,32 +0,0 @@
|
||||
<?php include '../../common/view/header.lite.html.php';?>
|
||||
<main id="main">
|
||||
<div class="container">
|
||||
<div id='mainContent' class='main-content'>
|
||||
<div class='main-header'>
|
||||
<h2><?php echo $lang->misc->zentao->labels['about'];?></h2>
|
||||
</div>
|
||||
<table class='table table-form'>
|
||||
<tr>
|
||||
<td class='text-center zt-logo'>
|
||||
<img src='<?php echo $config->webRoot . 'theme/default/images/main/' . $lang->logoImg;?>' />
|
||||
<h4>
|
||||
<?php if(trim($config->visions, ',') == 'lite'):?>
|
||||
<?php echo $lang->liteName.$config->liteVersion; ?>
|
||||
<?php else:?>
|
||||
<?php printf($lang->misc->zentao->version, $config->version); ?>
|
||||
<?php endif;?>
|
||||
</h4>
|
||||
</td>
|
||||
<td><?php include './links.html.php';?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan='2' class="copyright text-right text-middle">
|
||||
<div class='pull-left'><?php echo $lang->designedByAIUX;?></div>
|
||||
<?php echo $lang->misc->copyright;?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<?php include '../../common/view/footer.lite.html.php';?>
|
||||
@@ -1,41 +0,0 @@
|
||||
<?php include '../../common/view/header.lite.html.php';?>
|
||||
<main id="main">
|
||||
<div class="container" id='<?php echo $version;?>'>
|
||||
<div id='mainContent' class='main-content'>
|
||||
<div class='center-block mw-800px'>
|
||||
<div class='main-header clearfix'>
|
||||
<h2 class='pull-left'><?php echo $lang->changeLog ?></h2>
|
||||
<div class='btn-toolbar pull-left'>
|
||||
<div class='dropdown' id='versionMenu'>
|
||||
<button class='btn dropdown-toggle' type='button' data-toggle='dropdown'><?php echo $version === 'latest' ? $lang->misc->feature->lastest : ($lang->misc->releaseDate[$version] . ' ' . $version) ?> <span class='caret'></span></button>
|
||||
<ul class='dropdown-menu'>
|
||||
<?php foreach(array_keys($lang->misc->feature->all) as $versionName):?>
|
||||
<li<?php echo $versionName === $version ? " class='active'" : '' ?>>
|
||||
<?php echo html::a(helper::createLink('misc', 'changeLog', "version=$versionName"), $versionName === 'latest' ? $lang->misc->feature->lastest : ($lang->misc->releaseDate[$versionName] . ' ' . $versionName));?>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='featureList' class='article-content'>
|
||||
<?php $idx = count($features) == 1 ? '' : 1; ?>
|
||||
<?php foreach ($features as $feature):?>
|
||||
<div class='item'>
|
||||
<h3><?php echo $idx . ($idx == '' ? '' : '. ') . $feature['title'] ?></h3>
|
||||
<div class='desc'><?php echo $feature['desc'] ?></div>
|
||||
</div>
|
||||
<?php $idx++; ?>
|
||||
<?php endforeach; ?>
|
||||
</div>
|
||||
<?php if($detailed and !common::checkNotCN()):?>
|
||||
<div id="details" class='article-content'>
|
||||
<a href='###' class="btn btn-link text-primary btn-block text-left" onclick="$('#details').toggleClass('show-details')"><i class="icon icon-angle-right"></i> <?php echo $lang->misc->feature->detailed;?></a>
|
||||
<div class='details-list'><?php echo $detailed;?></div>
|
||||
</div>
|
||||
<?php endif;?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<?php include '../../common/view/footer.lite.html.php';?>
|
||||
Reference in New Issue
Block a user