Changeset 520e477 in Klonkt for src/views/pages
- Timestamp:
- 07/20/2026 07:35:55 AM (7 weeks ago)
- Branches:
- main
- Children:
- 22d2f5a8
- Parents:
- 1485933
- git-author:
- Robin <roboburr@…> (07/20/2026 07:26:51 AM)
- git-committer:
- Robin <roboburr@…> (07/20/2026 07:35:55 AM)
- Location:
- src/views/pages
- Files:
-
- 2 edited
-
circle-feed.ejs (modified) (3 diffs)
-
home.ejs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/views/pages/circle-feed.ejs
r1485933 r520e477 67 67 <!-- ===== TIMELINE (standaard) ===== --> 68 68 <div class="container feed-timeline"> 69 <ul class="post-list feed-timeline-list" >69 <ul class="post-list feed-timeline-list" id="post-list"> 70 70 <% posts.forEach(function(post){ %> 71 71 <%- include('../partials/post-card', { post: post }) %> … … 76 76 <!-- ===== GRID (body[data-feed-view="grid"]) ===== --> 77 77 <section class="feed-grid container" aria-label="<%= t('cfeed.grid_view') %>"> 78 <div class="grid-tiles" >78 <div class="grid-tiles" id="grid-tiles"> 79 79 <% posts.forEach(function(post){ %> 80 80 <%- include('../partials/post-tile', { post: post }) %> … … 82 82 </div> 83 83 </section> 84 85 <% if (typeof hasMore !== 'undefined') { %> 86 <div class="container feed-more-wrap"> 87 <%- include('../partials/load-more', { hasMore: hasMore, nextOffset: nextOffset, moreBase: moreBase, moreTarget: '#post-list', morePath: '/cirkel' }) %> 88 </div> 89 <% } %> 84 90 85 91 <% } %> -
src/views/pages/home.ejs
r1485933 r520e477 36 36 </div> 37 37 <% } else { %> 38 <ul class="post-list feed-timeline-list" >38 <ul class="post-list feed-timeline-list" id="post-list"> 39 39 <% allPosts.forEach(function(post) { %> 40 40 <%- include('../partials/post-card', { post: post }) %> … … 48 48 <% if (allPosts.length > 0) { %> 49 49 <section class="feed-grid container" aria-label="<%= t('phome.grid_view') %>"> 50 <div class="grid-tiles" >50 <div class="grid-tiles" id="grid-tiles"> 51 51 <% allPosts.forEach(function(post) { %> 52 52 <%- include('../partials/post-tile', { post: post }) %> … … 55 55 </section> 56 56 <% } %> 57 <% if (typeof hasMore !== 'undefined' && allPosts.length > 0) { %> 58 <div class="container feed-more-wrap"> 59 <%- include('../partials/load-more', { hasMore: hasMore, nextOffset: nextOffset, moreBase: moreBase, moreTarget: '#post-list', morePath: '/' }) %> 60 </div> 61 <% } %>
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)