|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="{dede:global.cfg_soft_lang/}">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <script>const PHPURL = '{dede:field name="phpurl"/}';</script>
- <script src="{dede:global.cfg_cmsurl/}/static/web/js/jquery.min.js"></script>
- <script src="{dede:global.cfg_cmsurl/}/static/web/js/bootstrap.bundle.min.js"></script>
- <link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="{dede:global.cfg_cmsurl/}/static/web/css/style.css">
- <link rel="shortcut icon" href="{dede:global.cfg_cmsurl/}/static/web/img/favicon.ico">
- <title>{dede:field.title/}-{dede:global.cfg_webname/}</title>
- <meta name="keywords" content="{dede:field.keywords/}" />
- <meta name="description" content="{dede:field.description function='html2text(@me)'/}" />
- </head>
- <body>
- {dede:include filename='top.htm'/}
- {dede:include filename='header.htm'/}
- {dede:include filename='navbar.htm'/}
- <div class="container">
- <div class="position">
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb mt-3">
- <li class="breadcrumb-item">当前位置</li>
- {dede:field name='position'/}
- </ol>
- </nav>
- </div>
- <!-- /.position -->
- </div>
- <main class="container">
- <div class="row">
- <div class="col-md-8 article-main">
- <h2 class="mt-0 mb-3 zixue">{dede:field.title/}</h2>
- <div class="article-meta">
- <small>时间:</small>{dede:field.pubdate function="MyDate('Y-m-d',@me)"/}
- <small>来源:</small>{dede:field.source/}
- <small>作者:</small>{dede:field.writer/}
- </div>
- <div class="speciallist row pt-2">
- {dede:field.note/}
- </div>
- <div class="body py-2">
- {dede:field.body/} (责任编辑:{dede:adminname/})
- </div>
- <!-- /.body -->
- <div class="clearfix"></div>
- </div>
- <!-- /.article-main -->
- <aside class="col-md-4 article-sidebar">
- {dede:include comment='推荐内容' filename="widget_recommend.htm"/}
- {dede:include comment='热点内容' filename="widget_hot.htm"/}
- {dede:include comment='QR二维码' filename="widget_qrcode.htm"/}
- </aside>
- <!-- /.article-sidebar -->
- </div>
- </main>
- <!-- /main -->
- {dede:include filename="footer.htm"/}
- </body>
- </html>
|