123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <{include file="./admin/header.html"}>
- <{include file="./admin/left.html"}>
- <{include file="./admin/nav.html"}>
- <{include file="get_kindeditor.html"}>
- <script type="text/javascript" src="<{$web_cfg.cdn}>/public/static/js/jquery-1.7.2.min.js"></script>
- <link rel="stylesheet" href="<{$web_cfg.cdn}>/public/static/js/jquery.minicolors.css" />
- <script type="text/javascript" src="<{$web_cfg.cdn}>/public/static/js/jquery.minicolors.js"></script>
- <style>
- .set-nav {
- margin: 0 auto;
- }
- .set-nav-hr {
- background-color: #ddd;
- height: 1px;
- position: relative;
- }
- .form-group label {
- font-weight: 600;
- }
- .checkbox-inline, .radio-inline {
- font-weight: 400!important;
- }
- .rowlabel {
- font-weight: 300!important;
- }
- .music_play_hide {
- display:none;
- }
- </style>
- <div style="margin-top: 30px">
- <p style="font-size: 30px;text-align:center"><{$bulletinData.title}></p>
- </div>
- <div style="margin-top: 30px">
- <p style="font-size: 15px;text-align:center;" >发布者:<{$bulletinData.userData.name}> 发布时间:<{$bulletinData.update_time|date_format:'%Y-%m-%d'}></p>
- </div>
- <div style="margin-top: 30px">
- <p style="font-size: 20px;text-align:center;" ><{$bulletinData.content}></p>
- </div>
- <script>
- KISSY.use('node, io', function (S, Node, IO) {
- var $ = S.all;
-
- });
- </script>
- <{include file="./admin/bottom.html"}>
|