mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
39 lines
1006 B
HTML
39 lines
1006 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Meta, title, CSS, favicons, etc. -->
|
|
{% include header.html %}
|
|
</head>
|
|
<body class="bs-docs">
|
|
<a class="sr-only sr-only-focusable" href="#content">Skip to main content</a>
|
|
|
|
{% include nav/docs.html %}
|
|
|
|
<div class="bs-docs-header" id="content">
|
|
<div class="bs-docs-container">
|
|
{% if page.url contains "getting-started" %}
|
|
<h1>Getting started</h1>
|
|
<p class="lead">Learn how to quickly start a new project with Bootstrap with downloads, basic templates and examples, and more.</p>
|
|
{% endif %}
|
|
|
|
{% include ads.html %}
|
|
</div>
|
|
</div>
|
|
|
|
<!--
|
|
<div class="bs-docs-header" id="content">
|
|
<div class="bs-docs-container">
|
|
<h1>{{ page.title }}</h1>
|
|
<p>{{ page.lead }}</p>
|
|
{% include ads.html %}
|
|
</div>
|
|
</div>
|
|
-->
|
|
<div class="bs-docs-container bs-docs-content">
|
|
{{ content }}
|
|
</div>
|
|
|
|
{% include footer.html %}
|
|
</body>
|
|
</html>
|