forked from twbs/bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.php
38 lines (30 loc) · 1 KB
/
build.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php $page = "build" ?>
<?php $title="管理发布"?>
<?php $description = "本项目基于cnBootstrap开源项目创建,致力于前端快捷开发!" ?>
<?php include("./common/meta.php"); ?>
</head>
<body>
<?php include("./common/header.php"); ?>
<div class="wrap">
<div class="sidebar">
<ul class="nav none">
<li><a href="#">管理发布</a></li>
</ul>
</div> <!-- // div.sidebar -->
<div class="main">
<section id="">
<h1>管理发布</h1>
<p>项目要管理发布,就要有一套良好的流程,只有这样才能确保项目的高效管理</p>
<h2>计划</h2>
<ul>
<li>使用 Nodejs 平台管理</li>
<li>支持语法等错误检查</li>
<li>自动打包、测试、发布等</li>
</ul>
</section>
<?php include("common/comment.html");?>
</div> <!-- // div.main -->
</div>
<?php include("common/footer.html");?>
</body>
</html>