New to hugo - content/posts do not display anything

Hello all,
I will try to keep this simple and straight forward. I am brand new to Hugo and just installed it today. However, I am now asking for help as the past 2-3 hours google searching has not fixed my issues yet. Used the docs from the main quickstart guide and a youtube video to get me where I am at. I installed the base16 theme and customized it a bit (just text) and that loads fine

Here is the directory tree of my local site

% tree
.
├── quickstart
│   ├── archetypes
│   │   └── default.md
│   ├── config.toml
│   ├── content
│   │   └── posts
│   │       ├── my-first-post.md
│   │       └── second-post.md
│   ├── data
│   ├── layouts
│   │   └── partials
│   │       └── hero.html
│   ├── public
│   │   ├── 404.html
│   │   ├── categories
│   │   │   ├── index.html
│   │   │   ├── index.xml
│   │   │   └── page
│   │   │       └── 1
│   │   │           └── index.html
│   │   ├── css
│   │   │   ├── style.css
│   │   │   └── style.css.map
│   │   ├── img
│   │   │   └── base16-eighties.svg
│   │   ├── index.html
│   │   ├── index.xml
│   │   ├── page
│   │   │   └── 1
│   │   │       └── index.html
│   │   ├── posts
│   │   │   ├── index.html
│   │   │   ├── index.xml
│   │   │   ├── my-first-post
│   │   │   │   └── index.html
│   │   │   ├── page
│   │   │   │   └── 1
│   │   │   │       └── index.html
│   │   │   └── second-post
│   │   │       └── index.html
│   │   ├── sitemap.xml
│   │   └── tags
│   │       ├── index.html
│   │       ├── index.xml
│   │       └── page
│   │           └── 1
│   │               └── index.html
│   ├── resources
│   │   └── _gen
│   │       ├── assets
│   │       └── images
│   ├── static
│   └── themes
│       └── base16
│           ├── LICENSE
│           ├── README.md
│           ├── archetypes
│           │   └── default.md
│           ├── gulpfile.js
│           ├── images
│           │   ├── screenshot.png
│           │   └── tn.png
│           ├── layouts
│           │   ├── 404.html
│           │   ├── _default
│           │   │   ├── list.html
│           │   │   └── single.html
│           │   ├── index.html
│           │   └── partials
│           │       ├── article-list-item.html
│           │       ├── article.html
│           │       ├── footer.html
│           │       ├── header.html
│           │       ├── hero.html
│           │       ├── homepage.html
│           │       └── paginator.html
│           ├── package-lock.json
│           ├── package.json
│           ├── src
│           │   └── css
│           │       └── style.css
│           ├── static
│           │   ├── css
│           │   │   ├── style.css
│           │   │   └── style.css.map
│           │   └── img
│           │       └── base16-eighties.svg
│           └── theme.toml
└── themes
    └── base16
        ├── LICENSE
        ├── README.md
        ├── archetypes
        │   └── default.md
        ├── gulpfile.js
        ├── images
        │   ├── screenshot.png
        │   └── tn.png
        ├── layouts
        │   ├── 404.html
        │   ├── _default
        │   │   ├── list.html
        │   │   └── single.html
        │   ├── index.html
        │   └── partials
        │       ├── article-list-item.html
        │       ├── article.html
        │       ├── footer.html
        │       ├── header.html
        │       ├── hero.html
        │       ├── homepage.html
        │       └── paginator.html
        ├── package-lock.json
        ├── package.json
        ├── src
        │   └── css
        │       └── style.css
        ├── static
        │   ├── css
        │   │   ├── style.css
        │   │   └── style.css.map
        │   └── img
        │       └── base16-eighties.svg
        └── theme.toml

the contents of my config.toml file

baseURL = "https://mysite.github.io/"
languageCode = "en-us"
title = "mysite"
theme = "base16"

The site just renders this and my posts are not visible at all. I am starting hugo with the -D flag to publish the drafts as well and have tried flipping the draft value from true to false, and it does not work

This is all the renders with none of my mark down files I created

Thank you in advance for helping out a noob.

rename content/posts to content/post

as you can see here, the layout trying to list the content under post section.

wow that fixed it, and I feel like a dummy. However, many thanks for your help kind person from the web

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.