Changeset 47a0d29 in Klonkt for src/views/pages/post.ejs
- Timestamp:
- 06/24/2026 11:49:19 AM (3 months ago)
- Branches:
- main
- Children:
- 55bc7f9
- Parents:
- c16e0a5
- File:
-
- 1 edited
-
src/views/pages/post.ejs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/views/pages/post.ejs
rc16e0a5 r47a0d29 82 82 </p> 83 83 <% if (fediverse.replies.length) { %> 84 < ol class="fedi-replies">84 <ul class="fedi-replies"> 85 85 <% fediverse.replies.forEach(function(r) { %> 86 86 <li class="fedi-reply"> 87 <div class=" comment-avatar">87 <div class="fedi-avatar"> 88 88 <% if (r.actor_icon) { %><img src="<%= r.actor_icon %>" alt="" loading="lazy"> 89 <% } else { %><span class=" comment-avatar-fallback"><%= (r.actor_name || '?').charAt(0).toUpperCase() %></span><% } %>89 <% } else { %><span class="fedi-avatar-fallback"><%= (r.actor_name || '?').charAt(0).toUpperCase() %></span><% } %> 90 90 </div> 91 <div class=" comment-body">92 <div class=" comment-meta">93 <a class=" comment-author" href="<%= r.actor_url %>" rel="nofollow noopener" target="_blank"><%= r.actor_name %></a>91 <div class="fedi-main"> 92 <div class="fedi-line"> 93 <a class="fedi-name" href="<%= r.actor_url %>" rel="nofollow noopener" target="_blank"><%= r.actor_name %></a> 94 94 <span class="fedi-handle"><%= r.actor_handle %></span> 95 <% if (r.published || r.created_at) { %>< span class="comment-time"><%= formatDateTime(r.published || r.created_at) %></span><% } %>95 <% if (r.published || r.created_at) { %><time class="fedi-time"><%= formatDateTime(r.published || r.created_at) %></time><% } %> 96 96 </div> 97 <div class=" comment-content"><%- r.content %></div>97 <div class="fedi-text"><%- r.content %></div> 98 98 </div> 99 99 </li> 100 100 <% }); %> 101 </ ol>101 </ul> 102 102 <% } %> 103 103 </section>
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)