Skip to content

Commit 08b2ae5

Browse files
committed
Stores are called pages nowadays.
1 parent 39a71c0 commit 08b2ae5

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

v8/bbcode/conf.py.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ COMPILERS["bbcode"] = ('.bb',)
33

44
# Add bbcode files to your POSTS, PAGES
55
POSTS = POSTS + (("posts/*.bb", "posts", "post.tmpl"),)
6-
PAGES = PAGES + (("stories/*.bb", "posts", "post.tmpl"),)
6+
PAGES = PAGES + (("pages/*.bb", "pages", "page.tmpl"),)

v8/commonmark/conf.py.sample

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ POSTS = (
1212
("posts/*.markdown", "posts", "post.tmpl"),
1313
)
1414
PAGES = (
15-
("stories/*.md", "stories", "story.tmpl"),
16-
("stories/*.mdown", "stories", "story.tmpl"),
17-
("stories/*.markdown", "stories", "story.tmpl"),
15+
("pages/*.md", "pages", "page.tmpl"),
16+
("pages/*.mdown", "pages", "page.tmpl"),
17+
("pages/*.markdown", "pages", "page.tmpl"),
1818
)

v8/contentful/conf.py.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ POSTS = (
77
)
88
PAGES = (
99
...
10-
("contentful/pages/*.md", "stories", "story.tmpl"),
10+
("contentful/pages/*.md", "pages", "page.tmpl"),
1111
)

v8/datocms/conf.py.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ POSTS = (
77
)
88
PAGES = (
99
...
10-
("dato/pages/*.md", "stories", "story.tmpl"),
10+
("dato/pages/*.md", "pages", "page.tmpl"),
1111
)

v8/kramdown/conf.py.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ COMPILERS["kramdown"] = ('.kd',)
44

55
# Add kramdown files to your POSTS, PAGES
66
POSTS = POSTS + (("posts/*.kd", "posts", "post.tmpl"),)
7-
PAGES = PAGES + (("stories/*.kd", "posts", "post.tmpl"),)
7+
PAGES = PAGES + (("pages/*.kd", "pages", "page.tmpl"),)

v8/markmin/conf.py.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ COMPILERS["markmin"] = ('.mm',)
33

44
# Add markmin files to your POSTS, PAGES
55
POSTS = POSTS + (("posts/*.mm", "posts", "post.tmpl"),)
6-
PAGES = PAGES + (("stories/*.mm", "posts", "post.tmpl"),)
6+
PAGES = PAGES + (("pages/*.mm", "pages", "page.tmpl"),)

v8/misaka/conf.py.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ COMPILERS["misaka"] = ('.md',)
33

44
# Add markdown files to your POSTS, PAGES
55
POSTS = POSTS + (("posts/*.md", "posts", "post.tmpl"),)
6-
PAGES = PAGES + (("stories/*.md", "posts", "post.tmpl"),)
6+
PAGES = PAGES + (("pages/*.md", "pages", "page.tmpl"),)

v8/mistune/conf.py.sample

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ POSTS = (
1212
("posts/*.markdown", "posts", "post.tmpl"),
1313
)
1414
PAGES = (
15-
("stories/*.md", "stories", "story.tmpl"),
16-
("stories/*.mdown", "stories", "story.tmpl"),
17-
("stories/*.markdown", "stories", "story.tmpl"),
15+
("pages/*.md", "pages", "page.tmpl"),
16+
("pages/*.mdown", "pages", "page.tmpl"),
17+
("pages/*.markdown", "pages", "page.tmpl"),
1818
)

v8/orgmode/conf.py.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ COMPILERS["orgmode"] = ('.org',)
55

66
# Add org files to your POSTS, PAGES
77
POSTS = POSTS + (("posts/*.org", "posts", "post.tmpl"),)
8-
PAGES = PAGES + (("stories/*.org", "stories", "story.tmpl"),)
8+
PAGES = PAGES + (("pages/*.org", "pages", "page.tmpl"),)

v8/projectpages/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The plugin generates two files in each language:
4444
page with a slider and list of projects, from template `projects.tmpl`
4545
* projects/projects.json — a JSON file, dict of `{slug: all meta data}`
4646

47-
Project subpage generation is handled by Nikola’s built-in stories framework.
47+
Project subpage generation is handled by Nikola’s built-in pages framework.
4848

4949
Meta fields
5050
-----------

0 commit comments

Comments
 (0)