How to create 2 Blog pages for website

Hello,
I am using ContentBox 5.3 at the moment.
There is 1 “blog” in the Content section. I would like to have 2 blogs.

Is there a way to add a second blog in the Content section.
I do not see a way to duplicate or clone it so I can have 2 separate addresses with different topics.

Thanks in advance.

Not on the same site. You can create a new site and that site will have a new blog on it.

You could add categories like blog1/blog2, based on the url/event you could add them to the request by an interceptor… But this means you have one backend for both blogs

component extends="coldbox.system.Interceptor" accessors="true"{

	public function preEvent( event, interceptData, buffer, rc, prc ) eventPattern = "^contentbox-ui:blog.index" {

		if( event.getValue( 'category', '' ) eq '' )
			rc.category	= 'blog2';
	}

}