Index: src/views/pages/circle-feed.ejs
===================================================================
--- src/views/pages/circle-feed.ejs	(revision 1485933f97b84aac69830de1bf053cabba6875f8)
+++ src/views/pages/circle-feed.ejs	(revision 520e477cd65e021f65aa5aa7c92fa6a4edc26081)
@@ -67,5 +67,5 @@
   <!-- ===== TIMELINE (standaard) ===== -->
   <div class="container feed-timeline">
-    <ul class="post-list feed-timeline-list">
+    <ul class="post-list feed-timeline-list" id="post-list">
       <% posts.forEach(function(post){ %>
         <%- include('../partials/post-card', { post: post }) %>
@@ -76,5 +76,5 @@
   <!-- ===== GRID (body[data-feed-view="grid"]) ===== -->
   <section class="feed-grid container" aria-label="<%= t('cfeed.grid_view') %>">
-    <div class="grid-tiles">
+    <div class="grid-tiles" id="grid-tiles">
       <% posts.forEach(function(post){ %>
         <%- include('../partials/post-tile', { post: post }) %>
@@ -82,4 +82,10 @@
     </div>
   </section>
+
+  <% if (typeof hasMore !== 'undefined') { %>
+  <div class="container feed-more-wrap">
+    <%- include('../partials/load-more', { hasMore: hasMore, nextOffset: nextOffset, moreBase: moreBase, moreTarget: '#post-list', morePath: '/cirkel' }) %>
+  </div>
+  <% } %>
 
 <% } %>
Index: src/views/pages/home.ejs
===================================================================
--- src/views/pages/home.ejs	(revision 1485933f97b84aac69830de1bf053cabba6875f8)
+++ src/views/pages/home.ejs	(revision 520e477cd65e021f65aa5aa7c92fa6a4edc26081)
@@ -36,5 +36,5 @@
     </div>
   <% } else { %>
-    <ul class="post-list feed-timeline-list">
+    <ul class="post-list feed-timeline-list" id="post-list">
       <% allPosts.forEach(function(post) { %>
         <%- include('../partials/post-card', { post: post }) %>
@@ -48,5 +48,5 @@
 <% if (allPosts.length > 0) { %>
 <section class="feed-grid container" aria-label="<%= t('phome.grid_view') %>">
-  <div class="grid-tiles">
+  <div class="grid-tiles" id="grid-tiles">
     <% allPosts.forEach(function(post) { %>
       <%- include('../partials/post-tile', { post: post }) %>
@@ -55,2 +55,7 @@
 </section>
 <% } %>
+<% if (typeof hasMore !== 'undefined' && allPosts.length > 0) { %>
+<div class="container feed-more-wrap">
+  <%- include('../partials/load-more', { hasMore: hasMore, nextOffset: nextOffset, moreBase: moreBase, moreTarget: '#post-list', morePath: '/' }) %>
+</div>
+<% } %>
