All of my assets are organized in distinct folders:
app/assets/images/admin/* <---- Admin Template
app/assets/images/default/* <----- Frontend Design
However, when attempting to utilize the following code snippet:
<%= link_to image_tag('default/user-photo-medium-jpg', :class => 'media-object img-circle', :style => 'width: 64px; height: 64px;'), '#' %>
The output produced doesn't load the image in our Development Environment.
<a href="#"><img style="width: 64px; height: 64px;" src="/images/default/user-photo-medium-jpg" class="media-object img-circle" alt="User photo medium jpg"></a>