<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Glossary Realtime Filter in CMS Development</title>
    <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1164471#M43277</link>
    <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&lt;/SPAN&gt;, thanks for getting back to me!&lt;BR /&gt;&lt;BR /&gt;I'd love to put you in touch with our Top Experts: Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&lt;/SPAN&gt;, &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt; and &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/324811"&gt;@zach_threadint&lt;/a&gt;&lt;/SPAN&gt; do you have suggestions to help &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a lovely weekend and thanks so much in advance for your help!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jun 2025 15:10:14 GMT</pubDate>
    <dc:creator>BérangèreL</dc:creator>
    <dc:date>2025-06-13T15:10:14Z</dc:date>
    <item>
      <title>Glossary Realtime Filter</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1161093#M43199</link>
      <description>&lt;P&gt;I have got a glossary list showing and am trying to add a dropdown filter and keyword search. The list is being pulled from a HubDB. I am trying to make the dropdown (column from HubDb called 'category2' and keyword search both update the list in realtime rather than having to press a submit button. Would anyone be able to let me know how I would implement the filter? Thank you in advance for any help.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;!--
  templateType: page
  isAvailableForNewContent: true
  label: Glossary 2200A
--&amp;gt;
{% extends "./layouts/base.html" %}

{% block body %}

{% if dynamic_page_hubdb_row %}

&amp;lt;!-- Content Page --&amp;gt;
&amp;lt;h1&amp;gt;{{ dynamic_page_hubdb_row.hs_name }}&amp;lt;/h1&amp;gt;
&amp;lt;p&amp;gt;{{dynamic_page_hubdb_row.description}}&amp;lt;/p&amp;gt;
&amp;lt;!--------&amp;gt;

{% elif dynamic_page_hubdb_table_id %}


&amp;lt;!-- Hero --&amp;gt;
{% dnd_area "body_dnd_area" %}
    {% dnd_section
        background_image = {
            'backgroundPosition': 'MIDDLE_CENTER',
            'backgroundSize': 'cover',
            'imageUrl': 'https://www.dragndrop.com/bg-image.jpg'
          },
          max_width=1000,
          vertical_alignment='MIDDLE'
    %}
        {% dnd_module path='../modules/Hero' %}
            {% module_attribute "html"%}
                This is your main headline.
                Use this space to tell everyone about what you have to offer.
            {% end_module_attribute %}
        {% end_dnd_module %}
    {% end_dnd_section %}
{% end_dnd_area %}
&amp;lt;!--------&amp;gt;




&amp;lt;!-- A-Z Filter Buttons --&amp;gt;
&amp;lt;div class="a-z_filter"&amp;gt;
				
  &amp;lt;div class=""&amp;gt;
     
  &amp;lt;/div&amp;gt;

  &amp;lt;div class="a-z_filter_outercontainer"&amp;gt;
    &amp;lt;div class="a-z_label v1"&amp;gt;&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Find terms by letter:&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;div class="a-z_filter_container"&amp;gt;

    &amp;lt;div class="a-z_label v2"&amp;gt;&amp;lt;p&amp;gt;&amp;lt;strong&amp;gt;Find terms&amp;lt;br&amp;gt;by letter:&amp;lt;/strong&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;

    {% set table = hubdb_table_rows(module.hubdb_id) %}
    {% set alphabet = ["3","A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] %}
    {% for letter in alphabet %}    
    &amp;lt;a class="a-z_button" href="#{{ letter }}"&amp;gt;{{ letter }}&amp;lt;/a&amp;gt;
    {% endfor %}

    &amp;lt;/div&amp;gt;
  &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;!--------&amp;gt;



&amp;lt;!-- Dropdown and Search Box that will update the list in realtime with no need to press a submit button--&amp;gt;
&amp;lt;div&amp;gt;
  &amp;lt;form id="form_id" method="get" &amp;gt;
    {# Category2 filter #}
    &amp;lt;div&amp;gt;
      &amp;lt;h3&amp;gt;Keyword Filter:&amp;lt;/h3&amp;gt;
      &amp;lt;select name="category2" form="form_id" onChange="this.form.submit()"&amp;gt;
        &amp;lt;option value="show-all"&amp;gt;Show All&amp;lt;/option&amp;gt;
        dropdown list pulled from HuBdb category2 column
      &amp;lt;/select&amp;gt;
    &amp;lt;/div&amp;gt;
    {# Search filter #}
    &amp;lt;div&amp;gt;
      &amp;lt;input name="publication" type="text" id="search-by" class="autocomplete" value="" placeholder="Search by keyword"&amp;gt;
    &amp;lt;/div&amp;gt;
  &amp;lt;/form&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;!--------&amp;gt;











&amp;lt;!-- A-Z Listing --&amp;gt;
{% set table = hubdb_table_rows(module.hubdb_id) %}
{% set alphabet = ["3","A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"] %}

&amp;lt;div class="row-fluid a-z"&amp;gt;
  
{% for letter in alphabet %}
    
&amp;lt;h3 id="{{ letter }}" class="letter"&amp;gt;{{ letter }}&amp;lt;/h3&amp;gt;
  
  &amp;lt;div class="set"&amp;gt;
    
      &amp;lt;ul class="word"&amp;gt;
        
      {% for row in hubdb_table_rows(dynamic_page_hubdb_table_id) %}
      {% if row.name is string_startingwith letter %}

        &amp;lt;li&amp;gt;&amp;lt;a href="{{ request.path }}/{{ row.hs_path }}?hs_preview=AyQeGSab-190730271634"&amp;gt;{{ row.name }}&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;

      {% endif %}   
      {% endfor %}
        
      &amp;lt;/ul&amp;gt;
     
  &amp;lt;/div&amp;gt;

{% endfor %}
&amp;lt;/div&amp;gt;
&amp;lt;!--------&amp;gt;




{% endif %}


&amp;lt;!-- CTA Banner--&amp;gt;
{% global_partial path='./partials/footer-cta-banner.html' %}
&amp;lt;!--------&amp;gt;
{% endblock %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Woodsy_0-1749068233730.png" style="width: 400px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/147769i563827D7531A9624/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Woodsy_0-1749068233730.png" alt="Woodsy_0-1749068233730.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 20:27:34 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1161093#M43199</guid>
      <dc:creator>Woodsy</dc:creator>
      <dc:date>2025-06-04T20:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Glossary Realtime Filter</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1161320#M43205</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&lt;/SPAN&gt;, I hope that you are well!&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for asking the HubSpot Community!&lt;BR /&gt;&lt;BR /&gt;I spotted these threads, not sure if that's entirely similar to what you are looking for but it might be interesting for you to take a look:&lt;BR /&gt;&lt;BR /&gt;- The solution from &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/91608"&gt;@alyssamwilie&lt;/a&gt;&lt;/SPAN&gt; on this post "&lt;A href="https://community.hubspot.com/t5/CMS-Development/Passing-HubDB-Multi-selection-select-options-into-Module-Field/m-p/386034" target="_blank"&gt;Passing HubDB Multi-selection select options into Module Field Choice option&lt;/A&gt;"&lt;BR /&gt;- The solution from &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/91608"&gt;@alyssamwilie&lt;/a&gt;&lt;/SPAN&gt; on this post "&lt;A href="https://community.hubspot.com/t5/CMS-Development/Choice-field-select-a-row-from-HubDB-list-within-a-custom-module/m-p/358812" target="_blank"&gt;Choice field / select a row from HubDB list within a custom module&lt;/A&gt;"&lt;BR /&gt;&lt;BR /&gt;Also, I'd love to put you in touch with our Top Experts: Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/55480"&gt;@jonchim&lt;/a&gt;&lt;/SPAN&gt;, &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/64119"&gt;@matt_scott&lt;/a&gt;&lt;/SPAN&gt; and &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/61659"&gt;@Stephanie-OG&lt;/a&gt;&lt;/SPAN&gt; do you have suggestions to help &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a fantastic day and thanks so much in advance for your help!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 12:17:24 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1161320#M43205</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-06-05T12:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Glossary Realtime Filter</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1162428#M43227</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/230185" target="_blank" rel="noopener"&gt;@Bérangère&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Those links you shared are not quite right for what I'm after. I would be extremely gratefully to any other community members who maybe able to share their knowledge around this request.&lt;BR /&gt;&lt;BR /&gt;Thank you again&amp;nbsp;Bérangère for reaching out to me with those suggestions.&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jun 2025 09:45:42 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1162428#M43227</guid>
      <dc:creator>Woodsy</dc:creator>
      <dc:date>2025-06-09T09:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Glossary Realtime Filter</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1164471#M43277</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&lt;/SPAN&gt;, thanks for getting back to me!&lt;BR /&gt;&lt;BR /&gt;I'd love to put you in touch with our Top Experts: Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&lt;/SPAN&gt;, &lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/17186"&gt;@Anton&lt;/a&gt; and &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/324811"&gt;@zach_threadint&lt;/a&gt;&lt;/SPAN&gt; do you have suggestions to help &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/9301"&gt;@Woodsy&lt;/a&gt;&lt;/SPAN&gt;, please?&lt;BR /&gt;&lt;BR /&gt;Have a lovely weekend and thanks so much in advance for your help!&lt;BR /&gt;Bérangère&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 15:10:14 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1164471#M43277</guid>
      <dc:creator>BérangèreL</dc:creator>
      <dc:date>2025-06-13T15:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Glossary Realtime Filter</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1165610#M43293</link>
      <description>&lt;P&gt;You can first retrieve and display all rows when rendering the page by including "data-*" attributes on each row. This would look something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;div&amp;gt;
  &amp;lt;h3&amp;gt;Filter by category:&amp;lt;/h3&amp;gt;
  &amp;lt;select id="category-filter"&amp;gt;
    &amp;lt;option value="show-all"&amp;gt;Show all&amp;lt;/option&amp;gt;
    {% set rows = hubdb_table_rows(module.hubdb_id) %}
    {% set categories = rows | map(attribute='category2') | unique %}
    {% for category in categories %}
      &amp;lt;option value="{{ category }}"&amp;gt;{{ category }}&amp;lt;/option&amp;gt;
    {% endfor %}
  &amp;lt;/select&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;div&amp;gt;
  &amp;lt;h3&amp;gt;Search by keyword:&amp;lt;/h3&amp;gt;
  &amp;lt;input type="text" id="keyword-search" placeholder="Enter keyword..."&amp;gt;
&amp;lt;/div&amp;gt;

&amp;lt;div class="row-fluid a-z"&amp;gt;
  {% for letter in alphabet %}
    &amp;lt;h3 id="{{ letter }}" class="letter"&amp;gt;{{ letter }}&amp;lt;/h3&amp;gt;
    &amp;lt;ul class="word"&amp;gt;
      {% for row in rows %}
        {% if row.name is string_startingwith letter %}
          &amp;lt;li 
            data-category="{{ row.category2 }}" 
            data-name="{{ row.name | lower }}"&amp;gt;
            &amp;lt;a href="{{ request.path }}/{{ row.hs_path }}"&amp;gt;{{ row.name }}&amp;lt;/a&amp;gt;
          &amp;lt;/li&amp;gt;
        {% endif %}
      {% endfor %}
    &amp;lt;/ul&amp;gt;
  {% endfor %}
&amp;lt;/div&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And you can do something like this in javascript&amp;amp;colon;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;document.addEventListener('DOMContentLoaded', function() {
    const selectCategory = document.getElementById('category-filter');
    const inputKeyword   = document.getElementById('keyword-search');
    const items     = Array.from(document.querySelectorAll('.word li'));

    function filterList() {
      const chosenCategory = selectCategory.value;
      const keyword = inputKeyword.value.trim().toLowerCase();

      items.forEach(li =&amp;gt; {
        const category  = li.dataset.category;
        const name = li.dataset.name;
        const matchCategory = (chosenCategory === 'show-all' || category === chosenCategory);
        const matchKeyword  = (keyword === '' || name.includes(keyword));
        li.style.display = (matchCategory &amp;amp;&amp;amp; matchKeyword) ? '' : 'none';
      });
    }

    selectCategory.addEventListener('change', filterList);
    inputKeyword.addEventListener('input', filterList);
  });&lt;/LI-CODE&gt;&lt;P&gt;This is untested. Adapt this to your code.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 07:52:57 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1165610#M43293</guid>
      <dc:creator>sylvain_tirreau</dc:creator>
      <dc:date>2025-06-17T07:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: Glossary Realtime Filter</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1167068#M43335</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/601366"&gt;@sylvain_tirreau&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for taking the time to look over my code. I have implemented it and everything works perfectly.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-06-20 104245.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/148884i842A7CC3430255A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-06-20 104245.png" alt="Screenshot 2025-06-20 104245.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Under the 'show all' there is a blank entry that when clicked on removes a number of the listing items which includes all of a and b.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-06-20 104258.png" style="width: 999px;"&gt;&lt;img src="https://community.hubspot.com/t5/image/serverpage/image-id/148885i85B7873E023D80A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-06-20 104258.png" alt="Screenshot 2025-06-20 104258.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried a few diffent things to remove that line but I just can't seem to remove it. Do you know the best way to remove this line?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 09:58:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1167068#M43335</guid>
      <dc:creator>Woodsy</dc:creator>
      <dc:date>2025-06-20T09:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Glossary Realtime Filter</title>
      <link>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1167166#M43341</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Change:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% for category in categories %}
    &amp;lt;option value="{{ category }}"&amp;gt;{{ category }}&amp;lt;/option&amp;gt;
{% endfor %}&lt;/LI-CODE&gt;&lt;P&gt;By this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{% for category in categories %}
   {% if category %}
      &amp;lt;option value="{{ category }}"&amp;gt;{{ category }}&amp;lt;/option&amp;gt;
   {% endif %}
{% endfor %}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 14:33:53 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/CMS-Development/Glossary-Realtime-Filter/m-p/1167166#M43341</guid>
      <dc:creator>sylvain_tirreau</dc:creator>
      <dc:date>2025-06-20T14:33:53Z</dc:date>
    </item>
  </channel>
</rss>

