Skip to content
This repository has been archived by the owner on Jun 26, 2018. It is now read-only.

DP-4176 Service page documentation #521

Merged
merged 191 commits into from
Aug 10, 2017
Merged

Conversation

legostud
Copy link

@legostud legostud commented Jul 26, 2017

This PR provides documentation for every pattern used on the Service Page:
http://mayflower.digital.mass.gov/?p=pages-service

Jira:
https://jira.state.ma.us/browse/DP-4176

Documentation was added to these patterns (with some twig changes):

Service Page

  • Header
    • Utility Nav (removed unused dropdown variable)
      • Utility Panel
        • Rich Text
          • Paragraph
          • Figure ( modified to use --right / --left classes)
          • Unordered List
          • Ordered List
          • Check List
          • Icon List
          • Headings 1 - Heading 6
        • Decorative Link
    • Site Logo
    • Header Search
      • Button Search
    • Main Nav
  • Footer
    • Floating Action ( removed need for the type variable)
      • Button (Data now includes 'color', 'href', 'info' and phasing out 'theme' variables)
    • Footer Links (populated the id value)
    • Social Links (moved the 'altText' data from a span tag to a title attribute)
  • Service Template
    • Page Banner
    • Image
    • Video
    • Key Actions
      • Comp Heading
      • Sidebar Heading
      • Illustrated Link
      • Callout Link (moved the 'info' data from a span tag to a title attribute)
    • Icon Links
    • Link List
    • Action Finder (Fixed logic to add --no-filter class)
      • Keyword Search
    • Mapped Locations
      • Google Map
    • Split Columns
    • Form Downloads
      • Download Link

Other:

  • Marked Button Link as depreciated
  • Created documentation pattern templates


### Variant options
* See Variants for Comp Heading
* [Short List](./?p=organisms-link-list-with-short-list) by passing less than four items
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI this link was rendering the default variant for me... could be a local issue though because the file names all seemed to match and the data json only had 3 links...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see similar behavior for split columns and split columns 2 -- and now it's reminding me: this is the bug with the data inheritance / lineage, right? So we should test these patterns with #519 ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep, that's the issue with the Pattern Lab upgrade. There is a pull request to fix that if you'd like to review it.


### Required Variables
### Usage Guidelines
* The decorative link is placed above the map for accessibility reasons.
Copy link
Contributor

@jesconstantine jesconstantine Aug 4, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you think we should add something like "to link to a more accessible list of locations" here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, the comment I made was about the placement of the link itself since normally the link would go after the Map like we do for the Video pattern and other view more links

}
}]
}
~~~
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Love the docs for this pattern!

~~~
pageBanner: {
bgWide:
type: string/required (path to image for wide screens)
bgNarrow:
type: string/required (path to image for narrow screens)
size:
type: string(optional) ('small', 'large', 'overlay')
type: string(optional) (null, 'small', 'medium', 'large', 'overlay', 'columns')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'' vs null per our earlier conversation

@@ -0,0 +1,87 @@
### Description
Displays a collect of components to help describe an available Service on Mass Gov
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo "collection"



### Variant options
* Most of the elements on the page are optional. The Page Banner, Intro text, and Google Map are required on this template.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice 👍

@legostud
Copy link
Author

legostud commented Aug 4, 2017

@jesconstantine - I think I've updated all of the issues or provided comments.

text:
type: string / required
type:
type: string / optional (ex: "button", "submit")
size:
type: string / optional ("" or "small")
theme:
type: string / optional ("" or "alt")
type: string / optional ("", "secondary", or "secondary")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm guessing one of these "secondary"s should be "quaternary", right?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep, good catch

Copy link
Author

@legostud legostud left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did I answer all your questions and make all the changes requested?

text:
type: string / required
type:
type: string / optional (ex: "button", "submit")
size:
type: string / optional ("" or "small")
theme:
type: string / optional ("" or "alt")
type: string / optional ("", "secondary", or "secondary")
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep, good catch

---
Description: an atom for `<table>` elements with child `<thead>`, `<tbody>`, `<tr>`, and `<td>` elements.
### Description
This Displays a styled table used in a Rich Text Editor
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What are the "Data Table needs"?

type: string (url) / required
text:
type: string / required
info:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That first link seems to support my decision to use the 'title' attribute since it works across all screen readers (VO on OSX requires manually triggering it, but it will read it).

The second link is from 2012 and browsers have evolved over the past five years so I'm not sure how relevant the content is now.

@@ -5,7 +5,7 @@
{% set noBgClass = "ma__action-finder--no-background" %}
{% endif %}

{% if actionFinder.links|length <= 6 and hideFilter %}
{% if actionFinder.links|length <= 6 or hideFilter %}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like another team has now removed it as part of a bug fix.

Copy link
Contributor

@jesconstantine jesconstantine left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is a fantastic start to our documentation initiative - great work @legostud !!

@jesconstantine jesconstantine merged commit 873535a into C4-Docs Aug 10, 2017
@legostud legostud deleted the DP-4176-ServicePageDocs branch August 14, 2017 15:41
@jesconstantine jesconstantine mentioned this pull request Aug 22, 2017
legostud pushed a commit that referenced this pull request Aug 24, 2017
* DP-3527/DP-3528 - Unused Patterns (#455)

* DP-3519 - Image Promos - adding optional title

* DP-3519 - Location - new Content type.

* DP-3519 - Location Pages - updated to use location template

* DP-3519 - removing breadcrumbs

* DP-3519 - Removing wait time widget

* DP-3519 - Renaming pageContent to mainContent

* DP-3519 - Location Content - adding key actions and contact list

* DP-3527 - Quick Actions - removed

* DP-3527 - Sidebar Contact - removed

* DP-3527 - Sidebar Promo - removed

* DP-3527 - Sidebar Widget - removed

* DP-3527 - Wait Time - removed

* DP-3527 - Header Contact - removed

* DP-3527 - Action Details - removed

* DP-3527 - Action Section - removed

* DP-3527 - Figure - fixing image width

* DP-3527 - Action Event - removed

* DP-3528 - Action Gallery - archived

* DP-3528 - Action Cards - archived

* DP-3528 - Blog Feed - archived

* DP-3528 - Banner Carousel - archived

* DP-3528 - Change Log - archived

* DP-3528 - Feedback Form - archived

* DP-3528 - Test Feed - archived

* DP-3528 - Top Actions - archived

* DP-3528 - Collage Header - archived

* DP-3527 - Image Gallery - removed

* DP-3527 - Related Action - removed

* DP-3528 - State Util - removed

* Bump release to 6.0

* bad merge

* ignoring url config file for Release 6.0

* Removing disco mode from Pattern Lab.

* Switch Mayflower over to the Drupal Pattern Lab fork (#488)

* Switch Pattern Lab config to point to the Drupal Pattern Lab fork -- includes multiple PL bug fixes including the fix for the Lineages functionality being broken when using Twig namespaced paths.

* Reverting a few PL config paramaters that don't necessarily have to get updated with the newer version

* Fixing whitespace issues

* Fixing missed spaces vs tabs instance in config

* DP-4046 - Hosting from a Subfolder (#503)

* DP-4046 - Global Data - splitting into seperate files and creating url obj

* DP-4046 - Image - code clean up

* DP-4046 - fixing path variables to use ../../assets instead of /assets

* Pagination - preventing the loading of templates on pages without pagination

* DP-4046 - Default domain changed to localhost:3000

* DP-4046 - Site Logo - updating the href value

* DP-4046 - Adding Base tag.

* removing env.js file

* DP-4046 - Template JS var - renamed from themePath to templatePath

* Revert "DP-4046 - Template JS var - renamed from themePath to templatePath"

This reverts commit f21e7163c01841fa174b22289333dce09ad34262.

* DP-4046 - themePath documentation

* DP-4046 - Env.js - removing script to include file

* DP-4046 - Styleguide - relative paths for assets

* DP-4046 - Removing base tag.

* Subfolders - changing default domain url to be ""

* Trigger Browser Sync reload after Pattern Lab build (#506)

* Adding minor delay to browsersync

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4053 create + document manual build + deploy process (#530)

* Add shell script to deploy PL build to gh-pages branch of given repo

* Update readme with deploy, contrib, versions, license info

* Create contributing documentation

* Create deploy documentation

* Create PR template

* Create issue template

* Move environment setup and demo install instructions to own docs

* Link to mayflower artifacts docs from readme (vs duplicating content)

* Workaround to address unexpected Pattern Lab Psuedo-Pattern Data Inheritance (#519)

* Reverting Pattern Lab psuedo-pattern rules to use original merge function vs array_replace_recursive -- temporary workaround to address unexpected behavior from https://github.com/drupal-pattern-lab/patternlab-php-core/issues/12

* Adding composer patch library to automatically apply array_merge patch if/when upstream PL updates should occur

* Adding composer patch plugin to autoloader

* DP-4176 Service page documentation (#521)

* Add shell script to deploy PL build to gh-pages branch of given repo

* Make deploy script executable

* Use bash shebang in deploy script

* Fix conditional logic

* Write git output to screen

* Fix conditional logic check for false

* print variable name in log

* update order of args

* Fix conditional logic boolean false

* fix variable assignment, remove spaces

* echo errors in red, success in green

* fix validation of target environment

* Update deploy script argument validation

* Validate git push during deploy

* Exit deploy script on failed build

* Update docs

* Fix syntax error.

* Create a function for cleanup

* Fix target URL

* Create function for success / error logging

* Update docs

* Ensure that patterns are blown away before built

* Remove exit on error log

* Fix string comparison in log function

* Add final error message to deploy script

* Make wrong target remote repo message more helpful

* Create CNAME for staging (test)

* Test confirm functionality

* Create CNAME for stage / prod

* Add logic for final success message non/prod

* Update readme with deploy, contrib, versions, license info

See template link under readme > acknowledgements

* Create contributing documentation

* Create deploy documentation

* Fix readme link typo

* Fix link to contributing.md

* Update github pages settings docs

* Update Contributing md with Mayflower, PR tips.

* Create PR template

* Create issue template

* Fix typo and make contributing language more friendly

* Update steps to browse in readme.

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4176 - Comp Heading - changing id value

* DP-4178 / DP-4177 How To page (#523)

* Add shell script to deploy PL build to gh-pages branch of given repo

* Make deploy script executable

* Use bash shebang in deploy script

* Fix conditional logic

* Write git output to screen

* Fix conditional logic check for false

* print variable name in log

* update order of args

* Fix conditional logic boolean false

* fix variable assignment, remove spaces

* echo errors in red, success in green

* fix validation of target environment

* Update deploy script argument validation

* Validate git push during deploy

* Exit deploy script on failed build

* Update docs

* Fix syntax error.

* Create a function for cleanup

* Fix target URL

* Create function for success / error logging

* Update docs

* Ensure that patterns are blown away before built

* Remove exit on error log

* Fix string comparison in log function

* Add final error message to deploy script

* Make wrong target remote repo message more helpful

* Create CNAME for staging (test)

* Test confirm functionality

* Create CNAME for stage / prod

* Add logic for final success message non/prod

* Update readme with deploy, contrib, versions, license info

See template link under readme > acknowledgements

* Create contributing documentation

* Create deploy documentation

* Fix readme link typo

* Fix link to contributing.md

* Update github pages settings docs

* Update Contributing md with Mayflower, PR tips.

* Create PR template

* Create issue template

* Fix typo and make contributing language more friendly

* Update steps to browse in readme.

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4178 - HowTo / Details - documentation

* DP-4178 - Rich Text - typo in documentation

* DP-4178 - Page Header - documentation

* DP-4178 - Header Tags - documenation

* DP-4178 - Publish State - documentation

* DP-4178 - Divider - documentation

* DP-4178 - Contact List - updated documentation

* DP-4178 - Doc Template - slight tweak

* DP-4178 - Contact Us - documentation

* DP-4178 - Contact Group - documentation

* DP-4178 - Contact Group - removing structured content

* DP-4178  - Colored Heading - Documentation

* DP-4178 - Sticky Nav - Documentation

* DP-4178 - Tabular Data - documentation

* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4178 - Details template - doc updates

* DP-4178 - Page Header - doc updates

* DP-4178 - Contact Us - updating docs

* DP-4177 - removing un-used page header variant

* DP-4178 - Contact Group - updated docs

* DP-4178 - Contact Us - Changing description

* DP-4178 - Colored Heading - updated docs and examples

* DP-4178 - Column Heading - updated docs

* DP-4178 - Column Heading - updated docs

* Reverting DP-3527 and 3528 due to breaking changes

* DP-4178 / DP-4177 Guide Page (#524)

* Fix conditional logic boolean false

* fix variable assignment, remove spaces

* echo errors in red, success in green

* fix validation of target environment

* Update deploy script argument validation

* Validate git push during deploy

* Exit deploy script on failed build

* Update docs

* Fix syntax error.

* Create a function for cleanup

* Fix target URL

* Create function for success / error logging

* Update docs

* Ensure that patterns are blown away before built

* Remove exit on error log

* Fix string comparison in log function

* Add final error message to deploy script

* Make wrong target remote repo message more helpful

* Create CNAME for staging (test)

* Test confirm functionality

* Create CNAME for stage / prod

* Add logic for final success message non/prod

* Update readme with deploy, contrib, versions, license info

See template link under readme > acknowledgements

* Create contributing documentation

* Create deploy documentation

* Fix readme link typo

* Fix link to contributing.md

* Update github pages settings docs

* Update Contributing md with Mayflower, PR tips.

* Create PR template

* Create issue template

* Fix typo and make contributing language more friendly

* Update steps to browse in readme.

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4178 - HowTo / Details - documentation

* DP-4178 - Rich Text - typo in documentation

* DP-4178 - Page Header - documentation

* DP-4178 - Header Tags - documenation

* DP-4178 - Publish State - documentation

* DP-4178 - Divider - documentation

* DP-4178 - Contact List - updated documentation

* DP-4178 - Doc Template - slight tweak

* DP-4178 - Contact Us - documentation

* DP-4178 - Contact Group - documentation

* DP-4178 - Contact Group - removing structured content

* DP-4178  - Colored Heading - Documentation

* DP-4178 - Sticky Nav - Documentation

* DP-4178 - Tabular Data - documentation

* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Stacked Row - documentation

* DP-4187 - Guide - Documentation

* DP-4178 - Emergency Header - documentation

* DP-4177 - Emergency Header - switching divs to spans

* DP-4178 - Emergency Alerts - documentation

* 4178 - Emergency Header - documentation 2

* DP-4178 - Jump Links - documentation

* DP-4177 - Jump Links - Adding missing "info" variable to links

* DP-4178 - Split Columns - fixing indentation

* DP-4178 - Stacked Row Section - documentation

* DP-4178 - Illustrated Header - documentation

* DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links

* DP-4178 - Suggested Pages - documentation

* DP-4178 - Callout Stats - documentation

* DP-4177 - Guide Page - moving callout stat outside of Rich Text.

* DP-4178 - Callout Alert - documentation

* DP-4177 - Callout Alert - removed unused variables

* DP-4178 - Callout Time - documentation

* DP-4178 - Button Alert - documentation

* DP-4178 - Emergency Alert - documentation

* DP-4178 - Emergency Alerts - updating documentation

* DP-4178 - Link - documentation

* DP-4177 - Link - correcting variables to match best practice

* DP-4177 - Link - forgot to save a change

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4178 - Details template - doc updates

* DP-4178 - Page Header - doc updates

* DP-4178 - Contact Us - updating docs

* DP-4177 - removing un-used page header variant

* DP-4178 - Contact Group - updated docs

* DP-4178 - Contact Us - Changing description

* DP-4178 - Colored Heading - updated docs and examples

* DP-4178 - Column Heading - updated docs

* DP-4178 - Column Heading - updated docs

* DP-4178 - Guide page - adding back to top button

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Stacked row section - updated docs

* DP-4178 - Emergency Alerts - updated docs

* DP-4177 - Illustrated Header - renaming bgTitle to bgInfo

* DP-4178 - Suggested Pages - updated docs

* DP-4178 - doc templates - updated variant to use code block

* Remove phing deploy step that edits env.js asset paths for drupal (#544)

* DP-4181 Document the contribution process for issues, feature requests, PRs (#532)

* Add business and more specific contribution docs

Borrowed heavily from bootstrap's contrib docs

* Make build issue label more general: 'gulp' -> 'build'

* Remove browser bug report section

* Rename setting up your environment -> machine setup in contrib docs

* Update contrib docs based on internal review

* DP-4178 Location page (#527)

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4178 - HowTo / Details - documentation

* DP-4178 - Rich Text - typo in documentation

* DP-4178 - Page Header - documentation

* DP-4178 - Header Tags - documenation

* DP-4178 - Publish State - documentation

* DP-4178 - Divider - documentation

* DP-4178 - Contact List - updated documentation

* DP-4178 - Doc Template - slight tweak

* DP-4178 - Contact Us - documentation

* DP-4178 - Contact Group - documentation

* DP-4178 - Contact Group - removing structured content

* DP-4178  - Colored Heading - Documentation

* DP-4178 - Sticky Nav - Documentation

* DP-4178 - Tabular Data - documentation

* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Stacked Row - documentation

* DP-4187 - Guide - Documentation

* DP-4178 - Emergency Header - documentation

* DP-4177 - Emergency Header - switching divs to spans

* DP-4178 - Emergency Alerts - documentation

* 4178 - Emergency Header - documentation 2

* DP-4178 - Jump Links - documentation

* DP-4177 - Jump Links - Adding missing "info" variable to links

* DP-4178 - Split Columns - fixing indentation

* DP-4178 - Stacked Row Section - documentation

* DP-4178 - Illustrated Header - documentation

* DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links

* DP-4178 - Suggested Pages - documentation

* DP-4178 - Callout Stats - documentation

* DP-4177 - Guide Page - moving callout stat outside of Rich Text.

* DP-4178 - Callout Alert - documentation

* DP-4177 - Callout Alert - removed unused variables

* DP-4178 - Callout Time - documentation

* DP-4178 - Button Alert - documentation

* DP-4178 - Emergency Alert - documentation

* DP-4178 - Emergency Alerts - updating documentation

* DP-4178 - Link - documentation

* DP-4177 - Link - correcting variables to match best practice

* DP-4177 - Link - forgot to save a change

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4178 - Location Template - documentation

* DP-4178 - Location Pages - Documentation

* DP-4178 - Header Alert - documentation

* DP-4177 - Header Alert - adding "info" variable for decorative link

* DP-4178 - Page Header - location variant documentation

* DP-4178 - Location Banner - documentation

* DP-4177 - Location Banner - correcting variable name

* DP-4178 - Google Map - documentation

* DP-4178 - Image Promos - documentation

* DP-4178 - Image Promo - documentation

* DP-4177 - Image Promo - switching 'type' for 'info' for the title link

* DP-4178 - Image Promos - documentation

* DP-4177 - Link - still fixing logic to switch from string to boolean

* DP-4178 - Event Teaser - documentation

* DP-4178 - Event Listing - documentation

* DP-4178 - Location Icons - documentation

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4178 - Details template - doc updates

* DP-4178 - Page Header - doc updates

* DP-4178 - Contact Us - updating docs

* DP-4177 - removing un-used page header variant

* DP-4178 - Contact Group - updated docs

* DP-4178 - Contact Us - Changing description

* DP-4178 - Colored Heading - updated docs and examples

* DP-4178 - Column Heading - updated docs

* DP-4178 - Column Heading - updated docs

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Guide page - adding back to top button

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Stacked row section - updated docs

* DP-4178 - Emergency Alerts - updated docs

* DP-4177 - Illustrated Header - renaming bgTitle to bgInfo

* DP-4178 - Suggested Pages - updated docs

* DP-4178 - Header Alert - replacing guid with id

* DP-4177 - location template - fixing data json content

* DP-4178 - Details Template - added twig docs links placeholders

* DP-4178 - Howto & Location pages - Adding extends copy to description

* DP-4178 - Location template - adding twig blocks

* DP-4178 - Google Maps - updated docs

* DP-4178 - Image Promos - updated docs

* DP-4178 - Event Teaser - updated docs

* DP-4178 - Event Listing - updated docs

* DP-4178 - Location Template - removing variants section

* DP-4178 topic page (#529)

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4178 - HowTo / Details - documentation

* DP-4178 - Rich Text - typo in documentation

* DP-4178 - Page Header - documentation

* DP-4178 - Header Tags - documenation

* DP-4178 - Publish State - documentation

* DP-4178 - Divider - documentation

* DP-4178 - Contact List - updated documentation

* DP-4178 - Doc Template - slight tweak

* DP-4178 - Contact Us - documentation

* DP-4178 - Contact Group - documentation

* DP-4178 - Contact Group - removing structured content

* DP-4178  - Colored Heading - Documentation

* DP-4178 - Sticky Nav - Documentation

* DP-4178 - Tabular Data - documentation

* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Stacked Row - documentation

* DP-4187 - Guide - Documentation

* DP-4178 - Emergency Header - documentation

* DP-4177 - Emergency Header - switching divs to spans

* DP-4178 - Emergency Alerts - documentation

* 4178 - Emergency Header - documentation 2

* DP-4178 - Jump Links - documentation

* DP-4177 - Jump Links - Adding missing "info" variable to links

* DP-4178 - Split Columns - fixing indentation

* DP-4178 - Stacked Row Section - documentation

* DP-4178 - Illustrated Header - documentation

* DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links

* DP-4178 - Suggested Pages - documentation

* DP-4178 - Callout Stats - documentation

* DP-4177 - Guide Page - moving callout stat outside of Rich Text.

* DP-4178 - Callout Alert - documentation

* DP-4177 - Callout Alert - removed unused variables

* DP-4178 - Callout Time - documentation

* DP-4178 - Button Alert - documentation

* DP-4178 - Emergency Alert - documentation

* DP-4178 - Emergency Alerts - updating documentation

* DP-4178 - Link - documentation

* DP-4177 - Link - correcting variables to match best practice

* DP-4177 - Link - forgot to save a change

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4178 - Location Template - documentation

* DP-4178 - Location Pages - Documentation

* DP-4178 - Header Alert - documentation

* DP-4177 - Header Alert - adding "info" variable for decorative link

* DP-4178 - Page Header - location variant documentation

* DP-4178 - Location Banner - documentation

* DP-4177 - Location Banner - correcting variable name

* DP-4178 - Google Map - documentation

* DP-4178 - Image Promos - documentation

* DP-4178 - Image Promo - documentation

* DP-4177 - Image Promo - switching 'type' for 'info' for the title link

* DP-4178 - Image Promos - documentation

* DP-4177 - Link - still fixing logic to switch from string to boolean

* DP-4178 - Event Teaser - documentation

* DP-4178 - Event Listing - documentation

* DP-4178 - Location Icons - documentation

* DP-4178 - Topic Page - documentation

* DP-4177 - Single Column Template - adding header and footer blocks

* DP-4178 - Single Column Template - documentation

* DP-4178 - Sections Three Up - documentation

* DP-4178 - Section Links - documentation

* DP-4178 - Cat Icon - documentation

* DP-4177 - Icons - removing unneccassary documentations for SVG icons

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4178 - Details template - doc updates

* DP-4178 - Page Header - doc updates

* DP-4178 - Contact Us - updating docs

* DP-4177 - removing un-used page header variant

* DP-4178 - Contact Group - updated docs

* DP-4178 - Contact Us - Changing description

* DP-4178 - Colored Heading - updated docs and examples

* DP-4178 - Column Heading - updated docs

* DP-4178 - Column Heading - updated docs

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Guide page - adding back to top button

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Stacked row section - updated docs

* DP-4178 - Emergency Alerts - updated docs
…
@mrossi113 mrossi113 mentioned this pull request Aug 30, 2017
legostud pushed a commit that referenced this pull request Sep 11, 2017
* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Stacked Row - documentation

* DP-4187 - Guide - Documentation

* DP-4178 - Emergency Header - documentation

* DP-4177 - Emergency Header - switching divs to spans

* DP-4178 - Emergency Alerts - documentation

* 4178 - Emergency Header - documentation 2

* DP-4178 - Jump Links - documentation

* DP-4177 - Jump Links - Adding missing "info" variable to links

* DP-4178 - Split Columns - fixing indentation

* DP-4178 - Stacked Row Section - documentation

* DP-4178 - Illustrated Header - documentation

* DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links

* DP-4178 - Suggested Pages - documentation

* DP-4178 - Callout Stats - documentation

* DP-4177 - Guide Page - moving callout stat outside of Rich Text.

* DP-4178 - Callout Alert - documentation

* DP-4177 - Callout Alert - removed unused variables

* DP-4178 - Callout Time - documentation

* DP-4178 - Button Alert - documentation

* DP-4178 - Emergency Alert - documentation

* DP-4178 - Emergency Alerts - updating documentation

* DP-4178 - Link - documentation

* DP-4177 - Link - correcting variables to match best practice

* DP-4177 - Link - forgot to save a change

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4178 - Location Template - documentation

* DP-4178 - Location Pages - Documentation

* DP-4178 - Header Alert - documentation

* DP-4177 - Header Alert - adding "info" variable for decorative link

* DP-4178 - Page Header - location variant documentation

* DP-3235 Added aria-label for file download links (#522)

* DP-3235 Added aria-label for file download links

* DP-3235 Adjusted file download links a11y approach

* DP-4178 - Location Banner - documentation

* DP-4177 - Location Banner - correcting variable name

* DP-4178 - Google Map - documentation

* DP-4178 - Image Promos - documentation

* DP-4178 - Image Promo - documentation

* DP-4177 - Image Promo - switching 'type' for 'info' for the title link

* DP-4178 - Image Promos - documentation

* DP-4177 - Link - still fixing logic to switch from string to boolean

* DP-4178 - Event Teaser - documentation

* DP-4178 - Event Listing - documentation

* DP-4178 - Location Icons - documentation

* DP-4103 - Add `align-self` style to section title to fix wrapping. (#526)

* DP-4178 - Topic Page - documentation

* DP-4177 - Single Column Template - adding header and footer blocks

* DP-4178 - Single Column Template - documentation

* DP-4178 - Sections Three Up - documentation

* DP-4178 - Section Links - documentation

* DP-4178 - Cat Icon - documentation

* DP-4177 - Icons - removing unneccassary documentations for SVG icons

* DP-4178 - Page Header for Event - documentation

* DP-4178 - Page header for location - fixing documentation

* DP-4178 - Events - Documentation

* DP-4178 - Page Overview - documentation

* DP-4178 - Event Template - documentation

* DP-4177 - Event Template - extending sidebar to have optional content

* DP-4178 - Labelled list - documentation

* Dp-4178 - Event Listing - Post Content versions

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4178 - Org Page - documentation

* DP-4319 - Org and Details - removing breadcrumbs from data object

* DP-4323 - Detail Page - documentation

* DP-4323 - Two column templates - documentation

* DP-4323 - Press Release - documentation

* DP-4323 - Press Template - documentation

* DP-4323 - Service Template - fixing typo in documentation

* DP-4323 - Press Status - documentation

* DP-4323 - Event Listing - tweak to post content variant

* DP-4323 - Two Column Templates - adding header and footer blocks

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4323 - Press Status - Variant documentation

* DP-4323 - Personal Message - documentation

* DP-4323 - Press Listing - documentation

* DP-4323 - Press Teaser - documentation

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4323 - Event Listing - documentation

* DP-4323 - Event Filters - documentation

* DP-3223 - Results Heading - documentation

* DP-4323 - Pagination - documentation

* DP-4323 - Sort Results - documentation

* DP-4323 - Sort Button - documentation

* DP-4323 - Input Text - documentation

* DP-4323 - Date Range - documentation

* DP-4323 - Documentation Template - updated

* DP-4323 - Input Date - documentation

* DP-4323 - Location Listing page - documentation

* DP-4319 - Location Listing - removing breadcrumbs data

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4198: Changes a tag to div to fix google translate. (#534)

* DP-4198: Changes a tag to div to fix google translate.

* Puts svg back into anchor tag.

* Gets rid of js-clickable-link class.

* DP-4198 - Callout Link - wrapping it in a div for google translate (#535)

* DP-3232 & DP-1369 Key Actions and Key Agencies showing multiple times throughout page (#518)

* Added an aria-labelledby for the key actions using compHeading.id

* Added id to the key-actions.json

* Added compHeading.id to the sidebar-heading "Key Agencies"

* Removed the aria label from the sidebar-heading

* Updated the comp-heading with modifier class --sidebar

* Moved the 'after' under the --sidebar & .sidebar

* Add modifiers --centered and --sidebar to the comp-header.twig

* Moved the sidebar modifier in the comp-heading.twig

* Removed the compHeading.id from the key-actions.twig

* Removed the center modifiere to h3 header in comp-heading.twig

* DP-3232 - Comp Heading - updates

* DP-3232 - Comp Heading - reverting level headings

* DP-3232 - Key Actions - populating aria-labelled by and removing sidebarheading

* DP-4178 - Details template - doc updates

* DP-4178 - Page Header - doc updates

* DP-4178 - Contact Us - updating docs

* DP-4177 - removing un-used page header variant

* DP-4178 - Contact Group - updated docs

* DP-4178 - Contact Us - Changing description

* DP-4178 - Colored Heading - updated docs and examples

* DP-4178 - Column Heading - updated docs

* DP-4178 - Column Heading - updated docs

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Guide page - adding back to top button

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Stacked row section - updated docs

* Updates subheader text on organization page. (#540)

* DP-4178 - Emergency Alerts - updated docs

* DP-4177 - Illustrated Header - renaming bgTitle to bgInfo

* DP-4178 - Suggested Pages - updated docs

* DP-4178 - Header Alert - replacing guid with id

* DP-4177 - location template - fixing data json content

* DP-4178 - Details Template - added twig docs links placeholders

* DP-4178 - Howto & Location pages - Adding extends copy to description

* DP-4178 - Location template - adding twig blocks

* DP-4178 - Google Maps - updated docs

* DP-4178 - Image Promos - updated docs

* DP-4178 - Event Teaser - updated docs

* DP-4178 - Event Listing - updated docs

* DP-4323 - Location Filters - documentation

* DP-3909 Add Fee description to How-to page (#538)

* add fee description

* add dataset for fee description

* add padding below fee description section

* adjustment based on the review

* DP-1900 - Changed decorative links within contact groups to display inline. (#543)

* DP-1900 - Changed decorative links within contact groups to display inline.

* Removes width auto instead of changing to display inline.

* DP-4323 - Checkbox - documentation

* DP-4323 - Select box - documentation

* DP-4323 - Page Docs - changing how templates and variants are called out

* DP-4323 - Press Listing Page - documentation

* DP-4323 - Press Filters - documentation

* DP-4323 - Org Selector - documentation

* DP-4323 - Executive Order - documentation

* DP-4323 - Listing Table - documentation

* DP-4323 - Board Decisions - documentation

* DP-4323 - Two Column Templates - slight tweak to docs

* DP-4323 - Board Decision - Documentation fixed

* DP-4323 - Policy Advisory - documentation

* DP-4323 - Footnote List - documentation

* DP-4319 - Footnote - fixing JS for "#" examples.

* DP-4323 - Footnote List - fixing href

* DP-4323 - Footnote - documenation

* DP-4323 - Directive page - documentation

* DP-4323 - Regulation - documentation

* DP-4323 - Section Landing - documentation

* DP-4323 - back button -documentation

* DP-4319 - back button - switched to using 'title'

* DP-4323 - detail page - documentation

* DP4323 - video transcript - documentation

* DP-4323 - Form Page - documentation

* DP-4323 - Rich Text - fixing documentation

* DP-4323 - Press Template - changing description

* DP-4323 - Form Page Template - documentation

* DP-4319 - Form PAge Template - removing header and footer

* DP-4323 - Form Requirements - documentation

* DP-4323 - Error List - documentation

* DP-4323 - Helper Text - documentation

* DP-4323 - Input Group - documentation

* DP-4323 - radio input - documentation

* DP-4323 - textarea - documentation

* DP-4480 Remove-filtering-keywords-service-page (#536)

* Removing the filter code from the action-finder.twig

* Deleted the action-finder-filter json and md file

* Removed the hideFilter variable from action-finder json files

* Removed the filterClass and the if statement from action-finder.twig

* DP-4323 - Page Banner - correcting Variant docs

* DP-4323 - Page Header - adjusting description

* DP-4178 - Location Template - removing variants section

* DP-4178 - Section Links - updated docs

* DP-4178 - Sections 3 up - updated docs

* DP-4178 - Single Column Template - adding Twig block info

* DP-4177 - Two Column Template - added header and footer blocks

* DP-4178 - Event Listing - forgot to add the as grid variant

* DP-4178 - Event Listing - Adding one template variant

* DP-4591 Add "more link" to contact us molecule, use on How-To page (#542)

* DP-4591 create contact us accordion variant: w/ more link

* DP-4591: remove title link property from contact us accordion

Since we now have the variant to add the link to the accordion content, we don't want to link the accordion button as a pattern.

* DP-4591 use the contact us variants with links in how to page

* Add empty data model variables back in to pattern json

* DP-4508 Add header tags to pages w/ page banner (#539)

* create new content eyebrow organism

* put if statement around all other code

* add content eyebrow to services

* add content eyebrow to services page

* use real example for service page

* add relationship indicator on location page

* add header tags to topic in mayflower

* add content eyebrow above illustrated header on guide page

* add theme file for content eyebrow

* add a hideBorder option

* add hideBorder to services

* add hideBorder to services

* cleanup new scss selector

* DP-4297 Allow footnotes to be plain text or linked (#541)

* Adds conditional logic around footnote anchor.
* Changlog
* Add documentation, remove js hook, and reformat footnote option

* git cherry-pick 35acb7a2

* Fix typo to 'brewing' (#549)

* Release 5.6 - Event Template - reverting changes to twig blocks.

* Fix typo to 'brewing' (#549)

* Update release notes

* Bump version on home page

* Fix typo in release notes.

* Test remove default assetsPath to enable prod deploy to /assets

* Fix deploy script to allow CNAME with no assetPath to default to /assets

* Update release notes

* Update homepage version

* refs DP-4881: show subtitle on press release page (#556)

* DP-5175 create more links for service + service detail page components (#551)

* Make action finder > see all w/ no background match component body

Based on design updates for the component by Christine B.

* Add more link option to form downloads organism

* Add more link option to link list organism

* Add more links to service and service detail page components

* Add "more" link to form downloads and link list organisms

* Update press-release~with-image.json (#560)

* Add period after 'new one' to complete sentence. (#561)

I have added a period at the end of this sentence: "You may qualify for temporary income to support you while you look for a new one."

* Update event.json (#562)

Update time from 8:00 a.m. - 10:00 a.m. to "8 a.m. - 10 a.m." to adhere to mass.gov style guide.

* Updated time to adhere to style guide (#563)

Changed  time from "time": "10:00 a.m. - 11:00 a.m.", to "time: 10 a.m. - 11:00 a.m."

* Master 5.6.1 to Dev (#557)

* DP-3527/DP-3528 - Unused Patterns (#455)

* DP-3519 - Image Promos - adding optional title

* DP-3519 - Location - new Content type.

* DP-3519 - Location Pages - updated to use location template

* DP-3519 - removing breadcrumbs

* DP-3519 - Removing wait time widget

* DP-3519 - Renaming pageContent to mainContent

* DP-3519 - Location Content - adding key actions and contact list

* DP-3527 - Quick Actions - removed

* DP-3527 - Sidebar Contact - removed

* DP-3527 - Sidebar Promo - removed

* DP-3527 - Sidebar Widget - removed

* DP-3527 - Wait Time - removed

* DP-3527 - Header Contact - removed

* DP-3527 - Action Details - removed

* DP-3527 - Action Section - removed

* DP-3527 - Figure - fixing image width

* DP-3527 - Action Event - removed

* DP-3528 - Action Gallery - archived

* DP-3528 - Action Cards - archived

* DP-3528 - Blog Feed - archived

* DP-3528 - Banner Carousel - archived

* DP-3528 - Change Log - archived

* DP-3528 - Feedback Form - archived

* DP-3528 - Test Feed - archived

* DP-3528 - Top Actions - archived

* DP-3528 - Collage Header - archived

* DP-3527 - Image Gallery - removed

* DP-3527 - Related Action - removed

* DP-3528 - State Util - removed

* Bump release to 6.0

* bad merge

* ignoring url config file for Release 6.0

* Removing disco mode from Pattern Lab.

* Switch Mayflower over to the Drupal Pattern Lab fork (#488)

* Switch Pattern Lab config to point to the Drupal Pattern Lab fork -- includes multiple PL bug fixes including the fix for the Lineages functionality being broken when using Twig namespaced paths.

* Reverting a few PL config paramaters that don't necessarily have to get updated with the newer version

* Fixing whitespace issues

* Fixing missed spaces vs tabs instance in config

* DP-4046 - Hosting from a Subfolder (#503)

* DP-4046 - Global Data - splitting into seperate files and creating url obj

* DP-4046 - Image - code clean up

* DP-4046 - fixing path variables to use ../../assets instead of /assets

* Pagination - preventing the loading of templates on pages without pagination

* DP-4046 - Default domain changed to localhost:3000

* DP-4046 - Site Logo - updating the href value

* DP-4046 - Adding Base tag.

* removing env.js file

* DP-4046 - Template JS var - renamed from themePath to templatePath

* Revert "DP-4046 - Template JS var - renamed from themePath to templatePath"

This reverts commit f21e7163c01841fa174b22289333dce09ad34262.

* DP-4046 - themePath documentation

* DP-4046 - Env.js - removing script to include file

* DP-4046 - Styleguide - relative paths for assets

* DP-4046 - Removing base tag.

* Subfolders - changing default domain url to be ""

* Trigger Browser Sync reload after Pattern Lab build (#506)

* Adding minor delay to browsersync

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4053 create + document manual build + deploy process (#530)

* Add shell script to deploy PL build to gh-pages branch of given repo

* Update readme with deploy, contrib, versions, license info

* Create contributing documentation

* Create deploy documentation

* Create PR template

* Create issue template

* Move environment setup and demo install instructions to own docs

* Link to mayflower artifacts docs from readme (vs duplicating content)

* Workaround to address unexpected Pattern Lab Psuedo-Pattern Data Inheritance (#519)

* Reverting Pattern Lab psuedo-pattern rules to use original merge function vs array_replace_recursive -- temporary workaround to address unexpected behavior from https://github.com/drupal-pattern-lab/patternlab-php-core/issues/12

* Adding composer patch library to automatically apply array_merge patch if/when upstream PL updates should occur

* Adding composer patch plugin to autoloader

* DP-4176 Service page documentation (#521)

* Add shell script to deploy PL build to gh-pages branch of given repo

* Make deploy script executable

* Use bash shebang in deploy script

* Fix conditional logic

* Write git output to screen

* Fix conditional logic check for false

* print variable name in log

* update order of args

* Fix conditional logic boolean false

* fix variable assignment, remove spaces

* echo errors in red, success in green

* fix validation of target environment

* Update deploy script argument validation

* Validate git push during deploy

* Exit deploy script on failed build

* Update docs

* Fix syntax error.

* Create a function for cleanup

* Fix target URL

* Create function for success / error logging

* Update docs

* Ensure that patterns are blown away before built

* Remove exit on error log

* Fix string comparison in log function

* Add final error message to deploy script

* Make wrong target remote repo message more helpful

* Create CNAME for staging (test)

* Test confirm functionality

* Create CNAME for stage / prod

* Add logic for final success message non/prod

* Update readme with deploy, contrib, versions, license info

See template link under readme > acknowledgements

* Create contributing documentation

* Create deploy documentation

* Fix readme link typo

* Fix link to contributing.md

* Update github pages settings docs

* Update Contributing md with Mayflower, PR tips.

* Create PR template

* Create issue template

* Fix typo and make contributing language more friendly

* Update steps to browse in readme.

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4176 - Comp Heading - changing id value

* DP-4178 / DP-4177 How To page (#523)

* Add shell script to deploy PL build to gh-pages branch of given repo

* Make deploy script executable

* Use bash shebang in deploy script

* Fix conditional logic

* Write git output to screen

* Fix conditional logic check for false

* print variable name in log

* update order of args

* Fix conditional logic boolean false

* fix variable assignment, remove spaces

* echo errors in red, success in green

* fix validation of target environment

* Update deploy script argument validation

* Validate git push during deploy

* Exit deploy script on failed build

* Update docs

* Fix syntax error.

* Create a function for cleanup

* Fix target URL

* Create function for success / error logging

* Update docs

* Ensure that patterns are blown away before built

* Remove exit on error log

* Fix string comparison in log function

* Add final error message to deploy script

* Make wrong target remote repo message more helpful

* Create CNAME for staging (test)

* Test confirm functionality

* Create CNAME for stage / prod

* Add logic for final success message non/prod

* Update readme with deploy, contrib, versions, license info

See template link under readme > acknowledgements

* Create contributing documentation

* Create deploy documentation

* Fix readme link typo

* Fix link to contributing.md

* Update github pages settings docs

* Update Contributing md with Mayflower, PR tips.

* Create PR template

* Create issue template

* Fix typo and make contributing language more friendly

* Update steps to browse in readme.

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4178 - HowTo / Details - documentation

* DP-4178 - Rich Text - typo in documentation

* DP-4178 - Page Header - documentation

* DP-4178 - Header Tags - documenation

* DP-4178 - Publish State - documentation

* DP-4178 - Divider - documentation

* DP-4178 - Contact List - updated documentation

* DP-4178 - Doc Template - slight tweak

* DP-4178 - Contact Us - documentation

* DP-4178 - Contact Group - documentation

* DP-4178 - Contact Group - removing structured content

* DP-4178  - Colored Heading - Documentation

* DP-4178 - Sticky Nav - Documentation

* DP-4178 - Tabular Data - documentation

* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4178 - Details template - doc updates

* DP-4178 - Page Header - doc updates

* DP-4178 - Contact Us - updating docs

* DP-4177 - removing un-used page header variant

* DP-4178 - Contact Group - updated docs

* DP-4178 - Contact Us - Changing description

* DP-4178 - Colored Heading - updated docs and examples

* DP-4178 - Column Heading - updated docs

* DP-4178 - Column Heading - updated docs

* Reverting DP-3527 and 3528 due to breaking changes

* DP-4178 / DP-4177 Guide Page (#524)

* Fix conditional logic boolean false

* fix variable assignment, remove spaces

* echo errors in red, success in green

* fix validation of target environment

* Update deploy script argument validation

* Validate git push during deploy

* Exit deploy script on failed build

* Update docs

* Fix syntax error.

* Create a function for cleanup

* Fix target URL

* Create function for success / error logging

* Update docs

* Ensure that patterns are blown away before built

* Remove exit on error log

* Fix string comparison in log function

* Add final error message to deploy script

* Make wrong target remote repo message more helpful

* Create CNAME for staging (test)

* Test confirm functionality

* Create CNAME for stage / prod

* Add logic for final success message non/prod

* Update readme with deploy, contrib, versions, license info

See template link under readme > acknowledgements

* Create contributing documentation

* Create deploy documentation

* Fix readme link typo

* Fix link to contributing.md

* Update github pages settings docs

* Update Contributing md with Mayflower, PR tips.

* Create PR template

* Create issue template

* Fix typo and make contributing language more friendly

* Update steps to browse in readme.

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4178 - HowTo / Details - documentation

* DP-4178 - Rich Text - typo in documentation

* DP-4178 - Page Header - documentation

* DP-4178 - Header Tags - documenation

* DP-4178 - Publish State - documentation

* DP-4178 - Divider - documentation

* DP-4178 - Contact List - updated documentation

* DP-4178 - Doc Template - slight tweak

* DP-4178 - Contact Us - documentation

* DP-4178 - Contact Group - documentation

* DP-4178 - Contact Group - removing structured content

* DP-4178  - Colored Heading - Documentation

* DP-4178 - Sticky Nav - Documentation

* DP-4178 - Tabular Data - documentation

* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Stacked Row - documentation

* DP-4187 - Guide - Documentation

* DP-4178 - Emergency Header - documentation

* DP-4177 - Emergency Header - switching divs to spans

* DP-4178 - Emergency Alerts - documentation

* 4178 - Emergency Header - documentation 2

* DP-4178 - Jump Links - documentation

* DP-4177 - Jump Links - Adding missing "info" variable to links

* DP-4178 - Split Columns - fixing indentation

* DP-4178 - Stacked Row Section - documentation

* DP-4178 - Illustrated Header - documentation

* DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links

* DP-4178 - Suggested Pages - documentation

* DP-4178 - Callout Stats - documentation

* DP-4177 - Guide Page - moving callout stat outside of Rich Text.

* DP-4178 - Callout Alert - documentation

* DP-4177 - Callout Alert - removed unused variables

* DP-4178 - Callout Time - documentation

* DP-4178 - Button Alert - documentation

* DP-4178 - Emergency Alert - documentation

* DP-4178 - Emergency Alerts - updating documentation

* DP-4178 - Link - documentation

* DP-4177 - Link - correcting variables to match best practice

* DP-4177 - Link - forgot to save a change

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Template - updated docs

* DP-4176 - Action Finder - updated docs

* DP-4176 - Download Link - removing property

* DP-4176 - Callout Link - Better descriptive text

* DP-4176 - Video - updated documentation

* DP-4176 - Decorative Link - updated docs

* DP-4176 - Mapped Locations - adding more useage guidelines

* DP-4176 - Button - updated docs

* DP-4176 - Table - updated docs

* DP-4178 - Details template - doc updates

* DP-4178 - Page Header - doc updates

* DP-4178 - Contact Us - updating docs

* DP-4177 - removing un-used page header variant

* DP-4178 - Contact Group - updated docs

* DP-4178 - Contact Us - Changing description

* DP-4178 - Colored Heading - updated docs and examples

* DP-4178 - Column Heading - updated docs

* DP-4178 - Column Heading - updated docs

* DP-4178 - Guide page - adding back to top button

* DP-4178 - Stack row sections - updated docs

* DP-4178 - Stacked row section - updated docs

* DP-4178 - Emergency Alerts - updated docs

* DP-4177 - Illustrated Header - renaming bgTitle to bgInfo

* DP-4178 - Suggested Pages - updated docs

* DP-4178 - doc templates - updated variant to use code block

* Remove phing deploy step that edits env.js asset paths for drupal (#544)

* DP-4181 Document the contribution process for issues, feature requests, PRs (#532)

* Add business and more specific contribution docs

Borrowed heavily from bootstrap's contrib docs

* Make build issue label more general: 'gulp' -> 'build'

* Remove browser bug report section

* Rename setting up your environment -> machine setup in contrib docs

* Update contrib docs based on internal review

* DP-4178 Location page (#527)

* Update readme browse Mayflower steps

* Fix readme typo.

* Add deployment steps to contributing.md

* Fix typo, styling of deploy docs.

* Add PHP version to readme.

* Update built with pattern lab language in readme

* Update mayflower artifacts text in readme.

* Add git commit context to contributing docs

* Format readme

* Describe project file structure in contributing.md

* Format contributing.md

* Clarify github pull request buttons in contributing md

* Remove acknowledgements from contributing TOC

* Format prerequisite in deploy docs

* Link to gulp readme from deploy docs

* Log output when production deploy aborted

* Use main repo as example in deploy script comments

* Make cname a parameter for deploy script, required for prod only

* Move CONTRIBUTING.md into .github directory

* Remove written descriptions of Github's UI, replace with link to docs

* Make CONTRIBUTING.md branching language more consistent with git

* Move pattern lab docs to first step in CONTRIBUTING > working with PL

* Remove vague language in CONTRIBUTING.md

* Clarify Mayflower Artifacts in readme

* Make CONTRIBUTING.md > keeping your fork in sync explanation more clear.

* Move environment setup and demo install instructions to own docs

* Group steps in CONTRIBUTING.md

* Fix link to CONTRIBUTING.md after move to /.github

* Simplify readme install / contribute / deploy sections

* Remove link to personal fork, but keep repo name, in deploy docs

* Fix mayflower-artifacts url in readme

* Update the deploy success message to use cname if present

* Fix cname conditional logic in deploy script.

* Use [-c] rather tha [-cname] as parameter for gh pages deploy script

* Fix typo in success message for cname

* Fix deploy script config for url.domain/assetsPath when cname passed

* Improve script logging: hide lengthy status/success, color + tag logs.

* Fix typos.

* Fix typo in docs for [-t] argument.

* Move log prior to command for creating cname in deploy script.

* Avoid having to escape / in deploy script > assetsPath var

Use ! as delimeter, see: https://coderwall.com/p/khdkuw/delimiters-in-sed-substitution

* Allow assetsPath to be passed with cname flag

* Accept [-a] argument in deploy script

* Fix deploy script [-t] flag to be target remote repo *owner*

This seems to have reverted to a prior state somehow.

* Remove extra " from assetsPath in url.json

* Update [-c] validation log to reflect [-c] vs [-cname]

* Add developer deploy docs note about cname and assetPaths flags.

* Uncomment script.  So. It. Does. Things.  (silly)

* Link to mayflower artifacts docs from readme (vs duplicating content)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* Make all intra-docs links relative

* Fix deploy docs links

* Update clone steps to be more clear

* Ensure branch is clean after deploy, fix typos

* Add patternlab task to deafult gulp ( = always generate patterns)

* Try gulp prod in deploy script

* Ensure public directory gets cleaned out prior to generation

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Service Page and Template - documentation

* DP-4176 - Page Banner - Documentation

* DP-4048 Establish format for pattern docs (#515)

* DP-4048 - Annotations -  updating to look for JS classes used.

* DP-4048 - Annotations - The extra html added breaks the styles

* Dp-4048 - Extra Js - removing unused JS files

* DP-4048 - updating Styling of Pattern Info panel

* DP-4048 - Contact List - Documentation

* DP-4048 - Image

* DP-4048 - Pattern Documentation - Remving Usage Guidelines.

* DP-4048 - additional tweaks to md files

* DP-4048 - Lineage styling

* DP-4048 - Removing title yaml.

* DP-4048 - Contact List - removed 'title' field from docs

* DP-4176 - Image - documentation

* DP-4176 - Video - documentation

* DP-4176 - Documentation template

* DP-4176 - Key Actions - Documentation

* DP-4176 - Decorative Link - documentation

* DP-4176 - Key Actions - adding contained type

* DP-4167 - Callout Link - documentation

* DP-4176 - Illustrated link - documentation

* DP-4176 - Variant Documentation template

* DP-4176 - Contact List - Updated variant documentation

* DP-4176 - Sidebar Heading - documentation

* DP-4176 - Comp Heading - documentation

* DP-4176 - Variants - making link relative './'

* DP-4176 - Icon Links - documentation

* DP-4176 - Link List - documentation

* DP-4176 - Link List - documention of Right Rail usage

* DP-4176 - Action Finder - documentation

* DP-4176 - Mapped Locations - documentation

* DP-4176 - Variant template updated

* DP-4176 - Mapped Locations - Removed title from contained version

* DP-4176 - Callout Link External - removed variant

* Mapped Locations - Fixing bug with assigning the colored background

* DP-4176 - Split Columns - documentation

* DP-4176 - Rich Text - documentation

* DP-4176 - Download Link - documentation

* DP-4176 - Forms Downloads - documentation

* DP-4176 - Utility Panel - documentation

* DP-4176 - Utility Nav - documentation

* DP-4176 - Header - documentation

* DP-4176 - Button Search - documentation

* DP-4176 - Site Logo - documentation

* DP-4176 - Header Search - documentation

* DP-4176 - Main Nav - documentation

* DP-4176 - Button - documentation

* DP-4176 - Button - adding link option and correcting styling classes

* DP-4176 - Button Link - marking it as depreciated

* DP-4176 - Floating Action - updated to use just the button atom

* DP-4176 - Floating Action - documentation

* DP-4176 - Buttons - Updates to SCSS selectors

* DP-4176 - Floating Action - correcting styling classes

* DP-4176 - Footer - documentation

* DP-4176 - Heading / Util Panel - marking as in Progress so we can update

* DP-4176 - Button - re-adding support for the 'theme' variable

* DP-4176 - Social Links - documentation

* DP-4176 - Footer Links - documentation

* DP-4176 - Buttons - leaving old styles for backward compatibilty

* DP-4167 - Callout Link - moving the info variable to a title attribute

* DP-4176 - Buttons - incorrect indentation

* DP-4167 - Rich Text - updating to include all accepted patterns

* DP-4176 - Rich text sub patterns - documentation

* DP-4167 - figure - documentation and modified to use --left/--right classes

* DP-4167 - Table - documentation

* DP-4080 - Versioning Documentation (#504)

* DP-4080 - Versioning - first draft

* Dp-4080 - let's try that again after saving the file.

* DP-4080 - Versioning - updating Major version text

* Second Draft

* DP-4080 - Versions - Third draft with examples versions

* DP-4080 - Version - reducing importance of Terms

* DP-4080 - Version - Edits after reviewing.

* DP-4080 - Versions - missed a few

* DP-4080 - Versions - Weird copy and paste issue.

* DP-4080 - Tweak to Minor version description

* DP-4080 - Version Docs - fourth version

* DP-4080 - Version doc - version 5

* DP-4178 - HowTo / Details - documentation

* DP-4178 - Rich Text - typo in documentation

* DP-4178 - Page Header - documentation

* DP-4178 - Header Tags - documenation

* DP-4178 - Publish State - documentation

* DP-4178 - Divider - documentation

* DP-4178 - Contact List - updated documentation

* DP-4178 - Doc Template - slight tweak

* DP-4178 - Contact Us - documentation

* DP-4178 - Contact Group - documentation

* DP-4178 - Contact Group - removing structured content

* DP-4178  - Colored Heading - Documentation

* DP-4178 - Sticky Nav - Documentation

* DP-4178 - Tabular Data - documentation

* DP-4178 - Action Step - documentation

* DP-4178 - Steps Ordered - documentation

* DP-4178 - Steps Unordered - documentation

* DP-4178 - Stacked Row - documentation

* DP-4187 - Guide - Documentation

* DP-4178 - Emergency Header - documentation

* DP-4177 - Emergency Header - switching divs to spans

* DP-4178 - Emergency Alerts - documentation

* 4178 - Emergency Header - documentation 2

* DP-4178 - Jump Links - documentation

* DP-4177 - Jump Links - Adding missing "info" variable to links

* DP-4178 - Split Columns - fixing indentation

* DP-4178 - Stacked Row Section - documentation

* DP-4178 - Illustrated Header - documentation

* DP-4177 - Suggested Pages - Fixing variables for decorative and illustrated links

* DP-4178 - Suggested Pages - documentation

* DP-4178 - Callout Stats - documentation

* DP-4177 - Guide Page - moving callout stat outside of Rich Text.

* DP-4178 - Callout Alert - documentation

* DP-4177 - Callout Alert - removed unused variables

* DP-4178 - Callout Time - documentation

* DP-4178 - Button Alert - documentation

* DP-4178 - Emergency Alert - documentation

* DP-4178 - Emergency Alerts - updating documentation

* DP-4178 - Link - documentation

* DP-4177 - Link - correcting variables to match best practice

* DP-4177 - Link - forgot to save a change

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4178 - Column Heading - documentation

* DP-4177 - Column Heading - cleaning up code

* DP-4178 - Location Template - documentation

* DP-4178 - Location Pages - Documentation

* DP-4178 - Header Alert - documentation

* DP-4177 - Header Alert - adding "info" variable for decorative link

* DP-4178 - Page Header - location variant documentation

* DP-4178 - Location Banner - documentation

* DP-4177 - Location Banner - correcting variable name

* DP-4178 - Google Map - documentation

* DP-4178 - Image Promos - documentation

* DP-4178 - Image Promo - documentation

* DP-4177 - Image Promo - switching 'type' for 'info' for the title link

* DP-4178 - Image Promos - documentation

* DP-4177 - Link - still fixing logic to switch from string to boolean

* DP-4178 - Event Teaser - documentation

* DP-4178 - Event Listing - documentation

* DP-4178 - Location Icons - documentation

* DP-4176 - Callout Link - making CSS backward compatible

* DP-4176 - Floating Action - making code backward compatible

* DP-4177 - Button - fixed logic to use old "theme" variable for color.

* DP-4178 - Button - fixing broken links

* DP-4176 - Button - switching color back to theme include values

* DP-4176 - Comp Heading - correcting id value

* DP-4176 - Decorative Link - removing schema.org and using title

* DP-4176 - Linked List - Update docs

* DP-4176 - Mapped Locations - updated docs

* DP-4176 - Page Banner - Updated Docs

* DP-4176 - Services Templa…
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants