From bf072a654317be6b4ef63923b83a54edf664fef5 Mon Sep 17 00:00:00 2001 From: Dave Olsen Date: Tue, 18 Mar 2014 11:05:20 -0400 Subject: [PATCH] updating the README to point at patternlab.io --- README.md | 69 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 35 insertions(+), 34 deletions(-) diff --git a/README.md b/README.md index 20963ea..cf0e6d1 100644 --- a/README.md +++ b/README.md @@ -4,54 +4,55 @@ The PHP version of Pattern Lab is, at its core, a static site generator. It comb ## Demo -You can play with a demo of the front-end of Pattern Lab at [demo.pattern-lab.info](http://demo.pattern-lab.info). +You can play with a demo of the front-end of Pattern Lab at [demo.patternlab.io](http://demo.patternlab.io). ## Getting Started -* [Requirements](http://pattern-lab.info/docs/requirements.html) -* [Installing the PHP Version of Pattern Lab](http://pattern-lab.info/docs/installation.html) -* [Upgrading the PHP Version of Pattern Lab](http://pattern-lab.info/docs/upgrading.html) -* [Generating the Pattern Lab Website for the First Time](http://pattern-lab.info/docs/first-run.html) -* [Editing the Pattern Lab Website Source Files](http://pattern-lab.info/docs/editing-source-files.html) -* [Using the Command-line Options](http://pattern-lab.info/docs/command-line.html) -* [Command Prompt on Windows](http://pattern-lab.info/docs/command-prompt-windows.html) +* [Requirements](http://patternlab.io/docs/requirements.html) +* [Installing the PHP Version of Pattern Lab](http://patternlab.io/docs/installation.html) +* [Upgrading the PHP Version of Pattern Lab](http://patternlab.io/docs/upgrading.html) +* [Generating the Pattern Lab Website for the First Time](http://patternlab.io/docs/first-run.html) +* [Editing the Pattern Lab Website Source Files](http://patternlab.io/docs/editing-source-files.html) +* [Using the Command-line Options](http://patternlab.io/docs/command-line.html) +* [Command Prompt on Windows](http://patternlab.io/docs/command-prompt-windows.html) ## Working with Patterns Patterns are the core element of Pattern Lab. Understanding how they work is the key to getting the most out of the system. Patterns use [Mustache](http://mustache.github.io/) so please read [Mustache's docs](http://mustache.github.io/mustache.5.html) as well. -* [How Patterns Are Organized](http://pattern-lab.info/docs/pattern-organization.html) -* [Adding New Patterns](http://pattern-lab.info/docs/pattern-add-new.html) -* [Reorganizing Patterns](http://pattern-lab.info/docs/pattern-reorganizing.html) -* [Including One Pattern Within Another via Partials](http://pattern-lab.info/docs/pattern-including.html) -* [Managing Assets for a Pattern: JavaScript, images, CSS, etc.](http://pattern-lab.info/docs/pattern-managing-assets.html) -* [Modifying the Pattern Header and Footer](http://pattern-lab.info/docs/pattern-header-footer.html) -* [Using Pseudo-Patterns](http://pattern-lab.info/docs/pattern-pseudo-patterns.html) -* [Using Pattern Parameters](http://pattern-lab.info/docs/pattern-parameters.html) -* [Using Pattern State](http://pattern-lab.info/docs/pattern-states.html) -* ["Hiding" Patterns in the Navigation](http://pattern-lab.info/docs/pattern-hiding.html) -* [Adding Annotations](http://pattern-lab.info/docs/pattern-adding-annotations.html) -* [Viewing Patterns on a Mobile Device](http://pattern-lab.info/docs/pattern-mobile-view.html) +* [How Patterns Are Organized](http://patternlab.io/docs/pattern-organization.html) +* [Adding New Patterns](http://patternlab.io/docs/pattern-add-new.html) +* [Reorganizing Patterns](http://patternlab.io/docs/pattern-reorganizing.html) +* [Including One Pattern Within Another via Partials](http://patternlab.io/docs/pattern-including.html) +* [Managing Assets for a Pattern: JavaScript, images, CSS, etc.](http://patternlab.io/docs/pattern-managing-assets.html) +* [Modifying the Pattern Header and Footer](http://patternlab.io/docs/pattern-header-footer.html) +* [Using Pseudo-Patterns](http://patternlab.io/docs/pattern-pseudo-patterns.html) +* [Using Pattern Parameters](http://patternlab.io/docs/pattern-parameters.html) +* [Using Pattern State](http://patternlab.io/docs/pattern-states.html) +* ["Hiding" Patterns in the Navigation](http://patternlab.io/docs/pattern-hiding.html) +* [Adding Annotations](http://patternlab.io/docs/pattern-adding-annotations.html) +* [Viewing Patterns on a Mobile Device](http://patternlab.io/docs/pattern-mobile-view.html) ## Creating & Working With Dynamic Data for a Pattern -The PHP version of Pattern Lab utilizes Mustache as the template language for patterns. In addition to allowing for the [inclusion of one pattern within another](https://github.com/pattern-lab/patternlab-php/wiki/Including-One-Pattern-Within-Another) it also gives pattern developers the ability to include variables. This means that attributes like image sources can be centralized in one file for easy modification across one or more patterns. The PHP version of Pattern Lab uses a JSON file, `source/_data/data.json`, to centralize many of these attributes. +The PHP version of Pattern Lab utilizes Mustache as the template language for patterns. In addition to allowing for the [inclusion of one pattern within another](http://patternlab.io/docs/pattern-including.html) it also gives pattern developers the ability to include variables. This means that attributes like image sources can be centralized in one file for easy modification across one or more patterns. The PHP version of Pattern Lab uses a JSON file, `source/_data/data.json`, to centralize many of these attributes. -* [Introduction to JSON & Mustache Variables](http://pattern-lab.info/docs/data-json-mustache.html) -* [Overriding the Central `data.json` Values with Pattern-specific Values](http://pattern-lab.info/docs/data-pattern-specific.html) -* [Linking to Patterns with Pattern Lab's Default `link` Variable](http://pattern-lab.info/docs/data-link-variable.html) -* [Creating Lists with Pattern Lab's Default `listItems` Variable](http://pattern-lab.info/docs/data-listitems.html) +* [Introduction to JSON & Mustache Variables](http://patternlab.io/docs/data-json-mustache.html) +* [Overriding the Central `data.json` Values with Pattern-specific Values](http://patternlab.io/docs/data-pattern-specific.html) +* [Linking to Patterns with Pattern Lab's Default `link` Variable](http://patternlab.io/docs/data-link-variable.html) +* [Creating Lists with Pattern Lab's Default `listItems` Variable](http://patternlab.io/docs/data-listitems.html) ## Using Pattern Lab's Advanced Features By default, the Pattern Lab assets can be manually generated and the Pattern Lab site manually refreshed but who wants to waste time doing that? Here are some ways that Pattern Lab can make your development workflow a little smoother: -* [Watching for Changes and Auto-Regenerating Patterns](http://pattern-lab.info/docs/advanced-auto-regenerate.html) -* [Auto-Reloading the Browser Window When Changes Are Made](http://pattern-lab.info/docs/advanced-reload-browser.html) -* [Multi-browser & Multi-device Testing with Page Follow](http://pattern-lab.info/docs/advanced-page-follow.html) -* [Keyboard Shortcuts](http://pattern-lab.info/docs/advanced-keyboard-shortcuts.html) -* [Special Pattern Lab-specific Query String Variables ](http://pattern-lab.info/docs/pattern-linking.html) -* [Preventing the Cleaning of public/](http://pattern-lab.info/docs/advanced-clean-public.html) -* [Generating CSS](http://pattern-lab.info/docs/advanced-generating-css.html) -* [Modifying the Pattern Lab Nav](http://pattern-lab.info/docs/advanced-pattern-lab-nav.html) -* [Integration with Compass](http://pattern-lab.info/docs/advanced-integration-with-compass.html) +* [Watching for Changes and Auto-Regenerating Patterns](http://patternlab.io/docs/advanced-auto-regenerate.html) +* [Auto-Reloading the Browser Window When Changes Are Made](http://patternlab.io/docs/advanced-reload-browser.html) +* [Multi-browser & Multi-device Testing with Page Follow](http://patternlab.io/docs/advanced-page-follow.html) +* [Keyboard Shortcuts](http://patternlab.io/docs/advanced-keyboard-shortcuts.html) +* [Special Pattern Lab-specific Query String Variables ](http://patternlab.io/docs/pattern-linking.html) +* [Preventing the Cleaning of public/](http://patternlab.io/docs/advanced-clean-public.html) +* [Generating CSS](http://patternlab.io/docs/advanced-generating-css.html) +* [Modifying the Pattern Lab Nav](http://patternlab.io/docs/advanced-pattern-lab-nav.html) +* [Editing the config.ini Options](http://patternlab.io/docs/advanced-config-options.html) +* [Integration with Compass](http://patternlab.io/docs/advanced-integration-with-compass.html)