I try to display post in folder content to my index.html file.
how do i can get the link post, title post, and descripton post
You can see the theme I’m trying to edit here https://github.com/dualbios4/mundana-hugo
FUTURED-IMAGE > {{ .Params.featured_image }} or {{ .Params.featuredImage }} or {{ .Params.image }}
NB:
Your posts have featuredImage, featured_image and image. Which do you want to use?
Why are your image links pointing to WordPress links?
In Hugo, I recommend using relative paths for images. For example,for images in an “images” folder in the static folder (/static/images/imagename.jpg), you can do featured_image: images/image-name.jpg in your front-matter (ensuring your baseURL in the configuration file ends with a forward slash /). Then your FUTURED-IMAGE becomes {{ .Params.featured_image | absURL }}.
The ‘date’ accepts different formats that you can test.