As Kevin said in the comments, you could try using Views. In order for you to be able to create a new view for your content type, Views UI module should be enabled. After that, you can navigate to Admin/Structure/Views (/admin/structure/views
), and create a new view.
On the new view creation page you should check under Views settings to show Content
of type News
, and on the next section, you can create a page for it with the path of /news
for example. Then you can add your desired fields to show, with lots of other options like filtering and sorting. Here is the user guide on Drupal.org how to do this.
Once you have created the view, you can change your site configuration, to have the /news
path as your default home page, if you only want to show the content from this view. (Configuration/System/Basic site settings - admin/config/system/site-information
)
If you already have a front page, and you want to show the content of the news content type in a block, you can create a block view by either ticking the checkbox upon the views creation in the section 'Block settings', or by adding a new display on the view configuration page. This way, you would have a block you can place anywhere in your site, by navigating to Structure/Block layout /admin/structure/block
and adding it to the desired region.
Hope this helps, please read the user guide above for further instructions.