Note: this is auto run if a table isn't detected the first time visiting /blog
- Create a blank page in Notion
- Clone this repo
git clone https://github.com/ijjk/notion-blog.git
- Install dependencies
cd notion-blog && yarn
- Run script to create table
NOTION_TOKEN='token' BLOG_INDEX_ID='new-page-id' node scripts/create-table.js
See here for finding the id for the new page
- Create a blank page in Notion
- Create a inline table on that page, don't use a full page table as it requires querying differently
- Add the below fields to the table
The table should have the following properties:
Page
: this the blog post's pageSlug
: this is the blog post's slug relative to/blog
, it should be a text propertyPublished
: this filters blog posts in production, it should be a checkbox propertyDate
: this is when the blog post appears as posted, it should be a date propertyAuthors
: this is a list of Notion users that wrote the post, it should be a person property
To get your blog index value, open Notion and Navigate to the Notion page with the table you created above. While on this page you should be able to get the page id from either:
- the URL, if the URL of your page is https://www.notion.so/Blog-S5qv1QbUzM1wxm3H3SZRQkupi7XjXTul then your
BLOG_INDEX_ID
isS5qv1QbU-zM1w-xm3H-3SZR-Qkupi7XjXTul
- the
loadPageChunk
request, if you open your developer console and go to the network tab then reload the page you should see a request forloadPageChunk
and in the request payload you should see apageId
and that is yourBLOG_INDEX_ID
To get your Notion token, open Notion and look for the token_v2
cookie.
- In Notion click new on the table to add a new row
- Fill in the Page name, slug, Date, and Authors
- At the top of the content area add the content you want to show as a preview (keep this under 2 paragraphs)
- Add a divider block under your preview content
- Add the rest of your content under the divider block
- Guillermo Rauch @rauchg for the initial idea
- Shu Ding @shuding_ for the design help
- Luis Alvarez @luis_fades for design help and bug catching