├── assets ├── css │ └── styleguide │ │ ├── static.css │ │ ├── prism.css │ │ └── static.scss ├── icons │ ├── icons.eot │ ├── icons.ttf │ ├── icons.woff │ └── styleguide │ │ ├── icons.eot │ │ ├── icons.ttf │ │ ├── icons.woff │ │ ├── icons.svg │ │ └── icons.dev.svg ├── images │ ├── logo.png │ ├── fpo_4x3.png │ ├── fpo_16x9.png │ ├── fpo_avatar.png │ ├── fpo_square.png │ ├── ajax-loader.gif │ ├── favicon_16x16.jpg │ ├── favicon_32x32.jpg │ └── sample │ │ ├── tout-4x3-stream.jpg │ │ ├── thumb-square-fire.jpg │ │ ├── thumb-square-gear.jpg │ │ ├── thumb-square-ivy.jpg │ │ ├── thumb-square-river.jpg │ │ ├── tout-4x3-climber.jpg │ │ ├── tout-4x3-climbers.jpg │ │ ├── thumb-square-yosemite.jpg │ │ └── landscape-16x9-mountains.jpg └── js │ ├── init.js │ ├── styleguide │ ├── postmessage.js │ ├── code-pattern.js │ ├── prism.js │ ├── data-saver.js │ ├── annotations-viewer.js │ ├── code-viewer.js │ ├── url-handler.js │ └── annotations-pattern.js │ ├── fitvids.js │ ├── synclisteners.js │ ├── modernizr.js │ └── annotations.js ├── patterns ├── atoms │ ├── text │ │ ├── hr.hbs │ │ ├── paragraph.hbs │ │ ├── time.hbs │ │ ├── caption.hbs │ │ ├── headings.hbs │ │ ├── emphasis-colors.hbs │ │ ├── preformatted-text.hbs │ │ ├── headings-with-links.hbs │ │ ├── subheadings.hbs │ │ ├── blockquote.hbs │ │ └── inline-elements.hbs │ ├── images │ │ ├── avatar.hbs │ │ ├── loading-icon.hbs │ │ ├── square.hbs │ │ ├── logo.hbs │ │ ├── landscape-16x9.hbs │ │ ├── landscape-4x3.hbs │ │ ├── favicon.hbs │ │ └── icons.hbs │ ├── media │ │ ├── audio.hbs │ │ └── video.hbs │ ├── buttons │ │ └── buttons.hbs │ ├── global │ │ ├── animations.hbs │ │ ├── visibility.hbs │ │ ├── fonts.hbs │ │ └── colors.hbs │ ├── forms │ │ ├── select-menu.hbs │ │ ├── radio-buttons.hbs │ │ ├── checkbox.hbs │ │ ├── html5-inputs.hbs │ │ └── text-fields.hbs │ ├── lists │ │ ├── ordered.hbs │ │ ├── definition.hbs │ │ └── unordered.hbs │ └── tables │ │ └── table.hbs ├── molecules │ ├── text │ │ ├── byline-author-only.hbs │ │ ├── pullquote.hbs │ │ ├── byline-author-time.hbs │ │ ├── heading-group.hbs │ │ ├── intro-text.hbs │ │ ├── blockquote-with-citation.hbs │ │ └── address.hbs │ ├── layout │ │ ├── two-up.hbs │ │ ├── one-up.hbs │ │ ├── three-up.hbs │ │ └── four-up.hbs │ ├── blocks │ │ ├── headline-byline.hbs │ │ ├── headline-only.hbs │ │ ├── block-thumb-headline.hbs │ │ ├── inset-block.hbs │ │ ├── block-hero.hbs │ │ └── media-block.hbs │ ├── navigation │ │ ├── footer-nav.hbs │ │ ├── tabs.hbs │ │ ├── primary-nav.hbs │ │ ├── breadcrumbs.hbs │ │ └── pagination.hbs │ ├── components │ │ ├── social-share.hbs │ │ ├── single-comment.hbs │ │ └── accordion.hbs │ ├── media │ │ ├── figure-with-caption.hbs │ │ └── _map.hbs │ └── forms │ │ ├── newsletter.hbs │ │ ├── search.hbs │ │ └── comment-form.hbs ├── organisms │ ├── global │ │ ├── footer.hbs │ │ └── header.hbs │ ├── components │ │ └── carousel.hbs │ ├── comments │ │ └── comment-thread.hbs │ ├── sections │ │ ├── latest-posts.hbs │ │ ├── related-posts.hbs │ │ └── recent-tweets.hbs │ └── article │ │ └── article-body.hbs ├── templates │ ├── blog.hbs │ ├── homepage.hbs │ └── article.hbs └── pages │ ├── blog.hbs │ ├── homepage.hbs │ └── article.hbs ├── styles └── scss │ ├── objects │ ├── _ads.scss │ ├── _sections.scss │ ├── _main.scss │ ├── _comments.scss │ ├── _tabs.scss │ ├── _accordion.scss │ ├── _carousels.scss │ ├── _buttons.scss │ ├── _header.scss │ ├── _tooltip.scss │ ├── _footer.scss │ ├── _nav.scss │ ├── _article.scss │ ├── _lists.scss │ ├── _text.scss │ ├── _blocks.scss │ ├── _icons.scss │ └── _layout.scss │ ├── base │ ├── _main.scss │ ├── _links.scss │ ├── _animation.scss │ ├── _lists.scss │ ├── _tables.scss │ ├── _media.scss │ ├── _text.scss │ ├── _headings.scss │ ├── _global-classes.scss │ └── _forms.scss │ ├── generic │ ├── _reset.scss │ ├── _mixins.scss │ └── _variables.scss │ └── style.scss ├── templates ├── includes │ ├── patternPaths.hbs │ ├── viewAllPaths.hbs │ ├── websockets.hbs │ ├── header.hbs │ ├── javascripts.hbs │ ├── head.hbs │ ├── patternNav.hbs │ └── ishControls.hbs ├── index.hbs ├── layouts │ └── default.hbs ├── _helpers │ └── patterns.js ├── styleguide.hbs └── viewall.hbs ├── .gitattributes ├── docs ├── README.tmpl.md ├── install.md ├── contributing.md ├── usage.md └── overview.md ├── data ├── article.json ├── data.json ├── blog.json └── homepage.json ├── .gitignore ├── LICENSE-MIT ├── .assemble.yml ├── package.json ├── Gruntfile.js └── README.md /assets/css/styleguide/static.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/atoms/text/hr.hbs: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /styles/scss/objects/_ads.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/atoms/text/paragraph.hbs: -------------------------------------------------------------------------------- 1 |

{{ description }}

-------------------------------------------------------------------------------- /patterns/atoms/images/avatar.hbs: -------------------------------------------------------------------------------- 1 | Avatar -------------------------------------------------------------------------------- /patterns/atoms/text/time.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/atoms/images/loading-icon.hbs: -------------------------------------------------------------------------------- 1 | Loading -------------------------------------------------------------------------------- /patterns/atoms/images/square.hbs: -------------------------------------------------------------------------------- 1 | {{ img.square.alt }} -------------------------------------------------------------------------------- /templates/includes/patternPaths.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/includes/viewAllPaths.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icons/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/icons/icons.eot -------------------------------------------------------------------------------- /assets/icons/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/icons/icons.ttf -------------------------------------------------------------------------------- /assets/icons/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/icons/icons.woff -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/fpo_4x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/fpo_4x3.png -------------------------------------------------------------------------------- /patterns/atoms/images/logo.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/atoms/text/caption.hbs: -------------------------------------------------------------------------------- 1 |

A caption can be applied to an image, quote, form field, etc.

-------------------------------------------------------------------------------- /assets/images/fpo_16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/fpo_16x9.png -------------------------------------------------------------------------------- /assets/images/fpo_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/fpo_avatar.png -------------------------------------------------------------------------------- /assets/images/fpo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/fpo_square.png -------------------------------------------------------------------------------- /patterns/molecules/text/byline-author-only.hbs: -------------------------------------------------------------------------------- 1 |
by {{ author.first-name }} {{ author.last-name }}
-------------------------------------------------------------------------------- /assets/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/ajax-loader.gif -------------------------------------------------------------------------------- /patterns/atoms/images/landscape-16x9.hbs: -------------------------------------------------------------------------------- 1 | {{ img.landscape-16x9.alt }} -------------------------------------------------------------------------------- /patterns/atoms/images/landscape-4x3.hbs: -------------------------------------------------------------------------------- 1 | {{ img.landscape-4x3.alt }} -------------------------------------------------------------------------------- /patterns/atoms/media/audio.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icons/styleguide/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/icons/styleguide/icons.eot -------------------------------------------------------------------------------- /assets/icons/styleguide/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/icons/styleguide/icons.ttf -------------------------------------------------------------------------------- /assets/images/favicon_16x16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/favicon_16x16.jpg -------------------------------------------------------------------------------- /assets/images/favicon_32x32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/favicon_32x32.jpg -------------------------------------------------------------------------------- /assets/icons/styleguide/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/icons/styleguide/icons.woff -------------------------------------------------------------------------------- /patterns/atoms/images/favicon.hbs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /styles/scss/objects/_sections.scss: -------------------------------------------------------------------------------- 1 | .section { 2 | margin: 0 0 $space; 3 | } 4 | 5 | .section-title { 6 | margin-bottom: $space-half; 7 | } -------------------------------------------------------------------------------- /assets/images/sample/tout-4x3-stream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/tout-4x3-stream.jpg -------------------------------------------------------------------------------- /assets/images/sample/thumb-square-fire.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/thumb-square-fire.jpg -------------------------------------------------------------------------------- /assets/images/sample/thumb-square-gear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/thumb-square-gear.jpg -------------------------------------------------------------------------------- /assets/images/sample/thumb-square-ivy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/thumb-square-ivy.jpg -------------------------------------------------------------------------------- /assets/images/sample/thumb-square-river.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/thumb-square-river.jpg -------------------------------------------------------------------------------- /assets/images/sample/tout-4x3-climber.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/tout-4x3-climber.jpg -------------------------------------------------------------------------------- /assets/images/sample/tout-4x3-climbers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/tout-4x3-climbers.jpg -------------------------------------------------------------------------------- /styles/scss/base/_main.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background: $white; 3 | font: 100%/1.5 $font; 4 | -webkit-text-size-adjust: 100%; 5 | color: $gray-dark; 6 | } -------------------------------------------------------------------------------- /patterns/molecules/text/pullquote.hbs: -------------------------------------------------------------------------------- 1 |
2 |

A pull quote is a quotation or excerpt from an article

3 |
-------------------------------------------------------------------------------- /assets/images/sample/thumb-square-yosemite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/thumb-square-yosemite.jpg -------------------------------------------------------------------------------- /assets/images/sample/landscape-16x9-mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/assemble/assemble-pattern-lab/master/assets/images/sample/landscape-16x9-mountains.jpg -------------------------------------------------------------------------------- /templates/includes/websockets.hbs: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /patterns/molecules/text/byline-author-time.hbs: -------------------------------------------------------------------------------- 1 |
by {{ author.first-name }} {{ author.last-name }} on
-------------------------------------------------------------------------------- /patterns/molecules/text/heading-group.hbs: -------------------------------------------------------------------------------- 1 |
2 |

This is the heading group's main heading

3 |

This is the heading group's subheading

4 |
-------------------------------------------------------------------------------- /patterns/molecules/layout/two-up.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
1/2
5 |
1/2
6 |
7 |
-------------------------------------------------------------------------------- /styles/scss/base/_links.scss: -------------------------------------------------------------------------------- 1 | /* Links */ 2 | a { 3 | color: $gray-dark; 4 | text-decoration: none; 5 | outline: 0; 6 | 7 | &:hover, &:focus { 8 | color: $gray; 9 | } 10 | } -------------------------------------------------------------------------------- /patterns/molecules/layout/one-up.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
1/1
5 |
6 | 7 |
-------------------------------------------------------------------------------- /patterns/atoms/text/headings.hbs: -------------------------------------------------------------------------------- 1 |

Heading Level 1

2 |

Heading Level 2

3 |

Heading Level 3

4 |

Heading Level 4

5 |
Heading Level 5
6 |
Heading Level 6
-------------------------------------------------------------------------------- /patterns/molecules/blocks/headline-byline.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Headline: Lorem Ipsum Dolor Amet Sit

4 | {{ atom 'time' }} 5 |
6 |
-------------------------------------------------------------------------------- /patterns/molecules/text/intro-text.hbs: -------------------------------------------------------------------------------- 1 |

The intro text may be a lead-in to the passage of text, or it may just be used to create a visual distinction between the rest of the passage of text.

-------------------------------------------------------------------------------- /patterns/molecules/blocks/headline-only.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Headline: Lorem ipsum dolor sit amet, consectetur adipiscing elit

4 |
5 |
-------------------------------------------------------------------------------- /patterns/molecules/layout/three-up.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
1/3
5 |
1/3
6 |
1/3
7 |
8 |
-------------------------------------------------------------------------------- /patterns/molecules/navigation/footer-nav.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/molecules/navigation/tabs.hbs: -------------------------------------------------------------------------------- 1 |
2 | 7 |
-------------------------------------------------------------------------------- /patterns/atoms/buttons/buttons.hbs: -------------------------------------------------------------------------------- 1 |

Button

2 |

Alternate Button

3 |

Disabled Button

4 |

Text Button

-------------------------------------------------------------------------------- /patterns/molecules/layout/four-up.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
1/4
5 |
1/4
6 |
1/4
7 |
1/4
8 |
9 |
-------------------------------------------------------------------------------- /patterns/organisms/global/footer.hbs: -------------------------------------------------------------------------------- 1 | 2 | 7 | -------------------------------------------------------------------------------- /patterns/molecules/navigation/primary-nav.hbs: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /styles/scss/base/_animation.scss: -------------------------------------------------------------------------------- 1 | .animate-fade { 2 | @include transition(opacity, 0.3s, ease-out); 3 | 4 | &:hover { 5 | opacity: 0; 6 | } 7 | } 8 | 9 | .animate-move { 10 | > .demo-shape { 11 | @include transition(all, 0.8s, ease-in-out); 12 | } 13 | } -------------------------------------------------------------------------------- /styles/scss/objects/_main.scss: -------------------------------------------------------------------------------- 1 | /*------------------------------------*\ 2 | $MAIN CONTENT AREA 3 | \*------------------------------------*/ 4 | [role=main] { 5 | padding: $pad-half $pad-half $pad-double; 6 | overflow: hidden; 7 | @extend .lc; 8 | @extend .cf; 9 | } -------------------------------------------------------------------------------- /templates/includes/header.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/molecules/components/social-share.hbs: -------------------------------------------------------------------------------- 1 |
2 | 8 |
-------------------------------------------------------------------------------- /patterns/molecules/navigation/breadcrumbs.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/atoms/text/emphasis-colors.hbs: -------------------------------------------------------------------------------- 1 |

This is what error text looks like

2 |

This is what valid text looks like

3 |

This is what warning text looks like

4 |

This is what information text looks like.

-------------------------------------------------------------------------------- /patterns/molecules/media/figure-with-caption.hbs: -------------------------------------------------------------------------------- 1 |
2 | {{ atom 'landscape-4x3' }} 3 |
This is an example of an image with a caption. Photo captions, also known as cutlines, are a few lines of text used to explain or elaborate on published photographs.
4 |
-------------------------------------------------------------------------------- /styles/scss/base/_lists.scss: -------------------------------------------------------------------------------- 1 | ol, ul { 2 | margin: 0; 3 | padding: 0; 4 | list-style: none; 5 | } 6 | 7 | /* Definition Lists */ 8 | dl { 9 | overflow: hidden; 10 | margin: 0 0 $space; 11 | } 12 | 13 | dt { 14 | font-weight: bold; 15 | } 16 | 17 | dd { 18 | margin-left: 0; 19 | } -------------------------------------------------------------------------------- /patterns/molecules/blocks/block-thumb-headline.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | {{ atom 'square' }} 5 |
6 |
7 |

{{ title }}

8 |
9 |
10 |
-------------------------------------------------------------------------------- /patterns/molecules/blocks/inset-block.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | {{ atom 'landscape-4x3' }} 5 |
6 |
7 |

{{ headline.short }}

8 |
9 |
10 |
-------------------------------------------------------------------------------- /patterns/molecules/blocks/block-hero.hbs: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | {{ atom 'landscape-16x9' }} 5 |
6 |
7 |

{{ headline.medium }}

8 |
9 |
10 |
-------------------------------------------------------------------------------- /patterns/molecules/components/single-comment.hbs: -------------------------------------------------------------------------------- 1 |
  • 2 |
    3 | {{ atom 'avatar' }} 4 |

    {{name.first}} {{name.last}}

    5 |
    6 |
    7 |

    {{description}}

    8 |
    9 |
  • -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | *.* text eol=lf 3 | *.css text eol=lf 4 | *.html text eol=lf 5 | *.js text eol=lf 6 | *.json text eol=lf 7 | *.less text eol=lf 8 | *.md text eol=lf 9 | *.yml text eol=lf 10 | 11 | *.jpg binary 12 | *.gif binary 13 | *.png binary 14 | *.jpeg binary -------------------------------------------------------------------------------- /patterns/molecules/navigation/pagination.hbs: -------------------------------------------------------------------------------- 1 |
      2 |
    1. 1
    2. 3 |
    3. 2
    4. 4 |
    5. 3
    6. 5 |
    7. 4
    8. 6 |
    9. 5
    10. 7 |
    11. 6
    12. 8 |
    13. 7
    14. 9 |
    -------------------------------------------------------------------------------- /patterns/atoms/text/preformatted-text.hbs: -------------------------------------------------------------------------------- 1 |
      	
    2 | P R E F O R M A T T E D T E X T
    3 | ! " # $ % & ' ( ) * + , - . /
    4 | 0 1 2 3 4 5 6 7 8 9 : ; < = > ?
    5 | @ A B C D E F G H I J K L M N O
    6 | P Q R S T U V W X Y Z [ \ ] ^ _
    7 | ` a b c d e f g h i j k l m n o
    8 | p q r s t u v w x y z { | } ~ 
    9 | 
    -------------------------------------------------------------------------------- /patterns/atoms/global/animations.hbs: -------------------------------------------------------------------------------- 1 |
    Fade: Duration: 0.3s Easing: ease-out (Hover to see effect)
    2 | 3 |
    Movement: Duration: 0.8s Easing: ease-in-out; (Hover to see effect)
    -------------------------------------------------------------------------------- /patterns/molecules/media/_map.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patterns/atoms/text/headings-with-links.hbs: -------------------------------------------------------------------------------- 1 |

    Heading 1 with link

    2 |

    Heading 2 with link

    3 |

    Heading 3 with link

    4 |

    Heading 4 with link

    5 |
    Heading 5 with link
    6 |
    Heading 6 with link
    -------------------------------------------------------------------------------- /patterns/atoms/text/subheadings.hbs: -------------------------------------------------------------------------------- 1 |

    Subheading Level 1

    2 |

    Subheading Level 2

    3 |

    Subheading Level 3

    4 |

    Subheading Level 4

    5 |
    Subheading Level 5
    6 |
    Subheading Level 6
    -------------------------------------------------------------------------------- /patterns/molecules/blocks/media-block.hbs: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    4 | {{ atom 'square' }} 5 |
    6 |
    7 |

    {{ headline.short }}

    8 |

    {{ excerpt.medium }}

    9 |
    10 |
    11 |
    -------------------------------------------------------------------------------- /patterns/atoms/text/blockquote.hbs: -------------------------------------------------------------------------------- 1 |
    2 |

    A block quotation (also known as a long quotation or extract) is a quotation in a written document, that is set off from the main text as a paragraph, or block of text, and typically distinguished visually using indentation and a different typeface or smaller size quotation.

    3 |
    -------------------------------------------------------------------------------- /patterns/organisms/components/carousel.hbs: -------------------------------------------------------------------------------- 1 |