mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
63ec5d86fa
Improved article and comment styling
18 lines
No EOL
467 B
Text
18 lines
No EOL
467 B
Text
<div class="article-links">
|
|
<% if article.previous_article %>
|
|
<div class="previous">
|
|
<%= link_to article.previous_article do %>
|
|
<%= icon 'arrow-left' %>
|
|
<%= article.previous_article %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<% if article.next_article %>
|
|
<div class="next">
|
|
<%= link_to article.next_article do %>
|
|
<%= article.next_article %>
|
|
<%= icon 'arrow-right' %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div> |