]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update v5 homepage to match v4.5's changes
authorMark Otto <markdotto@gmail.com>
Sun, 31 May 2020 02:00:08 +0000 (05:00 +0300)
committerXhmikosR <xhmikosr@gmail.com>
Tue, 16 Jun 2020 18:19:32 +0000 (21:19 +0300)
19 files changed:
site/assets/scss/_buttons.scss
site/assets/scss/_content.scss
site/assets/scss/_masthead.scss
site/layouts/_default/single.html
site/layouts/partials/home/masthead-followup.html
site/layouts/partials/home/masthead.html
site/layouts/partials/icons/circle-square.svg [new file with mode: 0644]
site/layouts/partials/icons/cloud-fill.svg [new file with mode: 0644]
site/layouts/partials/icons/code.svg [new file with mode: 0644]
site/layouts/partials/icons/download.svg [deleted file]
site/layouts/partials/icons/droplet-fill.svg [new file with mode: 0644]
site/layouts/partials/icons/import.svg [deleted file]
site/layouts/partials/icons/lightning.svg [deleted file]
site/static/docs/5.0/assets/img/bootstrap-icons.png [new file with mode: 0644]
site/static/docs/5.0/assets/img/bootstrap-icons@2x.png [new file with mode: 0644]
site/static/docs/5.0/assets/img/bootstrap-themes-collage.png [new file with mode: 0644]
site/static/docs/5.0/assets/img/bootstrap-themes-collage@2x.png [new file with mode: 0644]
site/static/docs/5.0/assets/img/bootstrap-themes.png
site/static/docs/5.0/assets/img/bootstrap-themes@2x.png

index 0ed47855f8c788eef1814953f83e109e341ce375..6a2d703e63dafa60e42e86647cafb2c52f77dd36 100644 (file)
@@ -4,14 +4,15 @@
 
 .btn-bd-primary {
   font-weight: 600;
-  color: $bd-purple-bright;
+  color: $white;
+  background-color: $bd-purple-bright;
   border-color: $bd-purple-bright;
 
   &:hover,
   &:active {
     color: $white;
-    background-color: $bd-purple-bright;
-    border-color: $bd-purple-bright;
+    background-color: darken($bd-purple-bright, 10%);
+    border-color: darken($bd-purple-bright, 10%);
   }
 
   &:focus {
index f238fdf7273c6550e4c052338b14ced2d2a75e8b..a6c1639b06e9f1bc3b47f98c89efe60de84d6ab3 100644 (file)
@@ -68,3 +68,7 @@
 .bd-text-purple-bright {
   color: $bd-purple-bright;
 }
+
+.bd-bg-purple-bright {
+  background-color: $bd-purple-bright;
+}
index e524f271af27a866245dfee2e77c9ab1b77494b6..770815a5aa7033782acd203da5ca4ba261d7d366 100644 (file)
@@ -1,6 +1,10 @@
 .bd-masthead {
   padding: 3rem 0;
-  background-image: linear-gradient(45deg, #fafafa, #f5f5f5);
+  background: linear-gradient(165deg, lighten($bd-purple-light, 16%) 50%, $white 50%);
+
+  @include media-breakpoint-up(sm) {
+    padding: 5rem 0;
+  }
 
   h1 {
     @include font-size(4rem);
     padding: .8rem 2rem;
     font-weight: 600;
   }
-
-  @include media-breakpoint-up(sm) {
-    padding: 5rem 0;
+  .lead {
+    @include font-size(1.5rem);
+    font-weight: 400;
+    color: $gray-700;
   }
 }
 
-.lead-lg {
-  @include font-size(1.5rem);
-}
-
-.home-icon {
-  width: 6rem;
-  height: 6rem;
-  @include border-radius(25%);
-  box-shadow: 0 .25rem .5rem rgba(0, 0, 0, .15), inset 0 -1px 0 rgba(0, 0, 0, .15);
-}
-
-.home-icon-purple {
-  background-image: linear-gradient(180deg, $pink, $purple);
-}
-
-.home-icon-blue {
-  background-image: linear-gradient(180deg, $teal, $blue);
-}
-
-.home-icon-yellow {
-  background-image: linear-gradient(180deg, $yellow, $orange);
-}
-
 @include media-breakpoint-up(md) {
   .mw-md-75 { max-width: 75%; }
 }
 
-.half-rule {
-  width: 6rem;
-  margin: 2rem 0;
+.masthead-followup-icon {
+  padding: .75rem;
+  background-image: linear-gradient(to bottom right, rgba(255, 255, 255, .2), rgba(255, 255, 255, .01));
+  @include border-radius(.75rem);
+  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .1);
+}
+
+.masthead-followup-svg {
+  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, .125));
 }
index 0ce75ce282efe1200dc8efb1db7a0ed9271105d2..fd228314f4eed2c46d361dc5369e9235de726bd0 100644 (file)
         <h1 class="bd-title mt-0">{{ .Title | markdownify }}</h1>
         <p class="bd-lead">{{ .Page.Params.Description | markdownify }}</p>
         {{ if eq .Title "Examples" }}
-        <a href="{{ .Site.Params.download.source }}" class="btn btn-lg btn-bd-primary" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download');">Download source code</a>
-        <a href="{{ .Site.Params.download.dist_examples }}" class="btn btn-lg btn-bd-primary mt-3 mt-sm-0 ml-sm-3 ml-md-5" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download Examples');">Download Examples</a>
+        <div class="d-flex flex-column flex-sm-row">
+          <a href="{{ .Site.Params.download.dist_examples }}" class="btn btn-lg btn-bd-primary" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download Examples');">Download examples</a>
+          <a href="{{ .Site.Params.download.source }}" class="btn btn-lg btn-outline-secondary mt-3 mt-sm-0 ml-sm-3" onclick="ga('send', 'event', 'Examples', 'Hero', 'Download');">Download source code</a>
+        </div>
         {{ end }}
         {{ partial "ads" . }}
       </div>
     <main class="bd-content order-1 py-5" id="content">
       <div class="container">
         {{ .Content }}
+
+        {{ if eq .Title "Examples" }}
+          <hr class="my-5">
+          <div class="container">
+            <div class="text-center">
+              <div class="masthead-followup-icon d-inline-block mb-2 text-white bg-danger">
+                {{ partial "icons/droplet-fill.svg" (dict "width" "32" "height" "32") }}
+              </div>
+              <h2 class="display-6 font-weight-normal">Go further with Bootstrap Themes</h2>
+              <p class="col-md-10 col-lg-8 mx-auto lead">
+                Need something more than these examples? Take Bootstrap to the next level with premium themes from the <a href="{{ .Site.Params.themes }}">official Bootstrap Themes marketplace</a>. They’re built as their own extended frameworks, rich with new components and plugins, documentation, and powerful build tools.
+              </p>
+              <a href="{{ .Site.Params.themes }}" class="btn btn-lg btn-outline-primary mb-3">Browse themes</a>
+            </div>
+            <img class="d-block img-fluid mt-3 mx-auto" srcset="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes-collage.png,
+                                                                /docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes-collage@2x.png 2x"
+                                                           src="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes-collage.png"
+                                                           alt="Bootstrap Themes" width="1150" height="320" loading="lazy">
+          </div>
+        {{ end }}
       </div>
     </main>
 
index 13d42a282e73f780a40621fbf417267e830de3ed..61a2057c066b61122cfbb0245e950289f2450d65 100644 (file)
@@ -1,54 +1,87 @@
-{{ "<!-- Icons by Bytesize https://github.com/danklammer/bytesize-icons -->" | safeHTML }}
-
-<div class="container py-3 my-3 py-md-5 my-md-5 text-center">
-  <div class="home-icon home-icon-blue text-white p-4 mx-auto mb-3">
-    {{ partial "icons/import.svg" (dict "width" "48" "height" "48") }}
-  </div>
-  <h2 class="display-4">Installation</h2>
-  <p class="lead lead-lg mw-md-75 mx-auto">
-    Include Bootstrap’s source Sass and JavaScript files via npm, Composer, or Meteor. Package managed installs don’t include documentation, but do include our build system and readme.
-  </p>
-  <a class="btn btn-lg btn-outline-primary mb-4" href="/docs/{{ .Site.Params.docs_version }}/getting-started/download/">Read installation docs</a>
-  <div class="text-left mx-md-5 px-md-5">
-    {{ highlight "npm install bootstrap" "sh" "" }}
-    {{ highlight (printf ("gem install bootstrap -v %s") .Site.Params.current_ruby_version) "sh" "" }}
+<div class="container masthead-followup px-4 px-md-3">
+  <div class="row mb-5 pb-md-4 align-items-center">
+    <div class="col-md-5">
+      <div class="masthead-followup-icon d-inline-block mb-2 text-white bg-success">
+        {{ partial "icons/code.svg" (dict "width" "32" "height" "32") }}
+      </div>
+      <h2 class="display-5 font-weight-normal">Installation</h2>
+      <p class="lead font-weight-normal">
+        Install Bootstrap’s source Sass and JavaScript files via npm, Composer, or Meteor.
+      </p>
+      <p>Package managed installs don’t include documentation or our full build scripts. You can also <a href="https://github.com/twbs/bootstrap-npm-starter">use our npm template repo</a> to quickly generate a Bootstrap project via npm.</p>
+      <a class="btn btn-lg btn-outline-primary mb-3" href="/docs/{{ .Site.Params.docs_version }}/getting-started/download/">Read installation docs</a>
+    </div>
+    <div class="col-md-7 pl-md-5">
+      {{ highlight "npm install bootstrap" "sh" "" }}
+      {{ highlight (printf ("gem install bootstrap -v %s") .Site.Params.current_ruby_version) "sh" "" }}
+    </div>
   </div>
-</div>
 
-<div class="container py-3 my-3 py-md-5 my-md-5 text-center">
-  <div class="home-icon home-icon-purple text-white p-4 mx-auto mb-3">
-    {{ partial "icons/download.svg" (dict "width" "48" "height" "48") }}
-  </div>
-  <h2 class="display-4">BootstrapCDN</h2>
-  <p class="lead lead-lg mw-md-75 mx-auto">
-    Use the <a href="https://www.bootstrapcdn.com/">BootstrapCDN</a> to deliver fast, cached, and compiled versions of Bootstrap’s CSS and JavaScript. No jQuery is required, but don't forget to include Popper.js for some components.
-  </p>
-  <a class="btn btn-lg btn-outline-primary mb-4" href="/docs/{{ .Site.Params.docs_version }}/getting-started/introduction/">Explore the docs</a>
-  <div class="text-left mx-md-5 px-md-5">
-    <h3 class="h5">CSS only</h3>
-    {{ highlight (printf (`<link rel="stylesheet" href="%s" integrity=%q crossorigin="anonymous">`) .Site.Params.cdn.css (.Site.Params.cdn.css_hash | safeHTMLAttr)) "html" "" }}
-    <h3 class="h5">JS and Popper.js</h3>
-    {{ highlight (printf (`<script src="%s" integrity=%q crossorigin="anonymous"></script>
+  <div class="row mb-5 pb-md-4 align-items-center">
+    <div class="col-md-5">
+      <div class="masthead-followup-icon d-inline-block mb-2 text-white bg-primary">
+        {{ partial "icons/cloud-fill.svg" (dict "width" "32" "height" "32") }}
+      </div>
+      <h2 class="display-5 font-weight-normal">BootstrapCDN</h2>
+      <p class="lead font-weight-normal">
+        When you only need to include Bootstrap’s compiled CSS or JS, you can use <a href="https://www.bootstrapcdn.com/">BootstrapCDN</a>.
+      </p>
+      <p>
+        See it in action with our simple <a href="/docs/{{ .Site.Params.docs_version }}/getting-started/introduction/#starter-template">starter template</a>, or <a href="/docs/{{ .Site.Params.docs_version }}/examples/">browse the examples</a> to jumpstart your next project.
+      </p>
+      <a class="btn btn-lg btn-outline-primary mb-3" href="/docs/{{ .Site.Params.docs_version }}/getting-started/introduction/">Explore the docs</a>
+    </div>
+    <div class="col-md-7 pl-md-5">
+      {{ highlight (printf (`<!-- CSS only -->
+<link rel="stylesheet" href="%s" integrity=%q crossorigin="anonymous">`) .Site.Params.cdn.css (.Site.Params.cdn.css_hash | safeHTMLAttr)) "html" "" }}
+      {{ highlight (printf (`<!-- JavaScript and dependencies -->
 <script src="%s" integrity=%q crossorigin="anonymous"></script>
-`) .Site.Params.cdn.popper (.Site.Params.cdn.popper_hash | safeHTMLAttr) .Site.Params.cdn.js (.Site.Params.cdn.js_hash | safeHTMLAttr)) "html" "" }}
+  <script src="%s" integrity=%q crossorigin="anonymous"></script>
+  `) .Site.Params.cdn.popper (.Site.Params.cdn.popper_hash | safeHTMLAttr) .Site.Params.cdn.js (.Site.Params.cdn.js_hash | safeHTMLAttr)) "html" "" }}
+    </div>
   </div>
-</div>
 
-<div class="container py-3 my-3 py-md-5 my-md-5 text-center">
-  <div class="home-icon home-icon-yellow text-white p-4 mx-auto mb-3">
-    {{ partial "icons/lightning.svg" (dict "width" "48" "height" "48") }}
+  <div class="row mb-5 pb-md-4 align-items-center">
+    <div class="col-md-5">
+      <div class="masthead-followup-icon d-inline-block mb-2 text-white bd-bg-purple-bright">
+        {{ partial "icons/circle-square.svg" (dict "width" "32" "height" "32") }}
+      </div>
+      <h2 class="display-5 font-weight-normal">Bootstrap Icons</h2>
+      <p class="lead font-weight-normal">
+        For the first time ever, Bootstrap has its own open source SVG icon library, designed to work best with our components and documentation.
+      </p>
+      <p>
+        Bootstrap Icons are designed to work best with Bootstrap components, but they’ll work in any project. They’re SVGs, so they scale quickly and easily, can be implemented in several ways, and can be styled with CSS.
+      </p>
+      <a href="{{ .Site.Params.icons }}" class="btn btn-lg btn-outline-primary mb-3">Get Bootstrap Icons</a>
+    </div>
+    <div class="col-md-7 pl-md-5">
+        <img class="img-fluid mt-3 mx-auto" srcset="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-icons.png,
+                                                    /docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-icons@2x.png 2x"
+                                               src="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-icons.png"
+                                               alt="Bootstrap Icons" width="966" height="600" loading="lazy">
+    </div>
   </div>
-  <h2 class="display-4">Official Themes</h2>
-  <p class="lead lead-lg mw-md-75 mx-auto">
-    Take Bootstrap 4 to the next level with official premium themes—toolkits built on Bootstrap with new components and plugins, docs, and build tools.
-  </p>
-  <a class="btn btn-lg btn-outline-primary mb-4" href="{{ .Site.Params.themes }}">Browse themes</a>
-  <div class="mx-5 border-bottom">
-    <img class="img-fluid mt-3 mx-auto" srcset="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes.png,
-                                                /docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes@2x.png 2x"
-                                        src="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes.png"
-                                        alt="Bootstrap Themes"
-                                        width="500" height="200"
-                                        loading="lazy">
+
+  <div class="row mb-5 pb-md-4 align-items-center">
+    <div class="col-md-5">
+      <div class="masthead-followup-icon d-inline-block mb-2 text-white bg-danger">
+        {{ partial "icons/droplet-fill.svg" (dict "width" "32" "height" "32") }}
+      </div>
+      <h2 class="display-5 font-weight-normal">Official Themes</h2>
+      <p class="lead font-weight-normal">
+        Take Bootstrap to the next level with premium themes from the <a href="{{ .Site.Params.themes }}">official Bootstrap Themes marketplace</a>.
+      </p>
+      <p>
+        Themes are built on Bootstrap as their own extended frameworks, rich with new components and plugins, documentation, and powerful build tools.
+      </p>
+      <a href="{{ .Site.Params.themes }}" class="btn btn-lg btn-outline-primary mb-3">Browse themes</a>
+    </div>
+    <div class="col-md-7 pl-md-5">
+        <img class="img-fluid mt-3 mx-auto" srcset="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes.png,
+                                                    /docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes@2x.png 2x"
+                                               src="/docs/{{ .Site.Params.docs_version }}/assets/img/bootstrap-themes.png"
+                                               alt="Bootstrap Icons" width="700" height="500" loading="lazy">
+    </div>
   </div>
 </div>
index 45a8c1120e5e915915eafc4528d5b5d7d5132b91..599d493e38335c73ffe40d788e59a360ebd075c8 100644 (file)
@@ -1,23 +1,19 @@
-<main class="bd-masthead mb-3 mb-md-5 border-bottom" id="content">
-  <div class="container">
+<main class="bd-masthead mb-3 mb-md-5" id="content">
+  <div class="container px-4 px-md-3">
     <div class="row">
       <div class="col-6 mx-auto col-md-4 order-md-2 col-lg-5">
         {{ partial "icons/bootstrap-stack.svg" (dict "class" "img-fluid mb-3 mb-md-0" "width" "512" "height" "430") }}
       </div>
-      <div class="col-md-8 order-md-1 col-lg-6 text-center text-md-left">
-        <h1 class="mb-3 bd-text-purple-bright">Bootstrap</h1>
-        <p class="lead lead-lg">
-          Build responsive, mobile-first projects for the web with the world’s most popular open source front-end component library.
-        </p>
-        <p class="mb-4">
-          Quickly prototype your ideas, spin up internal tools, or build your entire production app or site with powerful features and customization like Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.
+      <div class="col-md-8 order-md-1 col-lg-7 text-center text-md-left">
+        <h1 class="mb-3">Build fast, responsive sites with Bootstrap</h1>
+        <p class="lead mb-4">
+          Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.
         </p>
 
         <div class="d-flex flex-column flex-md-row">
-          <a href="/docs/{{ .Site.Params.docs_version }}/getting-started/introduction/" class="btn btn-lg btn-bd-primary w-100 mb-3 mr-md-3" onclick="ga('send', 'event', 'Jumbotron actions', 'Get started', 'Get started');">Get started</a>
-          <a href="/docs/{{ .Site.Params.docs_version }}/getting-started/download/" class="btn btn-lg btn-outline-secondary w-100 mb-3" onclick="ga('send', 'event', 'Jumbotron actions', 'Download', 'Download {{ .Site.Params.current_version }}');">Download</a>
+          <a href="/docs/{{ .Site.Params.docs_version }}/getting-started/introduction/" class="btn btn-lg btn-bd-primary mb-3 mr-md-3" onclick="ga('send', 'event', 'Jumbotron actions', 'Get started', 'Get started');">Get started</a>
+          <a href="/docs/{{ .Site.Params.docs_version }}/getting-started/download/" class="btn btn-lg btn-outline-secondary mb-3" onclick="ga('send', 'event', 'Jumbotron actions', 'Download', 'Download {{ .Site.Params.current_version }}');">Download</a>
         </div>
-        <hr class="half-rule">
         <p class="text-muted mb-0">
           Currently <strong>v{{ .Site.Params.current_version }}</strong>
           <span class="px-1">&middot;</span>
diff --git a/site/layouts/partials/icons/circle-square.svg b/site/layouts/partials/icons/circle-square.svg
new file mode 100644 (file)
index 0000000..2293c5f
--- /dev/null
@@ -0,0 +1,4 @@
+<svg{{ with .width }} width="{{ . }}"{{ end }}{{ with .height }} height="{{ . }}"{{ end }}{{ with .class }} class="{{ . }}"{{ end }}  focusable="false" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
+  <path d="M0 6a6 6 0 1112 0A6 6 0 010 6z"/>
+  <path d="M12.93 5h1.57a.5.5 0 01.5.5v9a.5.5 0 01-.5.5h-9a.5.5 0 01-.5-.5v-1.57a6.953 6.953 0 01-1-.22v1.79A1.5 1.5 0 005.5 16h9a1.5 1.5 0 001.5-1.5v-9A1.5 1.5 0 0014.5 4h-1.79c.097.324.17.658.22 1z"/>
+</svg>
diff --git a/site/layouts/partials/icons/cloud-fill.svg b/site/layouts/partials/icons/cloud-fill.svg
new file mode 100644 (file)
index 0000000..1a051b8
--- /dev/null
@@ -0,0 +1,3 @@
+<svg{{ with .width }} width="{{ . }}"{{ end }}{{ with .height }} height="{{ . }}"{{ end }}{{ with .class }} class="{{ . }}"{{ end }}  focusable="false" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
+  <path fill-rule="evenodd" d="M3.5 13a3.5 3.5 0 11.59-6.95 5.002 5.002 0 119.804 1.98A2.5 2.5 0 0113.5 13h-10z" clip-rule="evenodd"/>
+</svg>
diff --git a/site/layouts/partials/icons/code.svg b/site/layouts/partials/icons/code.svg
new file mode 100644 (file)
index 0000000..3494182
--- /dev/null
@@ -0,0 +1,3 @@
+<svg{{ with .width }} width="{{ . }}"{{ end }}{{ with .height }} height="{{ . }}"{{ end }}{{ with .class }} class="{{ . }}"{{ end }}  focusable="false" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
+  <path fill-rule="evenodd" d="M5.854 4.146a.5.5 0 010 .708L2.707 8l3.147 3.146a.5.5 0 01-.708.708l-3.5-3.5a.5.5 0 010-.708l3.5-3.5a.5.5 0 01.708 0zm4.292 0a.5.5 0 000 .708L13.293 8l-3.147 3.146a.5.5 0 00.708.708l3.5-3.5a.5.5 0 000-.708l-3.5-3.5a.5.5 0 00-.708 0z" clip-rule="evenodd"/>
+</svg>
diff --git a/site/layouts/partials/icons/download.svg b/site/layouts/partials/icons/download.svg
deleted file mode 100644 (file)
index b00ebab..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg"{{ with .width }} width="{{ . }}"{{ end }}{{ with .height }} height="{{ . }}"{{ end }} fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" aria-hidden="true"{{ with .class }} class="{{ . }}"{{ end }} viewBox="0 0 32 32"><title>{{ with .title }}{{ . }}{{ else }}Download{{ end }}</title><path d="M9 22c-9 1-8-10 0-9C6 2 23 2 22 10c10-3 10 13 1 12m-12 4l5 4 5-4m-5-10v14"/></svg>
\ No newline at end of file
diff --git a/site/layouts/partials/icons/droplet-fill.svg b/site/layouts/partials/icons/droplet-fill.svg
new file mode 100644 (file)
index 0000000..fd9ba07
--- /dev/null
@@ -0,0 +1,3 @@
+<svg{{ with .width }} width="{{ . }}"{{ end }}{{ with .height }} height="{{ . }}"{{ end }}{{ with .class }} class="{{ . }}"{{ end }}  focusable="false" viewBox="0 0 16 16" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
+  <path fill-rule="evenodd" d="M8 16a6 6 0 006-6c0-1.655-1.122-2.904-2.432-4.362C10.254 4.176 8.75 2.503 8 0c0 0-6 5.686-6 10a6 6 0 006 6zM6.646 4.646c-.376.377-1.272 1.489-2.093 3.13l.894.448c.78-1.559 1.616-2.58 1.907-2.87l-.708-.708z" clip-rule="evenodd"/>
+</svg>
diff --git a/site/layouts/partials/icons/import.svg b/site/layouts/partials/icons/import.svg
deleted file mode 100644 (file)
index deaeb09..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg"{{ with .width }} width="{{ . }}"{{ end }}{{ with .height }} height="{{ . }}"{{ end }} fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" aria-hidden="true"{{ with .class }} class="{{ . }}"{{ end }} viewBox="0 0 32 32"><title>{{ with .title }}{{ . }}{{ else }}Import{{ end }}</title><path d="M28 22v8H4v-8M16 4v20m-8-8l8 8 8-8"/></svg>
\ No newline at end of file
diff --git a/site/layouts/partials/icons/lightning.svg b/site/layouts/partials/icons/lightning.svg
deleted file mode 100644 (file)
index 02ae006..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg"{{ with .width }} width="{{ . }}"{{ end }}{{ with .height }} height="{{ . }}"{{ end }} fill="none" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" aria-hidden="true"{{ with .class }} class="{{ . }}"{{ end }} viewBox="0 0 32 32"><title>{{ with .title }}{{ . }}{{ else }}Lightning{{ end }}</title><path d="M18 13l8-11L8 13l6 6-8 11 18-11z"/></svg>
\ No newline at end of file
diff --git a/site/static/docs/5.0/assets/img/bootstrap-icons.png b/site/static/docs/5.0/assets/img/bootstrap-icons.png
new file mode 100644 (file)
index 0000000..73f45ee
Binary files /dev/null and b/site/static/docs/5.0/assets/img/bootstrap-icons.png differ
diff --git a/site/static/docs/5.0/assets/img/bootstrap-icons@2x.png b/site/static/docs/5.0/assets/img/bootstrap-icons@2x.png
new file mode 100644 (file)
index 0000000..48f0472
Binary files /dev/null and b/site/static/docs/5.0/assets/img/bootstrap-icons@2x.png differ
diff --git a/site/static/docs/5.0/assets/img/bootstrap-themes-collage.png b/site/static/docs/5.0/assets/img/bootstrap-themes-collage.png
new file mode 100644 (file)
index 0000000..0a3bf5d
Binary files /dev/null and b/site/static/docs/5.0/assets/img/bootstrap-themes-collage.png differ
diff --git a/site/static/docs/5.0/assets/img/bootstrap-themes-collage@2x.png b/site/static/docs/5.0/assets/img/bootstrap-themes-collage@2x.png
new file mode 100644 (file)
index 0000000..ad165eb
Binary files /dev/null and b/site/static/docs/5.0/assets/img/bootstrap-themes-collage@2x.png differ
index d1e1fc26789746a970b33e72aee667e056e8d017..d43dba2a7d859bfab72ba0fa4ed38ae41e26c892 100644 (file)
Binary files a/site/static/docs/5.0/assets/img/bootstrap-themes.png and b/site/static/docs/5.0/assets/img/bootstrap-themes.png differ
index 3876a18ee3357754d5439d80abe25c7d30f7a02d..13c32337d6e18b84ff6a2dc191e022463a3e130b 100644 (file)
Binary files a/site/static/docs/5.0/assets/img/bootstrap-themes@2x.png and b/site/static/docs/5.0/assets/img/bootstrap-themes@2x.png differ