0

我是 css 新手,对客户端 javascript 有不好的体验……目前正在研究 twitter-bootstrap,希望框架能帮助我理解复杂的响应式 css,并帮助我通过最佳实践快速启动和运行。

但是,即使是最新的引导程序 v.3.0.0(截至目前,提交 id:4bac2c567a139958cb2ff35f7ad30c7dcd8527a3)也无法按预期开箱即用。运行 index.html,我希望看到至少格式良好的 html 文档,但它是一个混乱的 html 文档

索引.html

我很确定我的设置有问题,我希望看到一些格式良好的 html 文档,例如http://getbootstrap.com/中显示的文档,但毫无头绪……谁能解释 index.html 代码的含义?特别是因为我不确定需要包含什么 javascript 框架才能使其正常工作(我之前在 Emberjs.com 中看到过类似的奇怪语法,但不太确定,因为 index.html 看起来也只是

提前致谢!

<div class="bs-masthead">
  <div class="container">
    <h1>Bootstrap 3</h1>
    <p class="lead">Sleek, intuitive, and powerful mobile-first front-end framework for faster and easier web development.</p>
    <p>
      <a href="{{ site.download_dist }}" class="btn btn-outline btn-large" onclick="_gaq.push(['_trackEvent', 'Jumbotron actions', 'Download', 'Download 3.0.0 RC1']);">Download Bootstrap</a>
    </p>
  </div>
</div>
4

3 回答 3

2

https://github.com/twbs/bootstrap根目录下的 index.html 文件只包含 getbootstrap.com 的“页面内容”部分

如果您想要 getbootstrap.com 的全部内容,可以从以下网址获取:https ://github.com/twbs/bootstrap-examples

于 2013-08-03T17:27:27.030 回答
1

您需要 Jekyll 来运行引导文档的本地版本。

但是一个很棒的人通过复制整个文档并在此处提供下载来提供帮助: http ://web3canvas.com/item/bootstrap-3-docs/

或者您可以下载 Bootstrap v2.3.2 文档。这在没有 Jekyll 的情况下在本地工作

于 2013-11-10T11:41:31.577 回答
0

在本地机器上安装 Jekyll。它是一个静态站点生成器,用于生成 Twitter Bootstrap 站点。
http://jekyllrb.com/

于 2013-08-03T18:37:27.750 回答