RELEASE TAG
o----------------------------o-----------------o------------o------> MASTER
\ / \ \----------/ HOTFIX
\ / \ \
\----------------------/ \--------------------o-----o------> DEVELOP
\ /
\----------------/ FEATURE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*eslint no-useless-escape: 0 */ | |
import React from "react" | |
import Helmet from "react-helmet" | |
import ReactHtmlParser from "react-html-parser" | |
import { graphql } from "gatsby" | |
const SEO = props => { | |
const { data } = props | |
const splitJsonLdStringIntoArray = data.metaJsonLdContainer | |
.replace(/\<\/script\>/g, "") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
api: | |
volumes: | |
- "nfsmount:${CONTAINER_DIR}" | |
volumes: | |
nfsmount: | |
driver: local | |
driver_opts: |
Recommendations of unit types per media type:
Media | Recommended | Occasional use | Infrequent use | Not recommended |
---|---|---|---|---|
Screen | em, rem, % | px | ch, ex, vw, vh, vmin, vmax | cm, mm, in, pt, pc |
em, rem, % | cm, mm, in, pt, pc | ch, ex | px, vw, vh, vmin, vmax |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* DecoratorAbstract allows the creation of flexible nested decorators. All decorators must extend from DecoratorAbstract. | |
* Decorators can be stacked. They can also have methods that overwrite each other. | |
* Decorators can omit methods that parent decorators have defined and/or child decorators have defined. | |
* Methods will cascade to the original child object. | |
* Properties will read and set from the original child object except when your instance has the property defined. | |
*/ | |
abstract class DecoratorAbstract{ |