<%= t('title_home_index') %>

<%= t('body_home_index_html') %>

<%= t('body_feedback_home_index_html', href: link_to('feedback', 'https://github.com/mezuro/mezuro/issues', target: '_blank')) %>

<%= t('latest_projects') %>

    <% cache action_suffix: 'latest_projects' do %> <% latest_projects(5).each do |project| %>
  • <%= link_to(project.name, project_path(project.id)) %>
  • <% end %> <% end %>

<%= t('latest_repositories') %>

    <% cache action_suffix: 'latest_repositories' do %> <% latest_repositories(5).each do |repository| %>
  • <%= link_to(repository.name, repository_path(repository.id)) %>
  • <% end %> <% end %>

<%= t('latest_configurations') %>

    <% cache action_suffix: 'latest_configurations' do %> <% latest_configurations(5).each do |configuration| %>
  • <%= link_to(configuration.name, kalibro_configuration_path(configuration.id)) %>
  • <% end %> <% end %>