Hey folks,
Am I missing something here? Very basic query based off the links generated with Views:
<!-- Blog Query -->
<section class="blog-wrapper">
<div class="blog-inner">
{% for post in query.posts %}
<div class="blog-item">
<figure class="blog-img">
<img src="{{ post.thumbnail.large.url }}" width="{{ post.thumbnail.large.width }}" height="{{ post.thumbnail.large.height }}" alt="{{ post.thumbnail.large.alt }}">
</figure>
<h2 class="blog-title">
<a href="{{ post.url }}">{{ post.title }}</a>
</h2>
<a href="{{ post.url }}">Read More</a>
</div>
{% endfor %}
</div>
</section>
But the output shows the "blog-title" as the page and the "link" as the page url.
Thoughts?
Cheers