denny/ShinyCMS-ruby

View on GitHub
plugins/ShinyNews/app/views/shiny_news/news/_sidebar.html.erb

Summary

Maintainability
Test Coverage
      <section>
        <header>
          <h2>
            <%= link_to t( '.recent_posts' ), shiny_news.view_news_path %>
          </h2>
        </header>
        <ul>
          <% recent_news_posts(10).each do |sidebar_news_post| %>
          <li>
            <%= link_to sidebar_news_post.title, sidebar_news_post.path %>
          </li>
          <% end %>
        </ul>
      </section>

      <section>
        <header>
          <h2>
            <%= t( '.links' ) %>
          </h2>
        </header>
        <p>
          <%= t( '.links_blurb' ) %>
        </p>
        <ul>
          <li><a href="#">Another list</a></li>
          <li><a href="#">Of links</a></li>
          <li><a href="#">To friends and</a></li>
          <li><a href="#">Affiliated sites</a></li>
        </ul>
      </section>