Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

50 строки
2.8 KiB

  1. <div class="bs-docs-section">
  2. <h1 id="whats-included" class="page-header">What's included</h1>
  3. <p class="lead">Bootstrap is downloadable in two forms, within which you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.</p>
  4. <div class="bs-callout bs-callout-warning" id="jquery-required">
  5. <h4>jQuery required</h4>
  6. <p>Please note that <strong>all JavaScript plugins require jQuery</strong> to be included, as shown in the <a href="#template">starter template</a>. <a href="{{ site.repo }}/blob/v{{ site.current_version }}/bower.json">Consult our <code>bower.json</code></a> to see which versions of jQuery are supported.</p>
  7. </div>
  8. <h2 id="whats-included-precompiled">Precompiled Bootstrap</h2>
  9. <p>Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:</p>
  10. <!-- NOTE: This info is intentionally duplicated in the README.
  11. Copy any changes made here over to the README too. -->
  12. {% highlight bash %}
  13. bootstrap/
  14. ├── css/
  15. │ ├── bootstrap.css
  16. │ ├── bootstrap.min.css
  17. │ ├── bootstrap-theme.css
  18. │ └── bootstrap-theme.min.css
  19. ├── js/
  20. │ ├── bootstrap.js
  21. │ └── bootstrap.min.js
  22. └── fonts/
  23. ├── glyphicons-halflings-regular.eot
  24. ├── glyphicons-halflings-regular.svg
  25. ├── glyphicons-halflings-regular.ttf
  26. └── glyphicons-halflings-regular.woff
  27. {% endhighlight %}
  28. <p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). Fonts from Glyphicons are included, as is the optional Bootstrap theme.</p>
  29. <h2 id="whats-included-source">Bootstrap source code</h2>
  30. <p>The Bootstrap source code download includes the precompiled CSS, JavaScript, and font assets, along with source Less, JavaScript, and documentation. More specifically, it includes the following and more:</p>
  31. {% highlight bash %}
  32. bootstrap/
  33. ├── less/
  34. ├── js/
  35. ├── fonts/
  36. ├── dist/
  37. │ ├── css/
  38. │ ├── js/
  39. │ └── fonts/
  40. └── docs/
  41. └── examples/
  42. {% endhighlight %}
  43. <p>The <code>less/</code>, <code>js/</code>, and <code>fonts/</code> are the source code for our CSS, JS, and icon fonts (respectively). The <code>dist/</code> folder includes everything listed in the precompiled download section above. The <code>docs/</code> folder includes the source code for our documentation, and <code>examples/</code> of Bootstrap usage. Beyond that, any other included file provides support for packages, license information, and development.</p>
  44. </div>