├── pattern-lab ├── config │ ├── listeners.json │ ├── patternengines.json │ ├── .gitkeep │ └── config.yml ├── source │ ├── _annotations │ │ └── annotations.js │ ├── _layouts │ │ └── .gitkeep │ ├── _macros │ │ └── .gitkeep │ ├── _twig-components │ │ ├── tags │ │ │ └── .gitkeep │ │ ├── tests │ │ │ └── .gitkeep │ │ ├── filters │ │ │ └── .gitkeep │ │ └── functions │ │ │ └── .gitkeep │ ├── _patterns │ │ └── 01-atoms │ │ │ ├── 01-intro │ │ │ └── 00-intro.twig │ │ │ └── 02-buttons │ │ │ ├── button-default.twig │ │ │ ├── button-primary.twig │ │ │ ├── _button.twig │ │ │ └── _button.scss │ ├── _data │ │ └── data.json │ ├── _meta │ │ ├── _01-foot.twig │ │ └── _00-head.twig │ └── pattern-scaffolding.css ├── core │ ├── server │ │ └── router.php │ ├── console │ └── src │ │ └── PatternLab │ │ └── Installer.php ├── composer.json └── composer.lock ├── scss └── simple_theme.scss ├── .gitignore ├── simple_theme.libraries.yml ├── .editorconfig ├── simple_theme.info.yml ├── templates └── some-random-drupal-template-file.html.twig ├── package.json ├── readme.md └── gulpfile.js /pattern-lab/config/listeners.json: -------------------------------------------------------------------------------- 1 | { "listeners": [ ] } -------------------------------------------------------------------------------- /pattern-lab/source/_annotations/annotations.js: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /pattern-lab/source/_layouts/.gitkeep: -------------------------------------------------------------------------------- 1 | keeping this directory -------------------------------------------------------------------------------- /pattern-lab/source/_macros/.gitkeep: -------------------------------------------------------------------------------- 1 | keeping this directory -------------------------------------------------------------------------------- /pattern-lab/source/_twig-components/tags/.gitkeep: -------------------------------------------------------------------------------- 1 | keeping this directory -------------------------------------------------------------------------------- /pattern-lab/source/_twig-components/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | keeping this directory -------------------------------------------------------------------------------- /scss/simple_theme.scss: -------------------------------------------------------------------------------- 1 | @import "../pattern-lab/source/**/*.scss"; 2 | -------------------------------------------------------------------------------- /pattern-lab/source/_twig-components/filters/.gitkeep: -------------------------------------------------------------------------------- 1 | keeping this directory -------------------------------------------------------------------------------- /pattern-lab/source/_twig-components/functions/.gitkeep: -------------------------------------------------------------------------------- 1 | keeping this directory -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | pattern-lab/vendor 3 | pattern-lab/public 4 | dist 5 | -------------------------------------------------------------------------------- /pattern-lab/source/_patterns/01-atoms/01-intro/00-intro.twig: -------------------------------------------------------------------------------- 1 |