Display the Tag Image and Tag description on a tag collection page

Hi!

New to Ghost, and loving it so far. I have what I hope is a pretty simple question.

I am using the “Edge” theme, which I have modified slightly. I have a tag collection which will be serving as a my blog:

I see that the tag admin page has a image and a description, and I’d love those to appear at the top of that collection page. How do I do that?

Thanks!

Take a look at the example code

<!-- tag.hbs -->

<!-- Everything inside of #tag pulls data from the tag -->
{{#tag}}
  <header>
  	{{#if feature_image}}
    	<img src="{{feature_image}}" alt="{{name}}" />
    {{/if}}
  </header>
…