I am using Articulate plugin in Umbraco for Blog Style and I need to show something default inside every Articulate Post. Here is what is happening now.
<section class="post-content">
@Model.Body
</section>
And I need to do something below
<section class="post-content">
@Model.Body.part1
"Something Very Important"
@Model.Body.part2
</section>
Thanks in advance.
Create two partial views and pass the same model to both. On each view just render the part you want.
Then your partial views would be something like:
PartialView1.cshtml
PartialView2.cshtml
You don't really need the
<div>
but you get the point, right?