Some themes like for example [Hyde Hyde](https://github.com/htr3n/hyde-hyde/tree/master/exampleSite/content) have their content files under a section called `posts`
Currently the index page of these theme demos renders empty because there is no `posts` section in the HugoBasicExample.
So to fix this I have added a symlink called `posts` that points to the content files located under the `post` of the HugoBasicExample repo.
In theory this workaround can be used for other sections as well like e.g. `articles` etc (as long as it doesn't break anything).
This reverts commit 4e47e94a69.
A [great number](https://app.netlify.com/sites/hugothemes/deploys/5c6936d1dddaef000819a6e8) of theme demos on the website broke because of this commit due to the following:
- Series is on the predefined frontmatter variable lists due to its use in the internal opengraph template.
- Series is predefined as an array whereas I entered it as a string.
- Also series needs to be defined as a Taxonomy in the config of an exampleSite. Since the config is inherited by theme authors if they have not defined the series taxonomy then their demo will again break.
**NOTE**
I will be more rigorous with testing before sending more PRs.
cc: @digitalcraftsman