I am trying to create an issue blogger and have problems printing the contents of a static page. I want to show the contents inside a div if a page of static type, I tried the way
<b: if cond = 'data: blog.pageType == & quot; static_page & quot;'>
<div class = 'row page' itemscope = 'itemscope'>
<! - Blog Post Content Column ->
<div class = 'col-LG-8 col-lg-offset-2'>
<! - Title ->
<h1> <data: blog.pageName /> </ h1>
<! - Preview Image ->
<img alt = '' class = 'img-responsive' src = 'http: //placehold.it/900x300'/>
<hr />
<! - Post Content ->
<p class = 'lead'> <data: blog.body /> </ p>
but the post content does not print and gives me an error dictionary. How I can show this content?
thank you very much