<!DOCTYPE html>
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
<head>
|
<th:block th:include="include :: header('预览文章')" />
|
</head>
|
<body class="white-bg">
|
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
<form class="form-horizontal m" id="form-article-edit" th:object="${articleRegulation}">
|
<input id="articleRegulationId" name="articleRegulationId" th:field="*{articleRegulationId}" type="hidden">
|
<div class="form-group">
|
<div class="col-sm-10">
|
<input id="regulationContent" name="regulationContent" th:utext="*{regulationContent}" class="form-control" type="hidden">
|
</div>
|
</div>
|
</form>
|
</div>
|
<th:block th:include="include :: footer" />
|
</body>
|
</html>
|