
| Current Path : /var/www/html/12park/vendor/twbs/bootstrap/site/src/components/home/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park/vendor/twbs/bootstrap/site/src/components/home/GetStarted.astro |
---
import { getConfig } from '@libs/config'
import { getVersionedDocsPath } from '@libs/path'
import Code from '@shortcodes/Code.astro'
---
<div class="col-lg-7 mx-auto pb-3 mb-3 mb-md-5 text-md-center">
<div class="masthead-followup-icon d-inline-block mb-3" style="--bg-rgb: var(--bd-violet-rgb);">
<svg class="bi fs-1" aria-hidden="true"><use xlink:href="#code"></use></svg>
</div>
<h2 class="display-5 mb-3 fw-semibold lh-sm">Get started any way you want</h2>
<p class="lead fw-normal">
Jump right into building with Bootstrap—use the CDN, install it via package manager, or download the source code.
</p>
<p class="d-flex justify-content-md-center lead fw-normal">
<a href={getVersionedDocsPath('getting-started/download/')} class="icon-link icon-link-hover fw-semibold ps-md-4">
Read installation docs
<svg class="bi" aria-hidden="true"><use xlink:href="#arrow-right"></use></svg>
</a>
</p>
</div>
<section class="row g-3 g-md-5 mb-5 pb-5 justify-content-center">
<div class="col-lg-6 py-lg-4 pe-lg-5">
<svg class="bi mb-2 fs-2 text-body-secondary" aria-hidden="true"><use xlink:href="#box-seam"></use></svg>
<h3 class="fw-semibold">Install via package manager</h3>
<p class="pe-lg-5">
Install Bootstrap’s source Sass and JavaScript files via npm, RubyGems, Composer, or Meteor. Package-managed
installs don’t include documentation or our full build scripts. You can also <a
href="https://github.com/twbs/examples/">use any demo from our Examples repo</a
> to quickly jumpstart Bootstrap projects.
</p>
<Code code={`npm install bootstrap@${getConfig().current_version}`} lang="sh" />
<Code code={`gem install bootstrap -v ${getConfig().current_ruby_version}`} lang="sh" />
<p>
<a href={getVersionedDocsPath('getting-started/download')}>Read our installation docs</a> for more info and additional
package managers.
</p>
</div>
<div class="col-lg-6 py-lg-4 ps-lg-5 border-lg-start">
<svg class="bi mb-2 fs-2 text-body-secondary" aria-hidden="true"><use xlink:href="#globe2"></use></svg>
<h3 class="fw-semibold">Include via CDN</h3>
<p class="pe-lg-5">
When you only need to include Bootstrap’s compiled CSS or JS, you can use <a
href="https://www.jsdelivr.com/package/npm/bootstrap">jsDelivr</a
>. See it in action with our simple <a href={getVersionedDocsPath('getting-started/introduction/#quick-start')}
>quick start</a
>, or <a href={getVersionedDocsPath('examples')}>browse the examples</a> to jumpstart your next project. You can also
choose to include Popper and our JS <a href={getVersionedDocsPath('getting-started/introduction/#separate')}
>separately</a
>.
</p>
<Code
code={`<link href="${getConfig().cdn.css}" rel="stylesheet" integrity="${
getConfig().cdn.css_hash
}" crossorigin="anonymous">`}
lang="html"
/>
<Code
code={`<script src="${getConfig().cdn.js_bundle}" integrity="${
getConfig().cdn.js_bundle_hash
}" crossorigin="anonymous"></script>`}
lang="html"
/>
</div>
<div class="col-md-8 mx-auto text-center">
<h4 class="fw-semibold">Read our getting started guides</h4>
<p>Get a jump on including Bootstrap's source files in a new project with our official guides.</p>
<div class="d-flex flex-wrap align-items-center justify-content-center gap-4 mt-4">
<a
class="d-flex flex-column align-items-center text-decoration-none animate-img"
href={getVersionedDocsPath('getting-started/webpack/')}
>
<img
class="d-block mb-2"
src={getVersionedDocsPath('/assets/img/webpack.svg')}
alt=""
width="72"
height="72"
loading="lazy"
/>
<span class="text-body-secondary">Webpack</span>
</a>
<a
class="d-flex flex-column align-items-center text-decoration-none animate-img"
href={getVersionedDocsPath('getting-started/parcel/')}
>
<img
class="d-block mb-2"
src={getVersionedDocsPath('/assets/img/parcel.png')}
alt=""
width="72"
height="72"
loading="lazy"
/>
<span class="text-body-secondary">Parcel</span>
</a>
<a
class="d-flex flex-column align-items-center text-decoration-none animate-img"
href={getVersionedDocsPath('getting-started/vite/')}
>
<img
class="d-block mb-2"
src={getVersionedDocsPath('/assets/img/vite.svg')}
alt=""
width="72"
height="72"
loading="lazy"
/>
<span class="text-body-secondary">Vite</span>
</a>
</div>
</div>
</section>