Skip to content

Commit b6e6527

Browse files
committed
Removes references to a specific apostrophe version
1 parent 225e273 commit b6e6527

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<h1>Apostrophe Blog</h1>
55
<p>
6-
<a aria-label="Apostrophe logo" href="https://v3.docs.apostrophecms.org">
6+
<a aria-label="Apostrophe logo" href="https://docs.apostrophecms.org">
77
<img src="https://img.shields.io/badge/MADE%20FOR%20ApostropheCMS-000000.svg?style=for-the-badge&logo=Apostrophe&labelColor=6516dd">
88
</a>
99
<a aria-label="Join the community on Discord" href="http://chat.apostrophecms.org">
@@ -15,7 +15,7 @@
1515
</p>
1616
</div>
1717

18-
This module bundle helps developers quickly add blog articles to Apostrophe 3 websites. It provides the blog post piece type (`@apostrophecms/blog`) as well as a special page type (`@apostrophecms/blog-page`) for editors to create a blog.
18+
This module bundle helps developers quickly add blog articles to ApostropheCMS websites. It provides the blog post piece type (`@apostrophecms/blog`) as well as a special page type (`@apostrophecms/blog-page`) for editors to create a blog.
1919

2020
## Installation
2121

@@ -84,9 +84,9 @@ The blog page module, `@apostrophecms/blog-page`, provides query filters to refi
8484

8585
### Multiple blog piece types
8686

87-
Sometimes a website needs multiple, distinct types of blog posts. If the blog posts types can be managed together, it might be easiest to [add a new field](https://v3.docs.apostrophecms.org/guide/content-schema.html#using-existing-field-groups) and [query builder](https://v3.docs.apostrophecms.org/reference/module-api/module-overview.html#queries-self-query) to customize blog views. But if the blog posts types should be managed completely separately, it may be better to create separate piece types for each.
87+
Sometimes a website needs multiple, distinct types of blog posts. If the blog posts types can be managed together, it might be easiest to [add a new field](https://docs.apostrophecms.org/guide/content-schema.html#using-existing-field-groups) and [query builder](https://docs.apostrophecms.org/reference/module-api/module-overview.html#queries-self-query) to customize blog views. But if the blog posts types should be managed completely separately, it may be better to create separate piece types for each.
8888

89-
Just as we [extend `@apostrophecms/piece-type`](https://v3.docs.apostrophecms.org/guide/pieces.html#creating-a-piece-type) to create a new piece type, we can extend `@apostrophecms/blog` to create a new blog post type. The blog post type will need its own module directory and UI labels. It can simply inherit the original fields, and other configuration or override them in the blog type's `index.js` file.
89+
Just as we [extend `@apostrophecms/piece-type`](https://docs.apostrophecms.org/guide/pieces.html#creating-a-piece-type) to create a new piece type, we can extend `@apostrophecms/blog` to create a new blog post type. The blog post type will need its own module directory and UI labels. It can simply inherit the original fields, and other configuration or override them in the blog type's `index.js` file.
9090

9191
A special blog post type that has a blog URL field might look like this:
9292

@@ -112,7 +112,7 @@ module.exports = {
112112
};
113113
```
114114

115-
As always with piece-page types and piece types, you must have a module extending @apostrophecms/blog-page that corresponds to each module extending @apostrophecms/blog. Apostrophe will match them up based on the naming convention.
115+
As always with piece-page types and piece types, you must have a module extending `@apostrophecms/blog-page` that corresponds to each module extending `@apostrophecms/blog`. Apostrophe will match them up based on the naming convention.
116116

117117
```javascript
118118
// modules/special-blog-page/index.js

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@apostrophecms/blog",
33
"version": "1.0.4",
4-
"description": "Blog module for Apostrophe 3 websites",
4+
"description": "Blog module for ApostropheCMS websites",
55
"main": "index.js",
66
"scripts": {
77
"lint": "npm run eslint",

0 commit comments

Comments
 (0)