Post Cards#
Create a reusable post card:
<article> <h2><a href="{{ url }}">{{ title }}</a></h2> <p>{{ excerpt }}</p></article>Use it inside a query loop:
{{ query:posts }} <PostCard />{{ /query:posts }}Inside query:posts, values such as {{ title }}, {{ url }}, and {{ excerpt }} come from the current post.
Reuse The Same Partial#
The same partial can be used anywhere the same values exist:
<PostCard />TemplateX compiles the partial into native PHP with the current WordPress context.