mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-17 09:52:29 +01:00
v4: Social meta tags (#20825)
* descriptions for getting started pages * descriptions for layout * add content page descriptions * more descriptions, updates to some existing ones * correct site url * add social stuff to config for twitter cards * add twitter meta tags; use large image for homepage and regular card for all others * add the assets * more site config * more social shiz to partial, remove existing meta for the partial, remove page title from homepage for simpler if statements
This commit is contained in:
parent
bb4af05d22
commit
7bf868a709
10
_config.yml
10
_config.yml
@ -14,7 +14,7 @@ destination: _gh_pages
|
|||||||
host: 0.0.0.0
|
host: 0.0.0.0
|
||||||
port: 9001
|
port: 9001
|
||||||
baseurl: ""
|
baseurl: ""
|
||||||
url: http://getbootstrap.com
|
url: http://v4-alpha.getbootstrap.com
|
||||||
encoding: UTF-8
|
encoding: UTF-8
|
||||||
exclude: [assets/scss/]
|
exclude: [assets/scss/]
|
||||||
|
|
||||||
@ -22,6 +22,14 @@ gems:
|
|||||||
- jekyll-redirect-from
|
- jekyll-redirect-from
|
||||||
- jekyll-sitemap
|
- jekyll-sitemap
|
||||||
|
|
||||||
|
# Social
|
||||||
|
title: Bootstrap
|
||||||
|
description: The most popular HTML, CSS, and JS framework in the world.
|
||||||
|
twitter: getbootstrap
|
||||||
|
authors: Mark Otto, Jacob Thornton, and Bootstrap contributors
|
||||||
|
social_logo_path: /assets/brand/bootstrap-social-logo.png
|
||||||
|
social_image_path: /assets/brand/bootstrap-social.png
|
||||||
|
|
||||||
# Custom vars
|
# Custom vars
|
||||||
current_version: 4.0.0-alpha.4
|
current_version: 4.0.0-alpha.4
|
||||||
repo: https://github.com/twbs/bootstrap
|
repo: https://github.com/twbs/bootstrap
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||||
<meta name="description" content="Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.">
|
|
||||||
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
|
|
||||||
|
|
||||||
<title>
|
<title>
|
||||||
{% if page.layout == "home" %}
|
{% if page.title %}
|
||||||
{{ page.title }}
|
{{ page.title }} · {{ site.title }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ page.title }} · Bootstrap
|
{{ site.title }} · {{ site.description }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</title>
|
</title>
|
||||||
|
|
||||||
|
{% include social.html %}
|
||||||
|
|
||||||
<!-- Bootstrap core CSS -->
|
<!-- Bootstrap core CSS -->
|
||||||
{% if site.github %}
|
{% if site.github %}
|
||||||
<link href="{{ site.baseurl }}/dist/css/bootstrap.min.css" rel="stylesheet">
|
<link href="{{ site.baseurl }}/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
|
31
docs/_includes/social.html
Normal file
31
docs/_includes/social.html
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<!-- Twitter -->
|
||||||
|
<meta name="twitter:site" content="@{{ site.twitter }}">
|
||||||
|
<meta name="twitter:creator" content="@{{ site.twitter }}">
|
||||||
|
|
||||||
|
{% if page.title %}
|
||||||
|
<meta name="twitter:card" content="summary">
|
||||||
|
<meta name="twitter:title" content="{{ page.title }}">
|
||||||
|
<meta name="twitter:description" content="{{ page.description }}">
|
||||||
|
<meta name="twitter:image" content="{{ site.url }}{{ site.social_logo_path }}">
|
||||||
|
{% else %}
|
||||||
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:title" content="{{ site.title }}">
|
||||||
|
<meta name="twitter:description" content="{{ site.description }}">
|
||||||
|
<meta name="twitter:image" content="{{ site.url }}{{ site.social_image_path }}">
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
<!-- Facebook -->
|
||||||
|
{% if page.title %}
|
||||||
|
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
|
||||||
|
<meta property="og:title" content="{{ page.title }}">
|
||||||
|
<meta property="og:description" content="{{ page.description }}">
|
||||||
|
{% else %}
|
||||||
|
<meta property="og:url" content="{{ site.url }}">
|
||||||
|
<meta property="og:title" content="{{ site.title }}">
|
||||||
|
<meta property="og:description" content="{{ site.description }}">
|
||||||
|
{% endif %}
|
||||||
|
<meta property="og:image" content="{{ site.url }}{{ site.social_image_path }}">
|
||||||
|
|
||||||
|
<!-- Meta -->
|
||||||
|
<meta name="description" content="{{ site.description }}">
|
||||||
|
<meta name="author" content="{{ site.authors }}">
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Brand guidelines
|
title: Brand guidelines
|
||||||
|
description: Documentation and examples for Bootstrap's logo and brand usage guidelines.
|
||||||
group: about
|
group: about
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: History
|
title: History
|
||||||
|
description: A brief overview of the history of Bootstrap.
|
||||||
group: about
|
group: about
|
||||||
redirect_from: "/about/"
|
redirect_from: "/about/"
|
||||||
---
|
---
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: License FAQs
|
title: License FAQs
|
||||||
|
description: Commonly asked questions about Bootstrap's open source license.
|
||||||
group: about
|
group: about
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Team
|
title: Team
|
||||||
|
description: An overview of the founding team and core contributors to Bootstrap.
|
||||||
group: about
|
group: about
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Translations
|
title: Translations
|
||||||
|
description: Links to community-translated Bootstrap documentation sites.
|
||||||
group: about
|
group: about
|
||||||
---
|
---
|
||||||
|
|
||||||
|
BIN
docs/assets/brand/bootstrap-social-logo.png
Normal file
BIN
docs/assets/brand/bootstrap-social-logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 45 KiB |
BIN
docs/assets/brand/bootstrap-social.png
Normal file
BIN
docs/assets/brand/bootstrap-social.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 330 KiB |
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Alerts
|
title: Alerts
|
||||||
|
description: Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Breadcrumb
|
title: Breadcrumb
|
||||||
|
description: Indicate the current page's location within a navigational hierarchy.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Button group
|
title: Button group
|
||||||
|
description: Group a series of buttons together on a single line with the button group, and super-power them with JavaScript.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Buttons
|
title: Buttons
|
||||||
|
description: Use Bootstrap's custom button styles for actions in forms, dialogs, and more with support for multiple sizes, states, and more.
|
||||||
group: components
|
group: components
|
||||||
redirect_from: "/components/"
|
redirect_from: "/components/"
|
||||||
---
|
---
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Cards
|
title: Cards
|
||||||
|
description: Bootstrap Cards provide a flexible and extensible content container with multiple variants and options.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Carousel
|
title: Carousel
|
||||||
|
description: A slideshow component for cycling through elements—images or slides of text—like a carousel.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Collapse
|
title: Collapse
|
||||||
|
description: Toggle the visibility of content across your project with a few classes and our JavaScript plugins.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Dropdowns
|
title: Dropdowns
|
||||||
|
description: Toggle contextual overlays for displaying lists of links and more with the Bootstrap dropdown plugin.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Forms
|
title: Forms
|
||||||
|
description: Examples and usage guidelines for from controls, form layouts, and custom forms.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Input group
|
title: Input group
|
||||||
|
description: Extend form controls with the input group.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Jumbotron
|
title: Jumbotron
|
||||||
|
description: Lightweight, flexible component for showcasing hero unit style content.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: List group
|
title: List group
|
||||||
|
description: Learn about Bootstrap's list group component for rendering series of related content.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Modal
|
title: Modal
|
||||||
|
description: Learn how to use Bootstrap's modals to add dialog prompts to your site.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Navbar
|
title: Navbar
|
||||||
|
description: Documentation and examples for Bootstrap's powerful, responsive navigation header.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Navs
|
title: Navs
|
||||||
|
description: Documentation and examples for how to use Bootstrap's included navigation components.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Pagination
|
title: Pagination
|
||||||
|
description: Documentation and examples for showing pagination links.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Popovers
|
title: Popovers
|
||||||
|
description: Documentation and examples for adding Bootstrap popovers to your site.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Progress
|
title: Progress
|
||||||
|
description: Documentation and examples for using Bootstrap progress bars.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Scrollspy
|
title: Scrollspy
|
||||||
|
description: Documentation and examples for the scrollspy plugin with Bootstrap's navigation components.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Tags
|
title: Tags
|
||||||
|
description: Documentation and examples for tags, our small label-badge component.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Tooltips
|
title: Tooltips
|
||||||
|
description: Documentation and examples for adding custom Bootstrap tooltips with CSS and JavaScript.
|
||||||
group: components
|
group: components
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Code
|
title: Code
|
||||||
|
description: Documentation and examples for displaying inline and multiline blocks of code with Bootstrap.
|
||||||
group: content
|
group: content
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Figures
|
title: Figures
|
||||||
|
description: Documentation and examples for displaying related images and text with the figure component in Bootstrap.
|
||||||
group: content
|
group: content
|
||||||
---
|
---
|
||||||
|
|
||||||
Anytime you need to display a piece of content—like an image—with an optional caption, consider using a `<figure>`.
|
Anytime you need to display a piece of content—like an image with an optional caption, consider using a `<figure>`.
|
||||||
|
|
||||||
Use the included `.figure` , `.figure-img` and `.figure-caption` classes to provide some baseline styles for the HTML5 `<figure>` and `<figcaption>` elements. Images in figures have no explicit size, so be sure to add the `.img-fluid` class to your `<img>` to make it responsive.
|
Use the included `.figure` , `.figure-img` and `.figure-caption` classes to provide some baseline styles for the HTML5 `<figure>` and `<figcaption>` elements. Images in figures have no explicit size, so be sure to add the `.img-fluid` class to your `<img>` to make it responsive.
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Images
|
title: Images
|
||||||
|
description: Documentation and examples for styling images with Bootstrap.
|
||||||
group: content
|
group: content
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Reboot
|
title: Reboot
|
||||||
|
description: Documentation and examples for Reboot, Bootstrap's collection of element-specific CSS that builds on Normalize.css.
|
||||||
group: content
|
group: content
|
||||||
redirect_from: "/content/"
|
redirect_from: "/content/"
|
||||||
---
|
---
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Tables
|
title: Tables
|
||||||
|
description: Documentation and examples for styling tables with Bootstrap.
|
||||||
group: content
|
group: content
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Typography
|
title: Typography
|
||||||
|
description: Documentation and examples for Bootstrap typography, including global settings, body text, lists, and more.
|
||||||
group: content
|
group: content
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Accessibility
|
title: Accessibility
|
||||||
|
description: Learn how Bootstrap supports common web standards for making sites that are accessibile to those using assistive technology.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Best practices
|
title: Best practices
|
||||||
|
description: Learn about some of the best practices we've gathered from years of working on and using Bootstrap.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Browsers and devices
|
title: Browsers and devices
|
||||||
|
description: Learn which browsers and devices are supported by Bootstrap.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Build tools
|
title: Build tools
|
||||||
|
description: Details on how to use Bootstrap's included build tools to compile source code, run tests, and more.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Contents
|
title: Contents
|
||||||
|
description: Learn about what's included in Bootstrap's precompiled and source code directories.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Download
|
title: Download
|
||||||
|
description: Download Bootstrap's compiled CSS and JavaScript, source code, or include it with your favorite package manager.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Flexbox
|
title: Flexbox
|
||||||
|
description: Learn how to enable flexbox support in Bootstrap 4 with the flick of a variable or the swap of a stylesheet.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Introduction
|
title: Introduction
|
||||||
|
description: Get started with Bootstrap using the Bootstrap CDN and a template starter page.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
redirect_from: "/getting-started/"
|
redirect_from: "/getting-started/"
|
||||||
---
|
---
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: JavaScript
|
title: JavaScript
|
||||||
|
description: Learn about Bootstrap's JavaScript—how to include it, our data and programmatic API options, and more.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Customization options
|
title: Customization options
|
||||||
|
description: Customize Bootstrap with Sass variables, easily toggling global preferences with a quick recompile.
|
||||||
group: getting-started
|
group: getting-started
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
---
|
---
|
||||||
layout: home
|
layout: home
|
||||||
title: Bootstrap · The world's most popular mobile-first and responsive front-end framework.
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<main class="bd-masthead" id="content">
|
<main class="bd-masthead" id="content">
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Flexbox grid system
|
title: Flexbox grid system
|
||||||
|
description: Documentation and examples for using Bootstrap's optional flexbox grid system.
|
||||||
group: layout
|
group: layout
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Grid system
|
title: Grid system
|
||||||
|
description: Documentation and examples for using Bootstrap's powerful, responsive, and mobile-first grid system.
|
||||||
group: layout
|
group: layout
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Media object
|
title: Media object
|
||||||
|
description: Documentation and examples for Bootstrap's media object to construct highly repetitive components like blog comments, tweets, and the like.
|
||||||
group: layout
|
group: layout
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Overview
|
title: Overview
|
||||||
|
description: Components and options for laying out your Bootstrap project, including wrapping containers, a powerful grid system, a flexible media object, and responsive utility classes.
|
||||||
group: layout
|
group: layout
|
||||||
redirect_from: "/layout/"
|
redirect_from: "/layout/"
|
||||||
---
|
---
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
layout: docs
|
layout: docs
|
||||||
title: Responsive utilities
|
title: Responsive utilities
|
||||||
|
description: Use responsive display utility classes for showing and hiding content by device, via media query.
|
||||||
group: layout
|
group: layout
|
||||||
---
|
---
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user