| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- ---
- layout: home
- redirect_from:
- - "/zh-cn/"
- - "/es/"
- - "/home/"
- - "/zh-cn/home/"
- - "/es/home/"
- ---
- <main class="bd-masthead" id="content" role="main">
- <div class="container">
- <div class="row align-items-center">
- <div class="col-4 mx-auto col-md-3 order-md-2">
- <img class="img-fluid mb-3 mb-md-0" src="favicon.png">
- </div>
- <div class="col-md-6 order-md-1 text-center text-md-left pr-md-5">
- <h1 class="mb-3 bd-text-purple-bright">
- {{ site.title }}
- </h1>
- <p class="lead">
- {{ site.description }}
- </p>
- <div class="row mx-n2">
- <div class="col-md px-2">
- <a href="{{ site.baseurl }}/docs/getting-started/introduction/"
- class="btn btn-lg btn-bd-primary w-100 mb-3">
- Getting Started
- </a>
- </div>
- <div class="col-md px-2">
- <a href="{{ site.baseurl }}/docs/getting-started/download/"
- class="btn btn-lg btn-outline-secondary w-100 mb-3">
- Download
- </a>
- </div>
- </div>
- <p class="text-muted">
- Currently{{ site.current_version }}
- </p>
- {% include ads.html %}
- </div>
- </div>
- </div>
- </main>
- <div class="masthead-followup row m-0 border border-white">
- <div class="col-12 col-md-4 p-3 p-md-5 bg-light border border-white">
- <!-- Icon by Bytesize https://github.com/danklammer/bytesize-icons -->
- <h3>{% include icons/import.svg width="32" height="32" class="text-primary mb-2" %}Installation</h3>
- <p>Include Bootstrap Table source CSS and JavaScript files via npm or yarn.</p>
- {% highlight javascript %}
- npm install bootstrap-table
- yarn add bootstrap-table
- {% endhighlight %}
- <hr class="half-rule">
- <a class="btn btn-outline-primary"
- href="{{ site.baseurl }}/docs/getting-started/download/">
- Read installation docs
- </a>
- </div>
- <div class="col-12 col-md-4 p-3 p-md-5 bg-light border border-white">
- <!-- Icon by Bytesize https://github.com/danklammer/bytesize-icons -->
- <h3>{% include icons/download.svg width="32" height="32" class="text-primary mb-2" %}CDN</h3>
- <p>When you only need to include Bootstrap Table’s compiled CSS or JS, use <a href="https://cdn.jsdelivr.net/npm/bootstrap-table@{{ site.current_version }}/dist/">UNPKG</a>.</p>
- {% highlight html %}
- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-table@{{ site.current_version }}/dist/bootstrap-table.min.css">
- <script src="https://cdn.jsdelivr.net/npm/bootstrap-table@{{ site.current_version }}/dist/bootstrap-table.min.js"></script>
- {% endhighlight %}
- <hr class="half-rule">
- <a href="{{ site.baseurl }}/docs/api" class="btn btn-outline-primary">
- Explore the docs
- </a>
- </div>
- <div class="col-12 col-md-4 p-3 p-md-5 bg-light border border-white">
- <!-- Icon by Bytesize https://github.com/danklammer/bytesize-icons -->
- <h3>{% include icons/lightning.svg width="32" height="32" class="text-primary mb-2" %}Examples</h3>
- <p>
- The examples of bootstrap table.
- </p>
- <hr class="half-rule">
- <a href="https://examples.bootstrap-table.com" class="btn btn-outline-primary">
- Browse Examples
- </a>
- </div>
- {% include supports.html %}
- {% include subscribe.html %}
- </div>
|