Changeset 74c2473 in Klonkt


Ignore:
Timestamp:
06/14/2026 06:48:50 PM (3 months ago)
Author:
roboburr <roboburr@…>
Branches:
main
Children:
a1c8cb8
Parents:
ce8c8c2
Message:

copy: hub-home/directory 'Artiesten' -> 'Leden' + feed heading 'our members'

Labels: section title + 'All N members' link + directory title/count/search/empty
states changed from 'Artiesten' to 'Leden'; feed heading 'Latest posts from users'
-> 'Latest posts from our members.'. URL /artiesten unchanged (labels only).

Co-Authored-By: Claude <noreply@…>

Location:
src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/routes/artists.js

    rce8c8c2 r74c2473  
    5858
    5959  renderPage(req, res, 'pages/artists-directory', {
    60     pageTitle: 'Artiesten',
     60    pageTitle: 'Leden',
    6161    bodyClass: 'on-hub',
    6262    q,
  • src/views/pages/artists-directory.ejs

    rce8c8c2 r74c2473  
    2727
    2828  <header class="adir-head container">
    29     <h1 class="adir-title">Artiesten</h1>
    30     <p class="adir-sub"><%= total %> PrutFolio<%= total === 1 ? '' : "'s" %></p>
     29    <h1 class="adir-title">Leden</h1>
     30    <p class="adir-sub"><%= total %> <%= total === 1 ? 'lid' : 'leden' %></p>
    3131
    3232    <form class="adir-search" method="get" action="/artiesten" role="search">
    3333      <input type="search" name="q" value="<%= q %>" placeholder="Zoek op naam…"
    34              autocomplete="off" aria-label="Zoek artiesten">
     34             autocomplete="off" aria-label="Zoek leden">
    3535      <button type="submit" class="adir-search-btn" aria-label="Zoeken">
    3636        <svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="7"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>
     
    4343    <% if (!artists.length) { %>
    4444      <p class="adir-empty">
    45         <% if (q) { %>Geen artiesten gevonden voor "<strong><%= q %></strong>".<% } else { %>Nog geen artiesten.<% } %>
     45        <% if (q) { %>Geen leden gevonden voor "<strong><%= q %></strong>".<% } else { %>Nog geen leden.<% } %>
    4646      </p>
    4747    <% } else { %>
  • src/views/pages/hub-home.ejs

    rce8c8c2 r74c2473  
    5555    <section class="hub-sec">
    5656      <h2 class="hub-sec-title">
    57         Artiesten
     57        Leden
    5858        <% if (_hasMore) { %><span class="hub-sec-count"><%= _total %></span><% } %>
    5959      </h2>
     
    7373      <% if (_hasMore) { %>
    7474        <div class="hub-more">
    75           <a class="hub-more-link" href="/artiesten">Alle <%= _total %> artiesten <span aria-hidden="true">→</span></a>
     75          <a class="hub-more-link" href="/artiesten">Alle <%= _total %> leden <span aria-hidden="true">→</span></a>
    7676        </div>
    7777      <% } %>
     
    8282    <% if (posts && posts.length) { %>
    8383    <section class="hub-sec">
    84       <h2 class="hub-sec-title">Laatste posts van users</h2>
     84      <h2 class="hub-sec-title">Laatste posts van onze leden.</h2>
    8585      <div class="hub-feed">
    8686        <% posts.forEach(function(p){ %>
Note: See TracChangeset for help on using the changeset viewer.