Forum

Thread tagged as: Question, Blog

Blog content custom

I've got a really simple visual menu on a page which is built using an unordered list. A bit like this:

<ul class="home-menu">

<li>
<a href="about">
<h2>Example Heading</h2>
<p>Example Copy</p>
</a>
</li>

<li>
<a href="blog">
<h2>Example Blog Post</h2>
<p>Example Post</p>
</a>
</li>

<li>
<a href="contact">
<h2>Example Heading</h2>
<p>Example Copy</p>
</a>
</li>

</ul>

One of the list items is a 'blog' option and I wanted to use Perch blog custom to pull in the latest post from the blog.

The list is being generated on the page using Perch content custom. Is there any way I can generate the list for the menu with the blog option in it?

John Robinson

John Robinson 7 points

  • 6 years ago

Ignore this, found a solution.