mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-03 16:24:28 +08:00
初始化应用
This commit is contained in:
@@ -10,58 +10,10 @@ use think\helper\Str;
|
||||
class BaseController extends AppBaseController
|
||||
{
|
||||
|
||||
/**
|
||||
* 是否使用多模板
|
||||
* 仅当名称为空或者指定名称有效,
|
||||
* 使用跨应用,跨控制器,引用模板路径的写法时无效
|
||||
*
|
||||
* @var boolean
|
||||
*/
|
||||
protected $isUseTpls = true;
|
||||
|
||||
protected $indexTplName = '';
|
||||
protected $indexTplMethod = '';
|
||||
protected $indexTplMethodCurrentAction = '';
|
||||
|
||||
|
||||
|
||||
public function initialize()
|
||||
{
|
||||
parent::initialize();
|
||||
|
||||
$this->indexTplName = get_system_config('index_tpl_name');
|
||||
|
||||
$this->indexTplMethod = '__'.Str::camel($this->indexTplName);
|
||||
|
||||
$this->indexTplMethodCurrentAction = $this->indexTplMethod.Str::studly($this->request->action());
|
||||
|
||||
|
||||
}
|
||||
|
||||
public function assign($template, $value)
|
||||
{
|
||||
return View::assign($template, $value);
|
||||
}
|
||||
|
||||
public function fetch($template = '', $vars = [])
|
||||
{
|
||||
if ($this->isUseTpls && strpos($template, '@') === false && stripos($template, '/') === false) {
|
||||
|
||||
if ($template === '') {
|
||||
$config_auto_rule = Config::get('view.auto_rule');
|
||||
if (2 == $config_auto_rule) {
|
||||
$template = $this->request->action(true);
|
||||
} elseif (3 == $config_auto_rule) {
|
||||
$template = $this->request->action();
|
||||
} else {
|
||||
$template = Str::snake($this->request->action());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return View::fetch($this->indexTplName . $template, $vars);
|
||||
} else {
|
||||
return View::fetch($template, $vars);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,93 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace app\index\controller;
|
||||
|
||||
use app\model\Category as ModelCategory;
|
||||
use think\Request;
|
||||
|
||||
class Category extends Common
|
||||
{
|
||||
/**
|
||||
* 显示资源列表
|
||||
*
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示创建资源表单页.
|
||||
*
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function create()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存新建的资源
|
||||
*
|
||||
* @param \think\Request $request
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function save(Request $request)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示指定的资源
|
||||
*
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function read($id)
|
||||
{
|
||||
//
|
||||
|
||||
$model_category = ModelCategory::with('posts.post')->find($id);
|
||||
|
||||
$this->assign('category',$model_category);
|
||||
|
||||
return $this->fetch('read'.$model_category->getData('tpl_name'));
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示编辑资源表单页.
|
||||
*
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function edit($id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存更新的资源
|
||||
*
|
||||
* @param \think\Request $request
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function update(Request $request, $id)
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除指定资源
|
||||
*
|
||||
* @param int $id
|
||||
* @return \think\Response
|
||||
*/
|
||||
public function delete($id)
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
@@ -20,52 +20,17 @@ class Common extends BaseController
|
||||
$list_nav_friend_url = Nav::where('type', 2)->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_nav_friend_url', $list_nav_friend_url);
|
||||
|
||||
if (!empty($this->indexTplMethod)) {
|
||||
if (method_exists($this, $this->indexTplMethod)) {
|
||||
$this->{$this->indexTplMethod}();
|
||||
}
|
||||
}
|
||||
if (!empty($this->indexTplMethodCurrentAction)) {
|
||||
if (method_exists($this, $this->indexTplMethodCurrentAction)) {
|
||||
$this->{$this->indexTplMethodCurrentAction}();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function __blog()
|
||||
{
|
||||
$list_header_nav = Nav::where('type', 'blog_header_nav')->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_header_nav', $list_header_nav);
|
||||
}
|
||||
|
||||
public function __documents()
|
||||
{
|
||||
$list_header_nav = Nav::where('type', 'document_header_nav')->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_header_nav', $list_header_nav);
|
||||
}
|
||||
|
||||
public function __easyBlue()
|
||||
{
|
||||
$list_header_nav = Nav::where('type', 10)->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_header_nav', $list_header_nav);
|
||||
$list_nav_index_block_1 = Nav::where('type', 6)->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_nav_index_block_1', $list_nav_index_block_1);
|
||||
$list_nav_index_block_2 = Nav::where('type', 7)->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_nav_index_block_2', $list_nav_index_block_2);
|
||||
}
|
||||
|
||||
public function __articles()
|
||||
{
|
||||
$list_header_nav = Nav::where('type', 11)->order('sort asc')->where('status', 1)->select();
|
||||
View::assign('list_header_nav', $list_header_nav);
|
||||
|
||||
$list_category_first_level = Category::where('level', 1)->where('status', 1)->where('type',3)->select();
|
||||
$this->assign('list_category_first_level', $list_category_first_level);
|
||||
View::assign('list_category_first_level', $list_category_first_level);
|
||||
$list_nav_more = Nav::where('type', 8)->order('sort asc')->where('status', 1)->where('type',11)->select();
|
||||
View::assign('list_nav_more', $list_nav_more);
|
||||
|
||||
$top_posts = Post::where('is_top',1)->limit(8)->where('type',3)->select();
|
||||
$this->assign('top_posts',$top_posts);
|
||||
View::assign('top_posts',$top_posts);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -6,6 +6,7 @@ use app\model\Category;
|
||||
use app\model\Nav;
|
||||
use app\model\Post;
|
||||
use app\model\PostCategory;
|
||||
use think\facade\View;
|
||||
use think\Request;
|
||||
|
||||
class Index extends Common
|
||||
@@ -19,44 +20,7 @@ class Index extends Common
|
||||
{
|
||||
//
|
||||
|
||||
return $this->fetch();
|
||||
}
|
||||
|
||||
public function __blogIndex()
|
||||
{
|
||||
$list_category = Category::where('type','blog_post')->select();
|
||||
|
||||
$this->assign('list_category',$list_category);
|
||||
|
||||
$category_id = $this->request->param('category_id');
|
||||
|
||||
if(!empty($category_id)){
|
||||
|
||||
$model_list_post = Post::hasWhere('categorys',['category_id'=>$category_id])->order('sort desc');
|
||||
}else{
|
||||
|
||||
$model_list_post = Post::order('sort desc');
|
||||
}
|
||||
|
||||
$model_list_post->where('type','blog_post');
|
||||
|
||||
$list_post = $model_list_post->paginate();
|
||||
|
||||
$this->assign('list_post',$list_post);
|
||||
|
||||
|
||||
}
|
||||
|
||||
public function __documentsIndex()
|
||||
{
|
||||
$list_index_documents_nav = Nav::where('type',9)->select();
|
||||
|
||||
$this->assign('list_index_documents_nav',$list_index_documents_nav);
|
||||
}
|
||||
|
||||
public function __articlesIndex()
|
||||
{
|
||||
|
||||
$sub_category = [];
|
||||
|
||||
if(!empty($this->request->param('category_id'))){
|
||||
@@ -89,11 +53,14 @@ class Index extends Common
|
||||
|
||||
$list_post = $model_post->paginate();
|
||||
|
||||
$this->assign('sub_category',$sub_category);
|
||||
View::assign('sub_category',$sub_category);
|
||||
|
||||
$this->assign('list_post',$list_post);
|
||||
View::assign('list_post',$list_post);
|
||||
|
||||
return View::fetch();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 显示创建资源表单页.
|
||||
*
|
||||
|
||||
@@ -5,6 +5,7 @@ declare(strict_types=1);
|
||||
namespace app\index\controller;
|
||||
|
||||
use app\model\Post as ModelPost;
|
||||
use think\facade\View;
|
||||
use think\Request;
|
||||
|
||||
class Post extends Common
|
||||
@@ -52,23 +53,12 @@ class Post extends Common
|
||||
|
||||
$model_post = ModelPost::find($id);
|
||||
|
||||
$this->assign('post', $model_post);
|
||||
View::assign('post', $model_post);
|
||||
|
||||
return $this->fetch();
|
||||
return View::fetch();
|
||||
}
|
||||
|
||||
public function __documentsRead()
|
||||
{
|
||||
$category_id = $this->request->param('category_id',0);
|
||||
|
||||
$list_post = [];
|
||||
if(!empty($category_id)){
|
||||
$list_post = ModelPost::hasWhere('categorys',['category_id'=>$category_id])->order('sort desc')->select();
|
||||
}
|
||||
|
||||
$this->assign('list_post',$list_post);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 显示编辑资源表单页.
|
||||
|
||||
@@ -1,99 +1,90 @@
|
||||
<div class="layui-header">
|
||||
<a class="layui-logo" href="{:url('index/Index/index')}" target="_blank">{:get_system_config('site_name')}</a>
|
||||
<!-- 头部区域(可配合layui已有的水平导航) PC端显示 -->
|
||||
<ul class="layui-nav layui-layout-left layui-hide-xs pc-nav-container">
|
||||
<li class="layui-nav-item header-nav-item" data-name="Index" ><a href="{:url('admin/Index/index')}">首页</a></li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="User" ><a href="{:url('admin/User/index')}">用户管理</a></li>
|
||||
{if check_permission('file_list') }
|
||||
<li class="layui-nav-item header-nav-item" data-name="File" ><a href="{:url('admin/File/index')}">文件管理</a></li>
|
||||
{/if}
|
||||
<li class="layui-nav-item header-nav-item" data-name="Post-1" ><a href="{:url('admin/Post/index')}">内容管理</a></li>
|
||||
{if get_system_config('index_tpl_name') == 'easy_blue_' }
|
||||
<li class="layui-nav-item header-nav-item" data-name="Post-2" ><a href="{:url('admin/Post/index',['type'=>2])}">官网文章管理</a></li>
|
||||
{/if}
|
||||
{if get_system_config('index_tpl_name') == 'articles_' }
|
||||
<li class="layui-nav-item header-nav-item" data-name="Post-3" ><a href="{:url('admin/Post/index',['type'=>3])}">头条资讯管理</a></li>
|
||||
{/if}
|
||||
{if get_system_config('index_tpl_name') == 'documents_' }
|
||||
<li class="layui-nav-item header-nav-item" data-name="Post-4" ><a href="{:url('admin/Post/index',['type'=>4])}">文档管理</a></li>
|
||||
{/if}
|
||||
{if get_system_config('index_tpl_name') == 'blog_' }
|
||||
<li class="layui-nav-item header-nav-item" data-name="Post-blog_post" ><a href="{:url('admin/Post/index',['type'=>'blog_post'])}">博客管理</a></li>
|
||||
{/if}
|
||||
<li class="layui-nav-item header-nav-item" data-name="Admin" ><a href="{:url('admin/Admin/index')}">管理员管理</a></li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="System" ><a href="{:url('admin/System/index')}">系统设置</a></li>
|
||||
</ul>
|
||||
<ul class="layui-nav layui-layout-right layui-hide-xs">
|
||||
<li class="layui-nav-item header-nav-item" data-name="Login">
|
||||
<a href="javascript:;">
|
||||
<img src="{$admin.avatar}" class="layui-nav-img">
|
||||
{$admin.nickname}
|
||||
</a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd><a href="{:url('Admin/edit')}">基本资料</a></dd>
|
||||
<dd><a href="{:url('Admin/password')}">安全设置</a></dd>
|
||||
</dl>
|
||||
</li>
|
||||
<a class="layui-logo" href="{:url('index/Index/index')}" target="_blank">{:get_system_config('site_name')}</a>
|
||||
<!-- 头部区域(可配合layui已有的水平导航) PC端显示 -->
|
||||
<ul class="layui-nav layui-layout-left layui-hide-xs pc-nav-container">
|
||||
<li class="layui-nav-item header-nav-item" data-name="Index"><a href="{:url('admin/Index/index')}">首页</a></li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="User"><a href="{:url('admin/User/index')}">用户管理</a></li>
|
||||
{if check_permission('file_list') }
|
||||
<li class="layui-nav-item header-nav-item" data-name="File"><a href="{:url('admin/File/index')}">文件管理</a></li>
|
||||
{/if}
|
||||
<li class="layui-nav-item header-nav-item" data-name="Post-1"><a href="{:url('admin/Post/index')}">内容管理</a></li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="Post-3"><a
|
||||
href="{:url('admin/Post/index',['type'=>3])}">头条资讯管理</a></li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="Admin"><a href="{:url('admin/Admin/index')}">管理员管理</a></li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="System"><a href="{:url('admin/System/index')}">系统设置</a></li>
|
||||
</ul>
|
||||
<ul class="layui-nav layui-layout-right layui-hide-xs">
|
||||
<li class="layui-nav-item header-nav-item" data-name="Login">
|
||||
<a href="javascript:;">
|
||||
<img src="{$admin.avatar}" class="layui-nav-img">
|
||||
{$admin.nickname}
|
||||
</a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd><a href="{:url('Admin/edit')}">基本资料</a></dd>
|
||||
<dd><a href="{:url('Admin/password')}">安全设置</a></dd>
|
||||
</dl>
|
||||
</li>
|
||||
|
||||
<li class="layui-nav-item"><a href="{:url('Login/logout')}">退出</a></li>
|
||||
</ul>
|
||||
<li class="layui-nav-item"><a href="{:url('Login/logout')}">退出</a></li>
|
||||
</ul>
|
||||
|
||||
|
||||
<!-- 手机端显示 -->
|
||||
<!-- 手机端显示 -->
|
||||
|
||||
<div class="left-bottom-options layui-show-xs-block layui-hide-md layui-icon layui-icon-right">
|
||||
|
||||
</div>
|
||||
<div class="left-bottom-options layui-show-xs-block layui-hide-md layui-icon layui-icon-right">
|
||||
|
||||
<div class="layui-nav layui-layout-right layui-show-xs-block layui-hide-md">
|
||||
<li class="layui-nav-item">
|
||||
<a href="javascript:;" class="mobile-nav-current-title">菜单</a>
|
||||
<dl class="layui-nav-child mobile-nav-container"> <!-- 二级菜单 -->
|
||||
</div>
|
||||
|
||||
</dl>
|
||||
</li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="Login">
|
||||
<a href="javascript:;">
|
||||
<img src="{$admin.avatar}" class="layui-nav-img">
|
||||
</a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd><a href="{:url('Admin/edit')}">基本资料</a></dd>
|
||||
<dd><a href="{:url('Admin/password')}">安全设置</a></dd>
|
||||
<dd><a href="{:url('Login/logout')}">退出</a></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</div>
|
||||
<div class="layui-nav layui-layout-right layui-show-xs-block layui-hide-md">
|
||||
<li class="layui-nav-item">
|
||||
<a href="javascript:;" class="mobile-nav-current-title">菜单</a>
|
||||
<dl class="layui-nav-child mobile-nav-container">
|
||||
<!-- 二级菜单 -->
|
||||
|
||||
</dl>
|
||||
</li>
|
||||
<li class="layui-nav-item header-nav-item" data-name="Login">
|
||||
<a href="javascript:;">
|
||||
<img src="{$admin.avatar}" class="layui-nav-img">
|
||||
</a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd><a href="{:url('Admin/edit')}">基本资料</a></dd>
|
||||
<dd><a href="{:url('Admin/password')}">安全设置</a></dd>
|
||||
<dd><a href="{:url('Login/logout')}">退出</a></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tpl" style="display: none;">
|
||||
<dd class="mobile-nav-item header-nav-item"><a href="{:url('Admin/edit')}">基本资料</a></dd>
|
||||
<dd class="mobile-nav-item header-nav-item"><a href="{:url('Admin/edit')}">基本资料</a></dd>
|
||||
</div>
|
||||
<script>
|
||||
|
||||
$(function(){
|
||||
$('.pc-nav-container').children().each(function(n,e){
|
||||
var nav = $('.tpl .mobile-nav-item').clone();
|
||||
$(function () {
|
||||
$('.pc-nav-container').children().each(function (n, e) {
|
||||
var nav = $('.tpl .mobile-nav-item').clone();
|
||||
|
||||
nav.data('name',$(e).data('name'))
|
||||
nav.data('name', $(e).data('name'))
|
||||
|
||||
nav.html($(e).html())
|
||||
nav.html($(e).html())
|
||||
|
||||
nav.appendTo('.mobile-nav-container')
|
||||
})
|
||||
|
||||
$('.left-bottom-options').click(function(){
|
||||
layer.open({
|
||||
type:1,
|
||||
content:$('.layui-side'),
|
||||
anim:3,
|
||||
offset:'l',
|
||||
area:['140px','100%'],
|
||||
shadeClose:true,
|
||||
title:false,
|
||||
closeBtn:false,
|
||||
|
||||
})
|
||||
})
|
||||
nav.appendTo('.mobile-nav-container')
|
||||
})
|
||||
|
||||
$('.left-bottom-options').click(function () {
|
||||
layer.open({
|
||||
type: 1,
|
||||
content: $('.layui-side'),
|
||||
anim: 3,
|
||||
offset: 'l',
|
||||
area: ['140px', '100%'],
|
||||
shadeClose: true,
|
||||
title: false,
|
||||
closeBtn: false,
|
||||
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
</script>
|
||||
@@ -8,41 +8,13 @@
|
||||
<li class="layui-nav-item layui-nav-itemed left-nav-item" data-name="others">
|
||||
<a class="" href="{:url('admin/System/others')}">第三方管理</a>
|
||||
</li>
|
||||
<li class="layui-nav-item layui-nav-itemed left-nav-item" data-name="theme">
|
||||
<a class="" href="{:url('admin/System/theme')}">主题管理</a>
|
||||
</li>
|
||||
|
||||
<li class="layui-nav-item layui-nav-itemed left-nav-item" data-name="agreement">
|
||||
<a class="" href="{:url('admin/System/agreement')}">用户协议管理</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
{if get_system_config('index_tpl_name') == 'easy_blue_' }
|
||||
|
||||
<ul class="layui-nav layui-nav-tree" lay-filter="test">
|
||||
<li class="layui-nav-item layui-nav-itemed">
|
||||
<a class="" href="javascript:;">简约蓝官网</a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd class="left-nav-item" data-name="pc-nav-10">
|
||||
<a href="{:url('Nav/index',['type'=>10,'show_img'=>1,'show_target'=>1])}">头部导航</a>
|
||||
</dd>
|
||||
<dd class="left-nav-item" data-name="easy_blue"><a href="{:url('System/easyBlue')}">一般参数</a></dd>
|
||||
|
||||
<dd class="left-nav-item" data-name="pc-nav-6">
|
||||
<a href="{:url('Nav/index',['type'=>6,'show_img'=>1,'show_target'=>1])}">首页布局块1</a>
|
||||
</dd>
|
||||
<dd class="left-nav-item" data-name="pc-nav-7">
|
||||
<a href="{:url('Nav/index',['type'=>7,'show_img'=>1,'show_target'=>1])}">首页布局块2</a>
|
||||
</dd>
|
||||
|
||||
|
||||
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
{/if}
|
||||
{if get_system_config('index_tpl_name') == 'articles_' }
|
||||
|
||||
<ul class="layui-nav layui-nav-tree" lay-filter="test">
|
||||
<li class="layui-nav-item layui-nav-itemed">
|
||||
<a class="" href="javascript:;">资讯头条</a>
|
||||
@@ -57,51 +29,14 @@
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
{/if}
|
||||
{if get_system_config('index_tpl_name') == 'documents_' }
|
||||
|
||||
<ul class="layui-nav layui-nav-tree" lay-filter="test">
|
||||
<li class="layui-nav-item layui-nav-itemed">
|
||||
<a class="" href="javascript:;">文档中心</a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd class="left-nav-item" data-name="pc-nav-document_header_nav">
|
||||
<a href="{:url('Nav/index',['type'=>'document_header_nav','show_target'=>1])}">头部导航</a>
|
||||
</dd>
|
||||
<dd class="left-nav-item" data-name="pc-nav-6">
|
||||
<a href="{:url('Nav/index',['type'=>9,'show_img'=>0,'show_target'=>1])}">首页目录</a>
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
{/if}
|
||||
{if get_system_config('index_tpl_name') == 'blog_' }
|
||||
|
||||
<ul class="layui-nav layui-nav-tree" lay-filter="test">
|
||||
<li class="layui-nav-item layui-nav-itemed">
|
||||
<a class="" href="javascript:;">博客主题</a>
|
||||
<dl class="layui-nav-child">
|
||||
|
||||
<dd class="left-nav-item" data-name="pc-nav-blog_header_nav">
|
||||
<a href="{:url('Nav/index',['type'=>'blog_header_nav','show_target'=>1])}">头部导航</a>
|
||||
</dd>
|
||||
<dd class="left-nav-item" data-name="pc-nav-6">
|
||||
<dd class="left-nav-item" data-name="blog"><a href="{:url('System/blog')}">一般参数</a></dd>
|
||||
</dd>
|
||||
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
{/if}
|
||||
|
||||
<ul class="layui-nav layui-nav-tree" lay-filter="test">
|
||||
<li class="layui-nav-item layui-nav-itemed">
|
||||
<a class="" href="javascript:;">PC管理</a>
|
||||
<dl class="layui-nav-child">
|
||||
<dd class="left-nav-item" data-name="pc-nav-1" title="默认皮肤没有使用">
|
||||
<a href="{:url('Nav/index',['type'=>1,'show_target'=>1])}">头部导航 <i class="layui-icon layui-icon-help"></i>
|
||||
</a>
|
||||
</dd>
|
||||
|
||||
<dd class="left-nav-item" data-name="pc-nav-2"><a
|
||||
href="{:url('Nav/index',['type'=>2,'show_target'=>1])}">友情链接管理</a></dd>
|
||||
<dd class="left-nav-item" data-name="pc-nav-3"><a
|
||||
@@ -130,4 +65,4 @@
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
|
||||
<!-- banner部分 -->
|
||||
<div class="banner product" style="background-image: url('{$category.title_img}');">
|
||||
<div class="title">
|
||||
<p>{$category.title}</p>
|
||||
<p class="en">{$category.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- main部分 -->
|
||||
<div class="main-news">
|
||||
<div class="layui-container">
|
||||
<div class="layui-row layui-col-space20">
|
||||
{volist name='$category.posts_list' id='post'}
|
||||
<div class="layui-col-lg6 content">
|
||||
<div>
|
||||
<div class="news-img"><a href="{:url('Post/read',['id'=>$post.id])}"><img src="{$post.poster}"></a></div>
|
||||
<div class="news-panel">
|
||||
<strong><a href="{:url('Post/read',['id'=>$post.id])}">{$post.title}</a></strong>
|
||||
<p class="detail"><span>{$post.desc_short}</span><a
|
||||
href="{:url('Post/read',['id'=>$post.id])}">[详细]</a></p>
|
||||
<p class="read-push">阅读 <span>{$post.hits}</span> 发布时间:<span>{$post.publish_time}</span></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/volist}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,68 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
<!-- banner部分 -->
|
||||
<div class="banner about" style="background-image: url('{$category.model_parent.title_img}');">
|
||||
<div class="title">
|
||||
<p>{$category.model_parent.title}</p>
|
||||
<p class="en">{$category.model_parent.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- main部分 -->
|
||||
<div class="main-about">
|
||||
<div class="layui-container">
|
||||
<div class="layui-row">
|
||||
<ul class="aboutab">
|
||||
{volist name='category.model_same_parent' id='same_parent_category'}
|
||||
<li {eq name='$category.id' value='$same_parent_category.id' }class="layui-this" {/eq}
|
||||
onclick="location.href = $(this).data('href')"
|
||||
data-href="{:url('Category/read',['id'=>$same_parent_category.id])}">{$same_parent_category.title}</li>
|
||||
{/volist}
|
||||
</ul>
|
||||
<div class="tabIntro">
|
||||
{volist name='$category.posts_list' id='post'}
|
||||
{if $i%2 == 0 }
|
||||
|
||||
<div class="content" style="display: flex;align-items: center;">
|
||||
<div class="layui-inline img"><img src="{$post.poster}"></div>
|
||||
<div class="layui-inline panel">
|
||||
<p>{$post.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
{else /}
|
||||
<div class="content" style="display: flex;align-items: center;">
|
||||
<div class="layui-inline panel p_block">
|
||||
<p>{$post.desc}</p>
|
||||
</div>
|
||||
<div class="layui-inline img"><img src="{$post.poster}"></div>
|
||||
</div>
|
||||
{/if}
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,66 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
<!-- banner部分 -->
|
||||
<div class="banner about" style="background-image: url('{$category.model_parent.title_img}');">
|
||||
<div class="title">
|
||||
<p>{$category.model_parent.title}</p>
|
||||
<p class="en">{$category.model_parent.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- main部分 -->
|
||||
<div class="main-about">
|
||||
<div class="layui-container">
|
||||
<div class="layui-row">
|
||||
<ul class="aboutab">
|
||||
{volist name='category.model_same_parent' id='same_parent_category'}
|
||||
<li {eq name='$category.id' value='$same_parent_category.id' }class="layui-this" {/eq}
|
||||
onclick="location.href = $(this).data('href')"
|
||||
data-href="{:url('Category/read',['id'=>$same_parent_category.id])}">{$same_parent_category.title}</li>
|
||||
{/volist}
|
||||
</ul>
|
||||
<div class="tabJob" style="display: block;">
|
||||
{volist name='$category.posts_list' id='post'}
|
||||
|
||||
<div class="content">
|
||||
<p class="title">{$post.title}</p>
|
||||
<p>> 职位描述</p>
|
||||
<ol>
|
||||
{volist name='$post.desc_list' id='li'}
|
||||
|
||||
<li>{$li};</li>
|
||||
{/volist}
|
||||
|
||||
</ol>
|
||||
</div>
|
||||
|
||||
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,81 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
<!-- banner部分 -->
|
||||
<div class="banner about" style="background-image: url('{$category.model_parent.title_img}');">
|
||||
<div class="title">
|
||||
<p>{$category.model_parent.title}</p>
|
||||
<p class="en">{$category.model_parent.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- main部分 -->
|
||||
<div class="main-about">
|
||||
<div class="layui-container">
|
||||
<div class="layui-row">
|
||||
<ul class="aboutab">
|
||||
{volist name='category.model_same_parent' id='same_parent_category'}
|
||||
<li {eq name='$category.id' value='$same_parent_category.id' }class="layui-this" {/eq}
|
||||
onclick="location.href = $(this).data('href')"
|
||||
data-href="{:url('Category/read',['id'=>$same_parent_category.id])}">{$same_parent_category.title}</li>
|
||||
{/volist}
|
||||
</ul>
|
||||
<div class="tabCour" style="display: block;">
|
||||
|
||||
<p class="title">我们的蜕变</p>
|
||||
<ul class="timeline">
|
||||
{volist name='$category.posts_list' id='post'}
|
||||
|
||||
{if $i%2 == 0 }
|
||||
|
||||
<li class="odd">
|
||||
<div class="cour-img"><img src="{$post.poster}"></div>
|
||||
<div class="cour-panel layui-col-sm4 layui-col-lg5">
|
||||
<p class="label">{:date('Y 年 m 月 d 日',$post->publish_time)}</p>
|
||||
<p>{$post.title}</p>
|
||||
</div>
|
||||
</li>
|
||||
{else /}
|
||||
<li>
|
||||
<div class="cour-img"><img src="{$post.poster}"></div>
|
||||
<div class="cour-panel layui-col-sm4 layui-col-sm-offset8 layui-col-lg5 layui-col-lg-offset7">
|
||||
<p class="label">{:date('Y 年 m 月 d 日',$post->publish_time)}</p>
|
||||
<p>{$post.title}</p>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
{/if}
|
||||
|
||||
|
||||
|
||||
{/volist}
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,44 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
|
||||
<!-- banner部分 -->
|
||||
<div class="banner product" style="background-image: url('{$category.title_img}');">
|
||||
<div class="title">
|
||||
<p>{$category.title}</p>
|
||||
<p class="en">{$category.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- main部分 -->
|
||||
<div class="main-case">
|
||||
<div class="layui-container" style="display: flex;justify-content: space-between;align-items: flex-start;flex-wrap: wrap;">
|
||||
{volist name='$category.posts_list' id='post'}
|
||||
<div class="layui-inline content">
|
||||
<div class="layui-inline case-img"><img src="{$post.poster}"></div>
|
||||
<p class="lable">{$post.title}</p>
|
||||
<p>{$post.desc}</p>
|
||||
</div>
|
||||
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,48 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
|
||||
<!-- banner部分 -->
|
||||
<div class="banner product" style="background-image: url('{$category.title_img}');">
|
||||
<div class="title">
|
||||
<p>{$category.title}</p>
|
||||
<p class="en">{$category.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
<!-- main部分 -->
|
||||
<div class="main product">
|
||||
<div class="layui-container">
|
||||
{volist name='$category.posts_list' id='post'}
|
||||
|
||||
<div class="content layui-row">
|
||||
<div class="layui-col-xs12 layui-col-sm6 layui-col-md7 layui-col-lg6 content-img"><img
|
||||
src="{$post.poster}"></div>
|
||||
<div class="layui-col-xs12 layui-col-sm6 layui-col-md5 layui-col-lg6 right">
|
||||
<p class="label">{$post.title}</p>
|
||||
<p class="detail">{$post.desc_short}</p>
|
||||
<div><a href="{:url('Post/read',['id'=>$post.id])}">查看产品 ></a></div>
|
||||
</div>
|
||||
</div>
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,3 +0,0 @@
|
||||
{include file='common/_require'/}
|
||||
|
||||
<link rel="stylesheet" href="/static/css/index.articles.css">
|
||||
@@ -1,2 +0,0 @@
|
||||
{include file='common/_require'/}
|
||||
<link rel="stylesheet" href="/static/css/index.blog.css">
|
||||
@@ -1,7 +0,0 @@
|
||||
<span class="layui-breadcrumb" lay-separator="|">
|
||||
{volist name='list_header_nav' id='nav'}
|
||||
|
||||
<a href="{$nav.value}" target="{$nav.target}">{$nav.title}</a>
|
||||
{/volist}
|
||||
|
||||
</span>
|
||||
@@ -1,3 +0,0 @@
|
||||
{include file='common/_require'/}
|
||||
|
||||
<link rel="stylesheet" href="/static/css/index.documents.css">
|
||||
@@ -1,35 +0,0 @@
|
||||
<!-- footer部分 -->
|
||||
<div class="footer">
|
||||
<div class="layui-container">
|
||||
<p class="footer-web">
|
||||
{volist name='list_nav_friend_url' id='nav'}
|
||||
|
||||
<a href="{$nav.value}" target="{$nav.target}">{$nav.title}</a>
|
||||
{/volist}
|
||||
|
||||
</p>
|
||||
<div class="layui-row footer-contact">
|
||||
<div class="layui-col-sm2 layui-col-lg1"><img src="{:get_source_link(get_system_config('site_qrcode'))}"></div>
|
||||
<div class="layui-col-sm10 layui-col-lg11">
|
||||
<div class="layui-row">
|
||||
<div class="layui-col-sm6 layui-col-md8 layui-col-lg9">
|
||||
<p class="contact-top"><i class="layui-icon layui-icon-cellphone"></i> {:get_system_config('site_contact_phone')} ({:get_system_config('site_worktime')})</p>
|
||||
<p class="contact-bottom"><i class="layui-icon layui-icon-home"></i> {:get_system_config('stie_contact_email')}</span></p>
|
||||
</div>
|
||||
<div class="layui-col-sm6 layui-col-md4 layui-col-lg3">
|
||||
<p class="contact-top"><span class="right">{:get_system_config('site_copyright')}</p>
|
||||
<p class="contact-bottom">
|
||||
<span class="right"><a href="http://www.beian.miit.gov.cn/">{:get_system_config('site_beian')}</a></span>
|
||||
</p>
|
||||
{if !empty(get_system_config('site_safe_beian')) }
|
||||
|
||||
<p class="contact-bottom">
|
||||
<span class="right"><a href="{:get_system_config('site_safe_beian_url')}"><img src="/static/images/ghs.png" alt="" style="margin-right: 10px;">{:get_system_config('site_safe_beian')}</a></span>
|
||||
</p>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,23 +0,0 @@
|
||||
<!-- nav部分 -->
|
||||
<div class="nav index">
|
||||
<div class="layui-container">
|
||||
<!-- 公司logo -->
|
||||
<div class="nav-logo">
|
||||
<a href="{:url('index/Index/index')}">
|
||||
<img src="{:get_source_link(get_system_config('site_logo'))}" alt="{:get_system_config('site_name')}">
|
||||
</a>
|
||||
</div>
|
||||
<div class="nav-list">
|
||||
<button>
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<ul class="layui-nav" lay-filter="">
|
||||
{volist name='list_header_nav' id='nav'}
|
||||
|
||||
<li class="layui-nav-item"><a href="{$nav.value}">{$nav.title}</a></li>
|
||||
{/volist}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -1,11 +0,0 @@
|
||||
{include file='common/_require'/}
|
||||
|
||||
<link rel="stylesheet" href="/static/css/index.easy_blue.css">
|
||||
|
||||
<script>
|
||||
|
||||
layui.config({
|
||||
base: '/static/js/'
|
||||
}).use('firm');
|
||||
|
||||
</script>
|
||||
@@ -1,6 +1,7 @@
|
||||
<link rel="stylesheet" href="/static/css/reset.css">
|
||||
<link rel="stylesheet" href="/static/css/pagination.css">
|
||||
<link rel="stylesheet" href="/static/lib/layui/css/layui.css">
|
||||
<link rel="stylesheet" href="/static/css/index.articles.css">
|
||||
<script src="/static/lib/jquery/jquery-3.4.1.min.js"></script>
|
||||
<script src="/static/lib/jquery/jquery.cookie.js"></script>
|
||||
<script src="/static/lib/layui/layui.js"></script>
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}</title>
|
||||
{include file='common/_articles_require'/}
|
||||
</head>
|
||||
<body>
|
||||
<div class="layui-container main-container">
|
||||
<div class="layui-row layui-col-space4">
|
||||
{include file='common/_articles_left'/}
|
||||
<div class="layui-col-md7">
|
||||
|
||||
</div>
|
||||
{include file='common/_articles_right'/}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,22 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,105 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}</title>
|
||||
{include file='common/_articles_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="layui-container main-container">
|
||||
<div class="layui-row layui-col-space4">
|
||||
{include file='common/_articles_left'/}
|
||||
<div class="layui-col-md7">
|
||||
<div class="main-container">
|
||||
|
||||
{eq name='$Request.param.category_id|default="0"' value='0'}
|
||||
|
||||
<div style="">
|
||||
<div class="layui-carousel" id="banner">
|
||||
<div carousel-item>
|
||||
{volist name='list_nav_slide' id='nav'}
|
||||
|
||||
<a href="{$nav.value|default='javascript:;'}" target="{$nav.target}">
|
||||
<img src="{$nav.img}">
|
||||
<div class="panel">
|
||||
<p class="title">{$nav.title}</p>
|
||||
<p>{$nav.desc}</p>
|
||||
</div>
|
||||
</a>
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/eq}
|
||||
|
||||
{notempty name='$sub_category'}
|
||||
<div class="tab-list">
|
||||
<a href="{:url('Index/index',['category_id'=>$Request.param.category_id])}" {eq
|
||||
name='$Request.param.sub_category_id|default=0' value='0' } class="current" {/eq}>全部</a>
|
||||
{volist name='$sub_category' id='category'}
|
||||
|
||||
<a href="{:url('Index/index',['category_id'=>$Request.param.category_id,'sub_category_id'=>$category.id])}"
|
||||
{eq name='$Request.param.sub_category_id|default=0' value='$category.id' } class="current"
|
||||
{else/}{/eq}>{$category.title}</a>
|
||||
{/volist}
|
||||
</div>
|
||||
{/notempty}
|
||||
|
||||
<div class="post-container">
|
||||
<div class="post-list">
|
||||
{volist name='list_post' id='post'}
|
||||
|
||||
<a href="{:url('Post/read',['id'=>$post.id])}" class="post-item"
|
||||
onmouseover="$(this).find('.poster').addClass('layui-anim-scale')"
|
||||
onmouseout="$(this).find('.poster').removeClass('layui-anim-scale')">
|
||||
{notempty name='$post->getData("poster")'}
|
||||
|
||||
<div class="poster layui-anim" style="background-image: url('{$post.poster}');"></div>
|
||||
{/notempty}
|
||||
|
||||
<div class="info">
|
||||
<div class="title">{$post.title}</div>
|
||||
<div class="plus-info">
|
||||
<span>{$post.hits}访问</span>
|
||||
<span>{$post.comment_count}评论</span>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
{/volist}
|
||||
{empty name='list_post'}
|
||||
|
||||
<img class="nodata" src="/static/images/nodata.png" alt="">
|
||||
{/empty}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_articles_right'/}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
|
||||
layui.use('carousel', function () {
|
||||
var carousel = layui.carousel;
|
||||
//建造实例
|
||||
carousel.render({
|
||||
elem: '#banner'
|
||||
, width: '100%' //设置容器宽度
|
||||
, arrow: 'always' //始终显示箭头
|
||||
//,anim: 'updown' //切换动画方式
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,137 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<title>{:get_system_config('site_name')}</title>
|
||||
{include file='common/_blog_require'/}
|
||||
|
||||
<!--加载meta IE兼容文件-->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
<style>
|
||||
.item .img{
|
||||
display: flex;justify-content: center;align-items: center;height: 200px;
|
||||
}
|
||||
|
||||
</style>
|
||||
<style>
|
||||
.index-bg-img{
|
||||
background-image: url('{:get_source_link(get_system_config("blog_index_bg_img"))}');
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="header">
|
||||
<div class="menu-btn">
|
||||
<div class="menu"></div>
|
||||
</div>
|
||||
<h1 class="logo">
|
||||
<a href="index.html">
|
||||
<span>{:get_system_config('site_name')}</span>
|
||||
<img src="{:get_source_link(get_system_config('site_logo'))}">
|
||||
</a>
|
||||
</h1>
|
||||
<div class="nav">
|
||||
{volist name='list_header_nav' id='nav'}
|
||||
<a href="{$nav.value}" target="{$nav.target}">{$nav.title}</a>
|
||||
{/volist}
|
||||
</div>
|
||||
|
||||
<p class="welcome-text">
|
||||
{:get_system_config('blog_welcome_tips','欢迎来到'.get_system_config('site_name').'的博客')}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="banner index-bg-img">
|
||||
<div class="cont w1000">
|
||||
<div class="title">
|
||||
<h3>{:app\\common\\TextFormat::br(get_system_config('blog_index_bg_title'))}</h3>
|
||||
<h4>{:app\\common\\TextFormat::br(get_system_config('blog_index_bg_title_plus'))}</h4>
|
||||
</div>
|
||||
<div class="amount">
|
||||
<p><span class="text">访问量</span><span class="access">1000</span></p>
|
||||
<p><span class="text">日志</span><span class="daily-record">1000</span></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="content">
|
||||
<div class="cont w1000">
|
||||
<div class="title">
|
||||
<span class="layui-breadcrumb" lay-separator="|">
|
||||
<a href="{:url('index',['category_id'=>0])}" {eq name='$Request.param.category_id|default=0' value='0'} class="active" {/eq}>全部</a>
|
||||
{volist name='list_category' id='category'}
|
||||
|
||||
<a href="{:url('index',['category_id'=>$category.id])}" {eq name='$Request.param.category_id' value='$category.id'} class="active" {/eq}>{$category.title}</a>
|
||||
{/volist}
|
||||
</span>
|
||||
</div>
|
||||
<div class="list-item">
|
||||
{volist name='list_post' id='post'}
|
||||
|
||||
<div class="item">
|
||||
<div class="layui-fluid">
|
||||
<div class="layui-row">
|
||||
<div class="layui-col-xs12 layui-col-sm4 layui-col-md5">
|
||||
<div class="img"><img src="{$post.poster}" alt=""></div>
|
||||
</div>
|
||||
<div class="layui-col-xs12 layui-col-sm8 layui-col-md7">
|
||||
<div class="item-cont">
|
||||
<a href="{:url('Post/read',['id'=>$post.id])}">
|
||||
<h3>{$post.title}<button class="layui-btn layui-btn-danger new-icon">new</button></h3>
|
||||
<h5>
|
||||
{volist name='post.categorys' id='post_category'}
|
||||
<span>{$post_category.category.title}</span>
|
||||
{/volist}
|
||||
</h5>
|
||||
<p>{$post.desc}</p>
|
||||
<a href="{:url('Post/read',['id'=>$post.id])}" class="go-icon"></a>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
<div id="demo" style="text-align: center;"></div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="footer-wrap">
|
||||
<div class="footer w1000">
|
||||
<div class="qrcode">
|
||||
<img src="../res/img/erweima.jpg">
|
||||
</div>
|
||||
<div class="practice-mode">
|
||||
<img src="../res/img/down_img.jpg">
|
||||
<div class="text">
|
||||
<h4 class="title">我的联系方式</h4>
|
||||
<p>微信<span class="WeChat">1234567890</span></p>
|
||||
<p>手机<span class="iphone">1234567890</span></p>
|
||||
<p>邮箱<span class="email">1234567890@qq.com</span></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript" src="../res/layui/layui.js"></script>
|
||||
<script type="text/javascript">
|
||||
layui.config({
|
||||
base: '../res/js/util/'
|
||||
}).use(['element','laypage','jquery','menu'],function(){
|
||||
element = layui.element,laypage = layui.laypage,$ = layui.$,menu = layui.menu;
|
||||
laypage.render({
|
||||
elem: 'demo'
|
||||
,count: 70 //数据总数,从服务端得到
|
||||
});
|
||||
menu.init();
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,66 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}</title>
|
||||
{include file='common/_documents_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="layui-container">
|
||||
<div class="layui-row" style="margin-top: 15px;">
|
||||
<div class="layui-col-md10 layui-col-lg10 layui-col-md-offset1 layui-col-lg-offset1">
|
||||
|
||||
<h1>{:get_system_config('site_name')}</h1>
|
||||
<p style="margin-top: 15px;">{:get_system_config('site_desc')}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-row">
|
||||
<div class="layui-col-md10 layui-col-lg10 layui-col-md-offset1 layui-col-lg-offset1">
|
||||
{include file='common/_documents_nav'/}
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-row" style="margin-top: 15px;">
|
||||
<div class="layui-col-md10 layui-col-lg10 layui-col-md-offset1 layui-col-lg-offset1 ">
|
||||
{volist name='list_index_documents_nav' id='nav'}
|
||||
<a href="{$nav.value}">
|
||||
|
||||
<div class="layui-col-md4 layui-col-lg4 ">
|
||||
<div class="layui-card program-item">
|
||||
<div class="layui-card-header"> <img style="width: 30px;height: 30px;" src="{$nav.img}" alt="">
|
||||
{$nav.title}</div>
|
||||
<div class="layui-card-body">
|
||||
<div class="desc">
|
||||
{$nav.desc|raw}
|
||||
</div>
|
||||
<div class="options">
|
||||
详情 <i class="layui-icon layui-icon-right"></i>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
{/volist}
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-row">
|
||||
<div class="layui-col-md10 layui-col-lg10 layui-col-md-offset1 layui-col-lg-offset1" style="text-align: center;">
|
||||
<span class="layui-breadcrumb" lay-separator="|">
|
||||
{volist name='list_nav_friend_url' id='nav'}
|
||||
|
||||
<a href="{$nav.value}" target="{$nav.target}">{$nav.title}</a>
|
||||
{/volist}
|
||||
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-row" style="text-align: center;margin-top: 15px;">
|
||||
<a href="http://www.beian.miit.gov.cn/" target="_blank">{:get_system_config('site_beian')}</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,109 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
</head>
|
||||
<body>
|
||||
<!-- nav部分 -->
|
||||
<div class="nav index">
|
||||
<div class="layui-container">
|
||||
<!-- 公司logo -->
|
||||
<div class="nav-logo">
|
||||
<a href="index.html">
|
||||
<img src="{:get_source_link(get_system_config('site_logo'))}" alt="{:get_system_config('site_name')}">
|
||||
</a>
|
||||
</div>
|
||||
<div class="nav-list">
|
||||
<button>
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<ul class="layui-nav" lay-filter="">
|
||||
{volist name='list_header_nav' id='nav'}
|
||||
|
||||
<li class="layui-nav-item"><a href="{$nav.value}">{$nav.title}</a></li>
|
||||
{/volist}
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- banner部分 -->
|
||||
<div>
|
||||
<div class="layui-carousel" id="banner">
|
||||
<div carousel-item>
|
||||
{volist name='list_nav_slide' id='nav'}
|
||||
|
||||
<a href="{$nav.value|default='javascript:;'}" target="{$nav.target}">
|
||||
<img src="{$nav.img}">
|
||||
<div class="panel">
|
||||
<p class="title">{$nav.title}</p>
|
||||
<p>{$nav.desc}</p>
|
||||
</div>
|
||||
</a>
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- main部分 -->
|
||||
<div class="main-product">
|
||||
<div class="layui-container">
|
||||
<p class="title">{:get_system_config('easy_index_block_1_title_1')}<span>{:get_system_config('easy_index_block_1_title_2')}</span></p>
|
||||
<div class="layui-row layui-col-space25">
|
||||
{volist name='list_nav_index_block_1' id='nav'}
|
||||
|
||||
<div class="layui-col-sm6 layui-col-md3">
|
||||
<div class="content">
|
||||
<div><img src="{$nav.img}"></div>
|
||||
<div>
|
||||
<p class="label">{$nav.title}</p>
|
||||
<p>{$nav.desc}</p>
|
||||
</div>
|
||||
<a href="{$nav.value}">查看产品 ></a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/volist}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="main-service">
|
||||
<div class="layui-container">
|
||||
<p class="title">{:get_system_config('easy_index_block_2_title_1')}<span>{:get_system_config('easy_index_block_2_title_2')}</span></p>
|
||||
<div class="layui-row layui-col-space25 layui-col-space80">
|
||||
{volist name='list_nav_index_block_2' id='nav'}
|
||||
|
||||
<div class="layui-col-sm6">
|
||||
<div class="content">
|
||||
<div class="content-left"><img src="{$nav.img}"></div>
|
||||
<div class="content-right">
|
||||
<p class="label">{$nav.title}</p>
|
||||
<span></span>
|
||||
<p>{$nav.desc}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
|
||||
<div class="service-more">
|
||||
{if !empty(get_system_config('easy_index_bottom_jump_url')) }
|
||||
<a href="{:get_system_config('easy_index_bottom_jump_url')}">查看更多</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -2,32 +2,104 @@
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>{:get_system_config('site_name')}</title>
|
||||
{:get_system_config('site_tongji')}
|
||||
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}</title>
|
||||
{include file='common/_require'/}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<textarea id="README" style="display: none">
|
||||
{:file_get_contents(app()->getRootPath().'README.md')}
|
||||
</textarea>
|
||||
<div class="layui-container main-container">
|
||||
<div class="layui-row layui-col-space4">
|
||||
{include file='common/_left'/}
|
||||
<div class="layui-col-md7">
|
||||
<div class="main-container">
|
||||
|
||||
<div id="README-PRE" style="max-width: 800px;margin: 0 auto">
|
||||
{eq name='$Request.param.category_id|default="0"' value='0'}
|
||||
|
||||
<div style="">
|
||||
<div class="layui-carousel" id="banner">
|
||||
<div carousel-item>
|
||||
{volist name='list_nav_slide' id='nav'}
|
||||
|
||||
<a href="{$nav.value|default='javascript:;'}" target="{$nav.target}">
|
||||
<img src="{$nav.img}">
|
||||
<div class="panel">
|
||||
<p class="title">{$nav.title}</p>
|
||||
<p>{$nav.desc}</p>
|
||||
</div>
|
||||
</a>
|
||||
{/volist}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/eq}
|
||||
|
||||
{notempty name='$sub_category'}
|
||||
<div class="tab-list">
|
||||
<a href="{:url('Index/index',['category_id'=>$Request.param.category_id])}" {eq
|
||||
name='$Request.param.sub_category_id|default=0' value='0' } class="current" {/eq}>全部</a>
|
||||
{volist name='$sub_category' id='category'}
|
||||
|
||||
<a href="{:url('Index/index',['category_id'=>$Request.param.category_id,'sub_category_id'=>$category.id])}"
|
||||
{eq name='$Request.param.sub_category_id|default=0' value='$category.id' } class="current"
|
||||
{else/}{/eq}>{$category.title}</a>
|
||||
{/volist}
|
||||
</div>
|
||||
{/notempty}
|
||||
|
||||
<div class="post-container">
|
||||
<div class="post-list">
|
||||
{volist name='list_post' id='post'}
|
||||
|
||||
<a href="{:url('Post/read',['id'=>$post.id])}" class="post-item"
|
||||
onmouseover="$(this).find('.poster').addClass('layui-anim-scale')"
|
||||
onmouseout="$(this).find('.poster').removeClass('layui-anim-scale')">
|
||||
{notempty name='$post->getData("poster")'}
|
||||
|
||||
<div class="poster layui-anim" style="background-image: url('{$post.poster}');"></div>
|
||||
{/notempty}
|
||||
|
||||
<div class="info">
|
||||
<div class="title">{$post.title}</div>
|
||||
<div class="plus-info">
|
||||
<span>{$post.hits}访问</span>
|
||||
<span>{$post.comment_count}评论</span>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</a>
|
||||
{/volist}
|
||||
{empty name='list_post'}
|
||||
|
||||
<img class="nodata" src="/static/images/nodata.png" alt="">
|
||||
{/empty}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_right'/}
|
||||
|
||||
</div>
|
||||
<script src="https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js"></script>
|
||||
<script src="https://cdn.bootcss.com/markdown-it/9.1.0/markdown-it.min.js"></script>
|
||||
<script>
|
||||
var md = window.markdownit();
|
||||
var result = md.render($('#README').val());
|
||||
$('#README-PRE').html(result)
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
<script>
|
||||
|
||||
layui.use('carousel', function () {
|
||||
var carousel = layui.carousel;
|
||||
//建造实例
|
||||
carousel.render({
|
||||
elem: '#banner'
|
||||
, width: '100%' //设置容器宽度
|
||||
, arrow: 'always' //始终显示箭头
|
||||
//,anim: 'updown' //切换动画方式
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,68 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{$post.title}-{:get_system_config('site_name')}</title>
|
||||
{include file='common/_documents_require'/}
|
||||
<link rel="stylesheet" href="/static/lib/quill/quill.snow.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="layui-row read-header" style="display: flex;align-items: center;">
|
||||
<div class=" layui-col-md2">
|
||||
<a href="{:url('Index/index')}" class="site-logo">
|
||||
|
||||
<img src="{:get_source_link(get_system_config('site_logo'))}" alt="">
|
||||
<div>{$post.title}</div>
|
||||
</a>
|
||||
</div>
|
||||
<div class="layui-col-md10">
|
||||
{include file='common/_documents_nav'/}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="layui-row main-body">
|
||||
{notempty name='list_post'}
|
||||
|
||||
<div class="layui-col-md2 full-height">
|
||||
<div class="layui-card full-height">
|
||||
<div class="layui-card-header"><a
|
||||
href="{:url('read',['category_id'=>$Request.param.category_id,'id'=>$post.id])}">{$post.title}</a></div>
|
||||
<div class="layui-card-body list-container">
|
||||
<ol>
|
||||
{volist name='list_post' id='l_post'}
|
||||
|
||||
<li><a
|
||||
href="{:url('read',['category_id'=>$Request.param.category_id,'id'=>$l_post.id])}">{$l_post.title}</a>
|
||||
</li>
|
||||
{/volist}
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/notempty}
|
||||
|
||||
<div class="layui-col-md10 {empty name='list_post'} layui-col-md-offset1 {/empty}">
|
||||
<div class="post-container">
|
||||
<div class="post-title">{$post.title}</div>
|
||||
<div class="info">
|
||||
<span>{$post->publish_time_text}</span>
|
||||
</div>
|
||||
<div class="post-content">
|
||||
<div class="ql-snow">
|
||||
<div class="ql-editor">{$post->content_html|raw}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="layui-row">
|
||||
<div class="layui-row" style="text-align: center;margin-top: 15px;">
|
||||
<a href="http://www.beian.miit.gov.cn/" target="_blank">{:get_system_config('site_beian')}</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,40 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}-首页</title>
|
||||
|
||||
{include file='common/_easy_blue_require'/}
|
||||
<link rel="stylesheet" href="/static/lib/quill/quill.snow.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{include file='common/_easy_blue_header'/}
|
||||
<div style="margin-top: 80px;">
|
||||
<div class="main-newsdate">
|
||||
<div class="layui-container">
|
||||
<p class="news"><a href="">实时新闻</a> > 新闻详情</p>
|
||||
<h1>{$post.title}</h1>
|
||||
<p class="pushtime">发布时间:<span>{$post.publish_time_text}</span></p>
|
||||
<p class="introTop">{$post.desc_html}</p>
|
||||
<div class="ql-editor">
|
||||
{$post.content_html|raw}
|
||||
</div>
|
||||
<p class="introBott">
|
||||
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_easy_blue_footer'/}
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
|
||||
<script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -5,14 +5,14 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{:get_system_config('site_name')}</title>
|
||||
{include file='common/_articles_require'/}
|
||||
{include file='common/_require'/}
|
||||
<link rel="stylesheet" href="/static/lib/quill/quill.snow.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="layui-container main-container">
|
||||
<div class="layui-row layui-col-space4">
|
||||
{include file='common/_articles_left'/}
|
||||
{include file='common/_left'/}
|
||||
<div class="layui-col-md7">
|
||||
<div class="main-container">
|
||||
<div class="content-container">
|
||||
@@ -28,7 +28,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{include file='common/_articles_right'/}
|
||||
{include file='common/_right'/}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user