| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <include file="Common/header" />
- <link href="__PUBLIC__/highlight/default.min.css" rel="stylesheet">
- <script src="__PUBLIC__/highlight/highlight.min.js"></script>
- <style type="text/css">
- body{
- overflow-x:hidden;overflow-y:hidden
- }
- </style>
- <!-- 这里开始是内容 -->
- <div class="" style="padding-top:10px;">
- {$page.page_content}
- </div>
- <include file="Common/footer" />
- <script>
- $(function(){
- hljs.initHighlightingOnLoad();
- //为所有table标签添加bootstap支持的表格类
- $("table").addClass("table table-bordered table-hover");
- //超链接都在新窗口打开
- $('a[href^="http"]').each(function() {
- $(this).attr('target', '_blank');
- });
- })
- </script>
|