I have this problem where in the index page to show all my articles I get a dot on the very left side:
If anyone knows how to get rid of the dots all help would be appreciated. Here is the source code for the page.
<ul class="articles">
<% @articles.each do |article| %>
<li class="excerpt">
<%= sanitize(truncate(article.body, length: 250)) %>
<div class="read-more">
<%= link_to "Read more", article_path(article), class: 'btn btn-primary' %>
</div>
</li>
<% end %>
</ul>