How to create url for /blog/ instead of /posts/?

You need to do both of the following:

config.toml

[permalinks]
posts = "/blog/:year/:title/"

content/posts/_index.md

+++
title = "Posts"
date = 2020-08-26T06:05:24-04:00
draft = false
url = "/blog"
+++
This is content/posts/_index.md

The template for the list page will be layouts/posts/list.html.

2 Likes