diff --git a/app/index/controller/BaseController.php b/app/index/controller/BaseController.php
index f67d013..1616587 100644
--- a/app/index/controller/BaseController.php
+++ b/app/index/controller/BaseController.php
@@ -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);
- }
}
}
diff --git a/app/index/controller/Category.php b/app/index/controller/Category.php
deleted file mode 100644
index 079d3f5..0000000
--- a/app/index/controller/Category.php
+++ /dev/null
@@ -1,93 +0,0 @@
-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)
- {
- //
- }
-}
diff --git a/app/index/controller/Common.php b/app/index/controller/Common.php
index 4a98ce4..eb54df9 100644
--- a/app/index/controller/Common.php
+++ b/app/index/controller/Common.php
@@ -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);
}
+
}
diff --git a/app/index/controller/Index.php b/app/index/controller/Index.php
index 9606f19..3ef3a87 100644
--- a/app/index/controller/Index.php
+++ b/app/index/controller/Index.php
@@ -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();
}
+
/**
* 显示创建资源表单页.
*
diff --git a/app/index/controller/Post.php b/app/index/controller/Post.php
index 87912cd..8000f5c 100644
--- a/app/index/controller/Post.php
+++ b/app/index/controller/Post.php
@@ -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);
-
- }
/**
* 显示编辑资源表单页.
diff --git a/view/admin/common/_header.html b/view/admin/common/_header.html
index cd4a316..2fc532c 100644
--- a/view/admin/common/_header.html
+++ b/view/admin/common/_header.html
@@ -1,99 +1,90 @@
-
+
\ No newline at end of file
diff --git a/view/admin/common/left_system.html b/view/admin/common/left_system.html
index 4c551b1..14ff5ed 100644
--- a/view/admin/common/left_system.html
+++ b/view/admin/common/left_system.html
@@ -8,41 +8,13 @@
第三方管理
-
- 主题管理
-
+
用户协议管理
- {if get_system_config('index_tpl_name') == 'easy_blue_' }
-
-
- {/if}
- {if get_system_config('index_tpl_name') == 'articles_' }
-
- {/if}
- {if get_system_config('index_tpl_name') == 'documents_' }
-
- {/if}
- {if get_system_config('index_tpl_name') == 'blog_' }
-
-
- {/if}
-
\ No newline at end of file
+
diff --git a/view/index/category/easy_blue_read.html b/view/index/category/easy_blue_read.html
deleted file mode 100644
index eb4e914..0000000
--- a/view/index/category/easy_blue_read.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
-
-
-
{$category.title}
-
{$category.desc}
-
-
-
-
-
-
- {volist name='$category.posts_list' id='post'}
-
-
-
-
-
{$post.title}
-
{$post.desc_short} [详细]
-
阅读 {$post.hits} 发布时间:{$post.publish_time}
-
-
-
- {/volist}
-
-
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/category/easy_blue_read_about_1.html b/view/index/category/easy_blue_read_about_1.html
deleted file mode 100644
index 5b6c0c1..0000000
--- a/view/index/category/easy_blue_read_about_1.html
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
-
-
{$category.model_parent.title}
-
{$category.model_parent.desc}
-
-
-
-
-
-
-
- {volist name='category.model_same_parent' id='same_parent_category'}
- {$same_parent_category.title}
- {/volist}
-
-
- {volist name='$category.posts_list' id='post'}
- {if $i%2 == 0 }
-
-
- {else /}
-
- {/if}
- {/volist}
-
-
-
-
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/category/easy_blue_read_about_2.html b/view/index/category/easy_blue_read_about_2.html
deleted file mode 100644
index 992f4c8..0000000
--- a/view/index/category/easy_blue_read_about_2.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
-
-
{$category.model_parent.title}
-
{$category.model_parent.desc}
-
-
-
-
-
-
-
- {volist name='category.model_same_parent' id='same_parent_category'}
- {$same_parent_category.title}
- {/volist}
-
-
- {volist name='$category.posts_list' id='post'}
-
-
-
{$post.title}
-
> 职位描述
-
- {volist name='$post.desc_list' id='li'}
-
- {$li};
- {/volist}
-
-
-
-
-
- {/volist}
-
-
-
-
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/category/easy_blue_read_about_3.html b/view/index/category/easy_blue_read_about_3.html
deleted file mode 100644
index 3fe990f..0000000
--- a/view/index/category/easy_blue_read_about_3.html
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
-
-
{$category.model_parent.title}
-
{$category.model_parent.desc}
-
-
-
-
-
-
-
- {volist name='category.model_same_parent' id='same_parent_category'}
- {$same_parent_category.title}
- {/volist}
-
-
-
-
我们的蜕变
-
- {volist name='$category.posts_list' id='post'}
-
- {if $i%2 == 0 }
-
-
-
-
-
{:date('Y 年 m 月 d 日',$post->publish_time)}
-
{$post.title}
-
-
- {else /}
-
-
-
-
{:date('Y 年 m 月 d 日',$post->publish_time)}
-
{$post.title}
-
-
-
- {/if}
-
-
-
- {/volist}
-
-
-
-
-
-
-
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/category/easy_blue_read_case.html b/view/index/category/easy_blue_read_case.html
deleted file mode 100644
index 91bbeb9..0000000
--- a/view/index/category/easy_blue_read_case.html
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
-
-
-
{$category.title}
-
{$category.desc}
-
-
-
-
-
- {volist name='$category.posts_list' id='post'}
-
-
-
{$post.title}
-
{$post.desc}
-
-
- {/volist}
-
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/category/easy_blue_read_product.html b/view/index/category/easy_blue_read_product.html
deleted file mode 100644
index 9294613..0000000
--- a/view/index/category/easy_blue_read_product.html
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
-
-
-
{$category.title}
-
{$category.desc}
-
-
-
-
-
- {volist name='$category.posts_list' id='post'}
-
-
-
-
-
{$post.title}
-
{$post.desc_short}
-
-
-
- {/volist}
-
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/common/_articles_require.html b/view/index/common/_articles_require.html
deleted file mode 100644
index f7a2179..0000000
--- a/view/index/common/_articles_require.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{include file='common/_require'/}
-
-
\ No newline at end of file
diff --git a/view/index/common/_blog_require.html b/view/index/common/_blog_require.html
deleted file mode 100644
index b94142b..0000000
--- a/view/index/common/_blog_require.html
+++ /dev/null
@@ -1,2 +0,0 @@
-{include file='common/_require'/}
-
\ No newline at end of file
diff --git a/view/index/common/_documents_nav.html b/view/index/common/_documents_nav.html
deleted file mode 100644
index 57aa60e..0000000
--- a/view/index/common/_documents_nav.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
- {volist name='list_header_nav' id='nav'}
-
- {$nav.title}
- {/volist}
-
-
\ No newline at end of file
diff --git a/view/index/common/_documents_require.html b/view/index/common/_documents_require.html
deleted file mode 100644
index b38f274..0000000
--- a/view/index/common/_documents_require.html
+++ /dev/null
@@ -1,3 +0,0 @@
-{include file='common/_require'/}
-
-
\ No newline at end of file
diff --git a/view/index/common/_easy_blue_footer.html b/view/index/common/_easy_blue_footer.html
deleted file mode 100644
index 42f1fb4..0000000
--- a/view/index/common/_easy_blue_footer.html
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
diff --git a/view/index/common/_easy_blue_header.html b/view/index/common/_easy_blue_header.html
deleted file mode 100644
index c9fd184..0000000
--- a/view/index/common/_easy_blue_header.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
- {volist name='list_header_nav' id='nav'}
-
- {$nav.title}
- {/volist}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/common/_easy_blue_require.html b/view/index/common/_easy_blue_require.html
deleted file mode 100644
index 08da8c2..0000000
--- a/view/index/common/_easy_blue_require.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{include file='common/_require'/}
-
-
-
-
\ No newline at end of file
diff --git a/view/index/common/_articles_left.html b/view/index/common/_left.html
similarity index 100%
rename from view/index/common/_articles_left.html
rename to view/index/common/_left.html
diff --git a/view/index/common/_require.html b/view/index/common/_require.html
index b6a15ba..11a2434 100644
--- a/view/index/common/_require.html
+++ b/view/index/common/_require.html
@@ -1,6 +1,7 @@
+
diff --git a/view/index/common/_articles_right.html b/view/index/common/_right.html
similarity index 100%
rename from view/index/common/_articles_right.html
rename to view/index/common/_right.html
diff --git a/view/index/common/tpl_articles.html b/view/index/common/tpl_articles.html
deleted file mode 100644
index 9ba198e..0000000
--- a/view/index/common/tpl_articles.html
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
- {:get_system_config('site_name')}
- {include file='common/_articles_require'/}
-
-
-
-
- {include file='common/_articles_left'/}
-
-
-
- {include file='common/_articles_right'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/common/tpl_easy_blue.html b/view/index/common/tpl_easy_blue.html
deleted file mode 100644
index 56dbcc5..0000000
--- a/view/index/common/tpl_easy_blue.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
\ No newline at end of file
diff --git a/view/index/index/articles_index.html b/view/index/index/articles_index.html
deleted file mode 100644
index dec2425..0000000
--- a/view/index/index/articles_index.html
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}
- {include file='common/_articles_require'/}
-
-
-
-
-
- {include file='common/_articles_left'/}
-
-
-
- {eq name='$Request.param.category_id|default="0"' value='0'}
-
-
- {/eq}
-
- {notempty name='$sub_category'}
-
- {/notempty}
-
-
-
-
- {include file='common/_articles_right'/}
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/index/blog_index.html b/view/index/index/blog_index.html
deleted file mode 100644
index 0c0a70a..0000000
--- a/view/index/index/blog_index.html
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
-
- {:get_system_config('site_name')}
- {include file='common/_blog_require'/}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
{:app\\common\\TextFormat::br(get_system_config('blog_index_bg_title'))}
- {:app\\common\\TextFormat::br(get_system_config('blog_index_bg_title_plus'))}
-
-
-
-
-
-
-
-
-
- {volist name='list_post' id='post'}
-
-
- {/volist}
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/index/documents_index.html b/view/index/index/documents_index.html
deleted file mode 100644
index d5a7aae..0000000
--- a/view/index/index/documents_index.html
+++ /dev/null
@@ -1,66 +0,0 @@
-
-
-
-
-
-
- {:get_system_config('site_name')}
- {include file='common/_documents_require'/}
-
-
-
-
-
-
-
-
{:get_system_config('site_name')}
-
{:get_system_config('site_desc')}
-
-
-
-
- {include file='common/_documents_nav'/}
-
-
-
-
-
-
- {volist name='list_nav_friend_url' id='nav'}
-
- {$nav.title}
- {/volist}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/index/easy_blue_index.html b/view/index/index/easy_blue_index.html
deleted file mode 100644
index 4e4e107..0000000
--- a/view/index/index/easy_blue_index.html
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
-
-
- {:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
-
-
-
-
-
-
-
-
-
- {volist name='list_header_nav' id='nav'}
-
- {$nav.title}
- {/volist}
-
-
-
-
-
-
-
-
-
-
-
{:get_system_config('easy_index_block_1_title_1')}{:get_system_config('easy_index_block_1_title_2')}
-
- {volist name='list_nav_index_block_1' id='nav'}
-
-
-
-
-
-
{$nav.title}
-
{$nav.desc}
-
-
查看产品 >
-
-
-
- {/volist}
-
-
-
-
-
-
{:get_system_config('easy_index_block_2_title_1')}{:get_system_config('easy_index_block_2_title_2')}
-
- {volist name='list_nav_index_block_2' id='nav'}
-
-
-
-
-
-
{$nav.title}
-
-
{$nav.desc}
-
-
-
- {/volist}
-
-
-
-
- {if !empty(get_system_config('easy_index_bottom_jump_url')) }
-
查看更多
- {/if}
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/index/index.html b/view/index/index/index.html
index 9b9c483..838b5bf 100644
--- a/view/index/index/index.html
+++ b/view/index/index/index.html
@@ -2,32 +2,104 @@
-
-
-
- {:get_system_config('site_name')}
- {:get_system_config('site_tongji')}
-
+
+
+ {:get_system_config('site_name')}
+ {include file='common/_require'/}
-
+
+
+ {include file='common/_left'/}
+
+
-
+ {eq name='$Request.param.category_id|default="0"' value='0'}
+
+
+ {/eq}
+
+ {notempty name='$sub_category'}
+
+ {/notempty}
+
+
+
+
+ {include file='common/_right'/}
-
-
-
+
-
+
\ No newline at end of file
diff --git a/view/index/post/blog_read.html b/view/index/post/blog_read.html
deleted file mode 100644
index e69de29..0000000
diff --git a/view/index/post/documents_read.html b/view/index/post/documents_read.html
deleted file mode 100644
index 5439091..0000000
--- a/view/index/post/documents_read.html
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
{$post.title}-{:get_system_config('site_name')}
- {include file='common/_documents_require'/}
-
-
-
-
-
-
-
- {notempty name='list_post'}
-
-
-
-
-
-
- {volist name='list_post' id='l_post'}
-
- {$l_post.title}
-
- {/volist}
-
-
-
-
- {/notempty}
-
-
-
-
{$post.title}
-
- {$post->publish_time_text}
-
-
-
-
{$post->content_html|raw}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/post/easy_blue_read.html b/view/index/post/easy_blue_read.html
deleted file mode 100644
index 17611ec..0000000
--- a/view/index/post/easy_blue_read.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
{:get_system_config('site_name')}-首页
-
- {include file='common/_easy_blue_require'/}
-
-
-
-
- {include file='common/_easy_blue_header'/}
-
-
-
-
实时新闻 > 新闻详情
-
{$post.title}
-
发布时间:{$post.publish_time_text}
-
{$post.desc_html}
-
- {$post.content_html|raw}
-
-
-
-
-
-
-
- {include file='common/_easy_blue_footer'/}
-
-
-
-
-
\ No newline at end of file
diff --git a/view/index/post/articles_read.html b/view/index/post/read.html
similarity index 86%
rename from view/index/post/articles_read.html
rename to view/index/post/read.html
index b5a6e59..3e41709 100644
--- a/view/index/post/articles_read.html
+++ b/view/index/post/read.html
@@ -5,14 +5,14 @@
{:get_system_config('site_name')}
- {include file='common/_articles_require'/}
+ {include file='common/_require'/}
- {include file='common/_articles_left'/}
+ {include file='common/_left'/}
- {include file='common/_articles_right'/}
+ {include file='common/_right'/}