Guest User

Untitled

a guest
Dec 16th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. {% fetchxml KB_Query %}
  2. <fetch version="1.0" mapping="logical">
  3. <entity name="knowledgearticle">
  4. <attribute name="knowledgearticleid" />
  5. <attribute name="title" />
  6. <attribute name="content" />
  7. <order attribute="title" descending="false" />
  8. <filter type="and">
  9. <condition attribute="isrootarticle" operator="eq" value="0" />
  10. </filter>
  11. </entity>
  12. </fetch>
  13. {% endfetchxml %}
  14.  
  15. {% for item in KB_Query.results.entities %}
  16. <h3>{{ item.title }}</h3>
  17. <p>{{ item.content }}</p>
  18. {% unless forloop.last %},{% endunless %}
  19. {% endfor -%}
Add Comment
Please, Sign In to add comment