ghy-all/ghy-admin/src/main/resources/templates/main.html

65 lines
2.8 KiB
HTML
Raw Normal View History

2022-02-08 11:36:50 +08:00
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--360浏览器优先以webkit内核解析-->
2023-05-16 11:43:51 +08:00
<title>介绍</title>
2022-02-08 11:36:50 +08:00
<link rel="shortcut icon" href="favicon.ico">
<link href="../static/css/bootstrap.min.css" th:href="@{/css/bootstrap.min.css}" rel="stylesheet"/>
<link href="../static/css/font-awesome.min.css" th:href="@{/css/font-awesome.min.css}" rel="stylesheet"/>
<link href="../static/css/style.min.css" th:href="@{/css/style.min.css}" rel="stylesheet"/>
</head>
<body class="gray-bg">
<div class="row border-bottom white-bg dashboard-header">
<div class="col-sm-3">
<h2>Hello,Guest</h2>
<small>移动设备访问请扫描以下二维码:</small>
<br>
<br>
2022-02-08 12:49:31 +08:00
<img th:src="@{/img/qr_code.jpg}" width="100%" style="max-width:264px;">
2022-02-08 11:36:50 +08:00
<br>
</div>
<div class="col-sm-5">
2023-05-16 11:43:51 +08:00
<h2>后台管理框架</h2>
<p>一直想做一款后台管理系统看了很多优秀的开源项目但是发现没有合适自己的。于是利用空闲休息时间开始自己写一套后台系统。如此有了本管理系统。她可以用于所有的Web应用程序<b>网站管理后台</b><b>网站会员中心</b><b>CMS</b><b>CRM</b><b>OA</b>等等,当然,您也可以对她进行深度定制,以做出更强系统。所有前端后台代码封装过后十分精简易上手,出错概率低。同时支持移动客户端访问。系统会陆续更新一些实用功能。</p>
2022-02-08 11:36:50 +08:00
<p>
<b>当前版本:</b><span>v[[${version}]]</span>
</p>
<br>
</div>
<div class="col-sm-4">
<h4>技术选型:</h4>
<ol>
<li>核心框架Spring Boot。</li>
<li>安全框架Apache Shiro。</li>
<li>模板引擎Thymeleaf。</li>
<li>持久层框架MyBatis。</li>
<li>定时任务:Quartz。</li>
<li>数据库连接池Druid。</li>
<li>工具类Fastjson。</li>
<li>更多……</li>
</ol>
</div>
</div>
<script th:src="@{/js/jquery.min.js}"></script>
<script th:src="@{/js/bootstrap.min.js}"></script>
<script th:src="@{/ajax/libs/layer/layer.min.js}"></script>
<script type="text/javascript">
$('#pay-qrcode').click(function(){
var html=$(this).html();
parent.layer.open({
title: false,
type: 1,
closeBtn:false,
shadeClose:true,
area: ['600px', '360px'],
content: html
});
});
</script>
</body>
</html>