Hi Everyone, Basically first go at building a local Statamic site. So far its going ok, however I'm trying to get my head around
{{ entries:listing }}
So I have a folder in _content called testimonials which has a page.md and a few yyyy-dd-mm-testimialsname.md file in it. which looks like
---
Author: the author,the company
Quote: The really nice quote
---
I want to show a one testimonial on the homepage like so
{{ entries:listing folder="testimonials" limit="1" }}
{{theme:partial src="testimonials"}}
{{ /entries:listing }}
inside the partial I'm calling it like {{ author }} {{ quote }} but All I get on the homepage in a blank testimonial section. Any ideas what I'm doing wrong?
I would appreciate any help :)