CMS Development

matttunney
Top colaborador(a)

Blog post variable

resolver

Is there a variable I can check to distinguish if the current is for a blog post of blog listing?

Perhaps something like this:

{% if content.post_body == 'True' %}{{ html }}{% endif %}
0 Avaliação positiva
1 Solução aceita
matttunney
Solução
Top colaborador(a)

Blog post variable

resolver
{% if content.post_body %}{{ html }}{% endif %}

No need for =='True'

Exibir solução no post original

0 Avaliação positiva
1 Resposta 1
matttunney
Solução
Top colaborador(a)

Blog post variable

resolver
{% if content.post_body %}{{ html }}{% endif %}

No need for =='True'

0 Avaliação positiva