Trevor Hart
Trevor Hart

Reputation: 1023

Trying to create basic blog posts in Umbraco

I've been trying for hours now to add blog posts into our site through the Umbraco back office. It feels so unintuitive how everything works and I'm beginning to get very frustrated, here's what I'm trying to do/have done:

What I don't understand is how am I supposed to just get data that was entered in Umbraco for my view? We have an extremely stylized theme for our site, so I can't use things like Articulate, and I shouldn't have to, all I want to do is store a collection of blog posts together, pull that data from Umbraco, and load it into an ASP.NET view, but there is absolutely zero documentation or examples of how to do this online, I would be incredibly grateful if someone could point me in the right direction on how I should go about doing what I'm trying to do.

Upvotes: 0

Views: 257

Answers (1)

Mark
Mark

Reputation: 3271

If I understand correctly you are developing a blog section on an existing website. First thing to do is inderdaad create a new documenttype for the blogpost itself and add a documenttype for the container of blogposts.

Did you create new templates for these documenttypes? You can find some documentation on templates here Inside the template you'll want to query data from Umbraco. Information about querying data is available here

Next up is adding the newly created templates to the documenttypes and you're ready to create your content.

Make sure that for the content you create the template is set (see Properties tab), here you can also see the url Umbraco created for the content.

Did you start the Umbraco website from scratch or are you developing on an existing website? Because a blogpost should not redirect to / by default, unless it's the root node of your website. This sounds like custom functiality. Maybe a rewrite or error handling module?

Edit: Also some information on how to get started with templating in Umbraco is available here

Upvotes: 2

Related Questions