mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 09:12:35 +02:00
24 lines
No EOL
1.4 KiB
Text
24 lines
No EOL
1.4 KiB
Text
<% actioning_site = profile_comment.actioning_site_dataset.select(:id, :username, :stripe_customer_id, :plan_type, :parent_site_id).first %>
|
|
<% site = profile_comment.site_dataset.select(:id, :username, :stripe_customer_id, :plan_type, :parent_site_id).first %>
|
|
|
|
<div class="title">
|
|
<a href="/site/<%= actioning_site.username %>" class="icon" style="background-image:url(<%= actioning_site.screenshot_url('index.html', '100x100') %>);"></a>
|
|
|
|
<% if current_site && current_site.id == actioning_site.id %>
|
|
<a href="/site/<%= current_site.username %>" class="you">You</a>
|
|
<% else %>
|
|
<a href="/site/<%= actioning_site.username %>" class="user"><i class="fa fa-user"><% if actioning_site.supporter? %><i class="fa fa-heart"></i><% end %></i><%= actioning_site.username %></a>
|
|
<% end %>
|
|
|
|
<i class="fa fa-chevron-right comment-symbol" title="commented on"></i>
|
|
|
|
<% if current_site && current_site.id == profile_comment.site_id %>
|
|
<a href="/site/<%= current_site.username %>" class="you">You</a>
|
|
<% else %>
|
|
<a href="/site/<%= profile_comment.site.username %>" class="user"><i class="fa fa-user"><% if profile_comment.site.supporter? %><i class="fa fa-heart"></i><% end %></i><%= profile_comment.site.username %></a>
|
|
<% end %>
|
|
<span class="date">
|
|
<a href="?event_id=<%= profile_comment.event.id %>"><%= profile_comment.created_at.ago %></a>
|
|
</span>
|
|
<div class="comment"><%= profile_comment.message %></div>
|
|
</div> |