Hi Humashankar,
I have replaced both of the code sections that are trying to generate the Blog URL with your code.
Here is the first section:
<div class=“release_list_cta”>
<a class=“black-white-button” style=“color: white” href=“{{ blog_category_url(“Press_Release”) }}”>View All Releases</a>
</div>
Here is the second section:
<div class=“article_list_cta”>
<a class=“black-white-button” style=“color: white” href=“{{ blog_category_url(“Media_Coverage”) }}”>View All Coverage</a>
</div>
I am still getting an error:
Could not resolve function ‘blog_category_url’

I have verified that both the Press_Release and the Media_Coverage tags are in the Newsroom blog.
So I am at a loss as to what is happening. Is there somewhere else in the code of the page that isn’t calling the Newsroom blog? I really don’t know.
Here is the page code:
<!--
templateType: blog_listing
isAvailableForNewContent: true
label: Boilerplate - newsroom listing
screenshotPath: ../images/template-previews/blog-index.png
-->
{% set template_css = “../../css/templates/blog.css” %}
{% extends “./layouts/base.html” %}
{% block body %}
<div class=“column-container”>
{# ----------------------- Header ---------------------- #}
<div class=“blog_header”>
{% module “module_171526232513644” path=“/Filter-Labs-Website/modules/Text Centered Image Tight Left and Right”, label=“Text Centered Image Tight Left and Right” %}
</div>
{# ----------------------- Newsroom Featured Articles ---------------------- #}
<div style=“margin-top: 20px;”>
{% module “module_171527297876861” path=“/Filter-Labs-Website/modules/Recent Newsroom Post Box”, label=“Recent Newsroom Post Box” %}
</div>
</div>
{# ----------------------- Article and Release Lists ---------------------- #}
<div class=“full_width_container_grey”>
<div class=“column-container”>
<div class=“article_release_container”>
<div class=“article_release_subhead”>
<h3>
Articles and Press Releases
</h3>
</div>
<div class=“article_release_list_container”>
<div class=“release_list_containter”>
<div class=“release_list_header”>
<h4>
FilterLabs’ Press Releasees
</h4>
</div>
<div class=“release_list”>
<div>
{% set my_tag_posts = blog_recent_topic_posts(‘default’, ‘Press_Release’, 10) %}
<ul>
{% for post in my_tag_posts %}
<li style=“line-height: 2rem;”><a href=“{{ post.absolute_url }}”>{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class=“release_list_cta”>
<a class=“black-white-button” style=“color: white” href=“{{ blog_category_url(“Press_Release”) }}”>View All Releases</a>
</div>
</div>
<div class=“article_list_container”>
<div class=“article_list_header”>
<h4>
FilterLabs in the News
</h4>
</div>
<div class=“article_list”>
<div>
{% set my_tag_posts = blog_recent_topic_posts(‘default’, ‘Media_Coverage’, 10) %}
<ul>
{% for post in my_tag_posts %}
<li style=“line-height: 2rem;”><a href=“{{ post.absolute_url }}”>{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class=“article_list_cta”>
<a class=“black-white-button” style=“color: white” href=“{{ blog_category_url(“Media_Coverage”) }}”>View All Coverage</a>
</div>
</div>
</div>
</div>
</div>
</div>
{# ----------------------- News Story Source Request ---------------------- #}
<div class=“column-container”>
<div>
{% module “module_17152861606712” path=“/Filter-Labs-Website/modules/Text Left w Image Form Right”, label=“Text Left w Image Form Right” %}
</div>
{# ----------------------- Events Section ---------------------- #}
<div class=“events_section_container”>
<div>
{% module “module_171529012646220” path=“/Filter-Labs-Website/modules/Centered Text”, label=“Centered Text” %}
</div>
<div>
{% module “module_171528993868617” path=“/Filter-Labs-Website/modules/Event Image and Text Description”, label=“Event Image and Text Description” %}
</div>
<div class=“event_list_cta_container”>
<div class=“event_list_cta”>
<a class=“black-white-button” style=“color: white” href=“{{ blog_tag_url(“Event”, module.blog_post_tag) }}”>View More Events</a>
</div>
</div>
</div>
</div>
{% endblock body %}
Sorry for the back and forth but I appreciate your help.
Thanks
Scott