* Fixed HTML errors in /app/views/additional_content_boxes * Fixed indentation * Fixed linting error in /app/views/comments * Fixed indentation in /app/views/html_variants * Fixed HTML errors + Fixed indentation in /app/views/internal * Fixed HTML errors + Fixed indentation in /app/views/layouts * Fixed indentation in /app/views/mailers * Fixed indentation in /app/views/moderations * Fixed HTML errors + Fixed indentation in /app/views/notifications * Fixed HTML errors in /app/views/pages * Fixed HTML errors + Fixed indentation in /app/views/social_previews * Fixed indentation in /app/views/stories * Fixed indentation in /app/views/stripe_subscriptions * Fixed indentation in /app/views/tags * Fixed indentation in /app/views/users
20 lines
914 B
Text
20 lines
914 B
Text
<div class="container show-page-content-display"
|
|
data-details="<%= article.organization&.slug %>__<%= article.slug %>"
|
|
id="<%= classification == "boosted" ? "partner-content-display" : "classic_article_#{article.id}" %>">
|
|
<div class="content-classification">
|
|
<span class="content-classification-text"><%= classification_text %></span>
|
|
</div>
|
|
<div class="main-content-display">
|
|
<%= render "additional_content_boxes/article_content_area",
|
|
article: article,
|
|
classification: classification,
|
|
organization: article.organization %>
|
|
</div>
|
|
<div class="secondary-content-display">
|
|
<%= render "additional_content_boxes/article_followable_area",
|
|
article: article,
|
|
followable: article.organization || article.user,
|
|
classification: classification,
|
|
follow_cue: follow_cue %>
|
|
</div>
|
|
</div>
|