Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit bf072a6

Browse files
committed
updating the README to point at patternlab.io
1 parent fde72f8 commit bf072a6

File tree

1 file changed

+35
-34
lines changed

1 file changed

+35
-34
lines changed

README.md

Lines changed: 35 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -4,54 +4,55 @@ The PHP version of Pattern Lab is, at its core, a static site generator. It comb
44

55
## Demo
66

7-
You can play with a demo of the front-end of Pattern Lab at [demo.pattern-lab.info](http://demo.pattern-lab.info).
7+
You can play with a demo of the front-end of Pattern Lab at [demo.patternlab.io](http://demo.patternlab.io).
88

99
## Getting Started
1010

11-
* [Requirements](http://pattern-lab.info/docs/requirements.html)
12-
* [Installing the PHP Version of Pattern Lab](http://pattern-lab.info/docs/installation.html)
13-
* [Upgrading the PHP Version of Pattern Lab](http://pattern-lab.info/docs/upgrading.html)
14-
* [Generating the Pattern Lab Website for the First Time](http://pattern-lab.info/docs/first-run.html)
15-
* [Editing the Pattern Lab Website Source Files](http://pattern-lab.info/docs/editing-source-files.html)
16-
* [Using the Command-line Options](http://pattern-lab.info/docs/command-line.html)
17-
* [Command Prompt on Windows](http://pattern-lab.info/docs/command-prompt-windows.html)
11+
* [Requirements](http://patternlab.io/docs/requirements.html)
12+
* [Installing the PHP Version of Pattern Lab](http://patternlab.io/docs/installation.html)
13+
* [Upgrading the PHP Version of Pattern Lab](http://patternlab.io/docs/upgrading.html)
14+
* [Generating the Pattern Lab Website for the First Time](http://patternlab.io/docs/first-run.html)
15+
* [Editing the Pattern Lab Website Source Files](http://patternlab.io/docs/editing-source-files.html)
16+
* [Using the Command-line Options](http://patternlab.io/docs/command-line.html)
17+
* [Command Prompt on Windows](http://patternlab.io/docs/command-prompt-windows.html)
1818

1919
## Working with Patterns
2020

2121
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.
2222

23-
* [How Patterns Are Organized](http://pattern-lab.info/docs/pattern-organization.html)
24-
* [Adding New Patterns](http://pattern-lab.info/docs/pattern-add-new.html)
25-
* [Reorganizing Patterns](http://pattern-lab.info/docs/pattern-reorganizing.html)
26-
* [Including One Pattern Within Another via Partials](http://pattern-lab.info/docs/pattern-including.html)
27-
* [Managing Assets for a Pattern: JavaScript, images, CSS, etc.](http://pattern-lab.info/docs/pattern-managing-assets.html)
28-
* [Modifying the Pattern Header and Footer](http://pattern-lab.info/docs/pattern-header-footer.html)
29-
* [Using Pseudo-Patterns](http://pattern-lab.info/docs/pattern-pseudo-patterns.html)
30-
* [Using Pattern Parameters](http://pattern-lab.info/docs/pattern-parameters.html)
31-
* [Using Pattern State](http://pattern-lab.info/docs/pattern-states.html)
32-
* ["Hiding" Patterns in the Navigation](http://pattern-lab.info/docs/pattern-hiding.html)
33-
* [Adding Annotations](http://pattern-lab.info/docs/pattern-adding-annotations.html)
34-
* [Viewing Patterns on a Mobile Device](http://pattern-lab.info/docs/pattern-mobile-view.html)
23+
* [How Patterns Are Organized](http://patternlab.io/docs/pattern-organization.html)
24+
* [Adding New Patterns](http://patternlab.io/docs/pattern-add-new.html)
25+
* [Reorganizing Patterns](http://patternlab.io/docs/pattern-reorganizing.html)
26+
* [Including One Pattern Within Another via Partials](http://patternlab.io/docs/pattern-including.html)
27+
* [Managing Assets for a Pattern: JavaScript, images, CSS, etc.](http://patternlab.io/docs/pattern-managing-assets.html)
28+
* [Modifying the Pattern Header and Footer](http://patternlab.io/docs/pattern-header-footer.html)
29+
* [Using Pseudo-Patterns](http://patternlab.io/docs/pattern-pseudo-patterns.html)
30+
* [Using Pattern Parameters](http://patternlab.io/docs/pattern-parameters.html)
31+
* [Using Pattern State](http://patternlab.io/docs/pattern-states.html)
32+
* ["Hiding" Patterns in the Navigation](http://patternlab.io/docs/pattern-hiding.html)
33+
* [Adding Annotations](http://patternlab.io/docs/pattern-adding-annotations.html)
34+
* [Viewing Patterns on a Mobile Device](http://patternlab.io/docs/pattern-mobile-view.html)
3535

3636
## Creating & Working With Dynamic Data for a Pattern
3737

38-
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.
38+
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.
3939

40-
* [Introduction to JSON & Mustache Variables](http://pattern-lab.info/docs/data-json-mustache.html)
41-
* [Overriding the Central `data.json` Values with Pattern-specific Values](http://pattern-lab.info/docs/data-pattern-specific.html)
42-
* [Linking to Patterns with Pattern Lab's Default `link` Variable](http://pattern-lab.info/docs/data-link-variable.html)
43-
* [Creating Lists with Pattern Lab's Default `listItems` Variable](http://pattern-lab.info/docs/data-listitems.html)
40+
* [Introduction to JSON & Mustache Variables](http://patternlab.io/docs/data-json-mustache.html)
41+
* [Overriding the Central `data.json` Values with Pattern-specific Values](http://patternlab.io/docs/data-pattern-specific.html)
42+
* [Linking to Patterns with Pattern Lab's Default `link` Variable](http://patternlab.io/docs/data-link-variable.html)
43+
* [Creating Lists with Pattern Lab's Default `listItems` Variable](http://patternlab.io/docs/data-listitems.html)
4444

4545
## Using Pattern Lab's Advanced Features
4646

4747
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:
4848

49-
* [Watching for Changes and Auto-Regenerating Patterns](http://pattern-lab.info/docs/advanced-auto-regenerate.html)
50-
* [Auto-Reloading the Browser Window When Changes Are Made](http://pattern-lab.info/docs/advanced-reload-browser.html)
51-
* [Multi-browser & Multi-device Testing with Page Follow](http://pattern-lab.info/docs/advanced-page-follow.html)
52-
* [Keyboard Shortcuts](http://pattern-lab.info/docs/advanced-keyboard-shortcuts.html)
53-
* [Special Pattern Lab-specific Query String Variables ](http://pattern-lab.info/docs/pattern-linking.html)
54-
* [Preventing the Cleaning of public/](http://pattern-lab.info/docs/advanced-clean-public.html)
55-
* [Generating CSS](http://pattern-lab.info/docs/advanced-generating-css.html)
56-
* [Modifying the Pattern Lab Nav](http://pattern-lab.info/docs/advanced-pattern-lab-nav.html)
57-
* [Integration with Compass](http://pattern-lab.info/docs/advanced-integration-with-compass.html)
49+
* [Watching for Changes and Auto-Regenerating Patterns](http://patternlab.io/docs/advanced-auto-regenerate.html)
50+
* [Auto-Reloading the Browser Window When Changes Are Made](http://patternlab.io/docs/advanced-reload-browser.html)
51+
* [Multi-browser & Multi-device Testing with Page Follow](http://patternlab.io/docs/advanced-page-follow.html)
52+
* [Keyboard Shortcuts](http://patternlab.io/docs/advanced-keyboard-shortcuts.html)
53+
* [Special Pattern Lab-specific Query String Variables ](http://patternlab.io/docs/pattern-linking.html)
54+
* [Preventing the Cleaning of public/](http://patternlab.io/docs/advanced-clean-public.html)
55+
* [Generating CSS](http://patternlab.io/docs/advanced-generating-css.html)
56+
* [Modifying the Pattern Lab Nav](http://patternlab.io/docs/advanced-pattern-lab-nav.html)
57+
* [Editing the config.ini Options](http://patternlab.io/docs/advanced-config-options.html)
58+
* [Integration with Compass](http://patternlab.io/docs/advanced-integration-with-compass.html)

0 commit comments

Comments
 (0)