28 lines
813 B
PHP
Executable File
28 lines
813 B
PHP
Executable File
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
|
|
$this->title = Yii::t('frontend', 'Site Name');
|
|
$modules = Yii::$app->params['dataModules'];
|
|
?>
|
|
<div class="site-index">
|
|
|
|
<div class="jumbotron">
|
|
<h1>欢迎您!</h1>
|
|
|
|
<p class="lead">接口服务不断开放中,欢迎合作洽谈!</p>
|
|
|
|
<p><a class="btn btn-lg btn-success" href="">已开放API</a></p>
|
|
<p style="text-align: left;">
|
|
|
|
<?php foreach ($modules as $k => $v) { ?>
|
|
<button class="btn btn-lg btn-default" style="margin-top: 15px;margin-bottom: 15px;"
|
|
title="<?php echo $k; ?>"><?php echo $v; ?></button>
|
|
<?php } ?>
|
|
|
|
<button class="btn btn-lg btn-default" style="margin-top: 15px;margin-bottom: 15px;" title="">……</button>
|
|
</p>
|
|
</div>
|
|
|
|
</div>
|