Hi @Felix_David. It seems like you are using a custom theme on your blog and my suspicion is there might be an error (e.g. referencing wrong post field) in the post.hbs template
What’s shown on the index page comes from an excerpt field which is calculated differently than html which is shown on the post page itself.
What kind of setup are you using for your Ghost instance? What’s the database you are using? Does the problem stay the same when you add a new post with content in it?
Would be very helpful to have step-by-step instructions to reproduce this state
Hey @Felix_David. Did you try creating new posts? It’s hard to tell what’s wrong without having very clear reproducible steps. So far it seems like there’s something wrong with data itself. You could see what data is in your posts by logging into your mysql instance and doing select * from posts.
Nothing particular with this data. Hm… The place that renders undefined for you is this line - Casper/post.hbs at main · TryGhost/Casper · GitHub, which is a content helper doing some manipulations on post’s html data. The data passed into this helper is populated through internal API call to Content API and for some reason the html property is not present at all (which renders as undefined). When you upload a theme which API version is it set to (can be checked in theme’s package.json ‘engines’ section like here)?
Sorry, it’s quite hard to debug this problem without being able to reproduce it on local environment :( Did you try reproducing same steps on local intallation for example?