静态文件版本

This commit is contained in:
devil_gong 2018-08-17 15:17:12 +08:00
parent 1540b2f360
commit ad9ef7ab3e
4 changed files with 19 additions and 15 deletions

View File

@ -91,6 +91,10 @@
<label>{{$data.home_content_max_width.name}}<span class="fs-12 fw-100 cr-999">{{$data.home_content_max_width.describe}}</span></label>
<input type="number" name="{{$data.home_content_max_width.only_tag}}" placeholder="{{$data.home_content_max_width.name}}" data-validation-message="{{$data.home_content_max_width.error_tips}}" class="am-radius" <present name="data"> value="{{$data.home_content_max_width.value}}"</present> required />
</div>
<div class="am-form-group">
<label>{{$data.home_static_cache_version.name}}<span class="fs-12 fw-100 cr-999">{{$data.home_static_cache_version.describe}}</span></label>
<input type="text" name="{{$data.home_static_cache_version.only_tag}}" placeholder="{{$data.home_static_cache_version.describe}}" data-validation-message="{{$data.home_static_cache_version.error_tips}}" class="am-radius" <present name="data"> value="{{$data.home_static_cache_version.value}}"</present> />
</div>
<div class="am-form-group">
<label>{{$data.home_site_icp.name}}<span class="fs-12 fw-100 cr-999">{{$data.home_site_icp.describe}}</span></label>
<input type="text" name="{{$data.home_site_icp.only_tag}}" placeholder="{{$data.home_site_icp.describe}}" data-validation-message="{{$data.home_site_icp.error_tips}}" class="am-radius" <present name="data"> value="{{$data.home_site_icp.value}}"</present> />

View File

@ -15,24 +15,24 @@
</html>
<!-- 类库 -->
<js href="__PUBLIC__/Common/Lib/jquery/jquery-2.1.0.js" />
<js href="__PUBLIC__/Common/Lib/assets/js/amazeui.min.js" />
<js href="__PUBLIC__/Common/Lib/echarts/echarts.min.js" />
<js href="__PUBLIC__/Common/Lib/jquery/jquery-2.1.0.js?v={{:MyC('home_static_cache_version')}}" />
<js href="__PUBLIC__/Common/Lib/assets/js/amazeui.min.js?v={{:MyC('home_static_cache_version')}}" />
<js href="__PUBLIC__/Common/Lib/echarts/echarts.min.js?v={{:MyC('home_static_cache_version')}}" />
<!-- ueditor 编辑器 -->
<js href="__PUBLIC__/Common/Lib/ueditor/ueditor.config.js" />
<js href="__PUBLIC__/Common/Lib/ueditor/ueditor.all.js" />
<js href="__PUBLIC__/Common/Lib/ueditor/lang/zh-cn/zh-cn.js" />
<js href="__PUBLIC__/Common/Lib/ueditor/ueditor.config.js?v={{:MyC('home_static_cache_version')}}" />
<js href="__PUBLIC__/Common/Lib/ueditor/ueditor.all.js?v={{:MyC('home_static_cache_version')}}" />
<js href="__PUBLIC__/Common/Lib/ueditor/lang/zh-cn/zh-cn.js?v={{:MyC('home_static_cache_version')}}" />
<!-- 颜色选择器 -->
<js href="__PUBLIC__/Common/Lib/colorpicker/jquery.colorpicker.js" />
<js href="__PUBLIC__/Common/Lib/colorpicker/jquery.colorpicker.js?v={{:MyC('home_static_cache_version')}}" />
<!-- 项目公共 -->
<js href="__PUBLIC__/Common/Js/Common.js" />
<js href="__PUBLIC__/Home/{{$default_theme}}/Js/Common.js" />
<js href="__PUBLIC__/Common/Js/Common.js?v={{:MyC('home_static_cache_version')}}" />
<js href="__PUBLIC__/Home/{{$default_theme}}/Js/Common.js?v={{:MyC('home_static_cache_version')}}" />
<!-- 控制器 -->
<if condition="!empty($module_js)">
<js href="__PUBLIC__/{{$module_js}}" />
<js href="__PUBLIC__/{{$module_js}}?v={{:MyC('home_static_cache_version')}}" />
</if>
{{:MyC('home_footer_info')}}

View File

@ -11,11 +11,11 @@
<meta name="msapplication-starturl" content="{{:__MY_URL__}}" />
<link rel="shortcut icon" type="image/x-icon" href="{{:__MY_URL__}}favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1, maximum-scale=1">
<css href="__PUBLIC__/Common/Lib/assets/css/amazeui.css" />
<css href="__PUBLIC__/Common/Css/Common.css" />
<css href="__PUBLIC__/Home/{{$default_theme}}/Css/Common.css" />
<css href="__PUBLIC__/Common/Lib/assets/css/amazeui.css?v={{:MyC('home_static_cache_version')}}" />
<css href="__PUBLIC__/Common/Css/Common.css?v={{:MyC('home_static_cache_version')}}" />
<css href="__PUBLIC__/Home/{{$default_theme}}/Css/Common.css?v={{:MyC('home_static_cache_version')}}" />
<if condition="!empty($module_css)">
<css href="__PUBLIC__/{{$module_css}}" />
<css href="__PUBLIC__/{{$module_css}}?v={{:MyC('home_static_cache_version')}}" />
</if>
<script>
var __root__ = '__ROOT__';

File diff suppressed because one or more lines are too long