From efdb99f8cecc4afb592afad79c761081d5d5cf22 Mon Sep 17 00:00:00 2001 From: lee <4766465@qq.com> Date: Wed, 18 Dec 2024 13:27:00 +0800 Subject: [PATCH] init --- xxl-job/xxl-job-admin/src/main/resources/templates/help.ftl | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 47 insertions(+), 0 deletions(-) diff --git a/xxl-job/xxl-job-admin/src/main/resources/templates/help.ftl b/xxl-job/xxl-job-admin/src/main/resources/templates/help.ftl new file mode 100644 index 0000000..1409fc5 --- /dev/null +++ b/xxl-job/xxl-job-admin/src/main/resources/templates/help.ftl @@ -0,0 +1,47 @@ +<!DOCTYPE html> +<html> +<head> + <#import "./common/common.macro.ftl" as netCommon> + <@netCommon.commonStyle /> + <title>${I18n.admin_name}</title> +</head> +<body class="hold-transition skin-blue sidebar-mini <#if cookieMap?exists && cookieMap["xxljob_adminlte_settings"]?exists && "off" == cookieMap["xxljob_adminlte_settings"].value >sidebar-collapse</#if> "> +<div class="wrapper"> + <!-- header --> + <@netCommon.commonHeader /> + <!-- left --> + <@netCommon.commonLeft "help" /> + + <!-- Content Wrapper. Contains page content --> + <div class="content-wrapper"> + <!-- Content Header (Page header) --> + <section class="content-header"> + <h1>${I18n.job_help}</h1> + </section> + + <!-- Main content --> + <section class="content"> + <div class="callout callout-info"> + <h4>${I18n.admin_name_full}</h4> + <br> + <p> + <a target="_blank" href="https://github.com/xuxueli/xxl-job">Github</a> + <iframe src="https://ghbtns.com/github-btn.html?user=xuxueli&repo=xxl-job&type=star&count=true" frameborder="0" scrolling="0" width="170px" height="20px" style="margin-bottom:-5px;"></iframe> + <br><br> + <a target="_blank" href="https://www.xuxueli.com/xxl-job/">${I18n.job_help_document}</a> + <br><br> + + </p> + <p></p> + </div> + </section> + <!-- /.content --> + </div> + <!-- /.content-wrapper --> + + <!-- footer --> + <@netCommon.commonFooter /> +</div> +<@netCommon.commonScript /> +</body> +</html> -- Gitblit v1.9.3