moonleerecords/moonlee-website

View on GitHub
app/controllers/records/statics_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Records
  class StaticsController < Records::BaseController
    before_action do
      promoted_releases(3)
      upcoming_events(5)
      social_posts
    end

    def about
      custom_header(
        'About Us',
        '<strong>Moonlee Records</strong> is an independent record label established and run since 2004 by a ' \
'handful of music enthusiasts from Slovenia and Croatia under the command of <strong>Mr. Moonlee</strong>, a '\
'giant lemon not very fond of being squeezed. In 2011, Moonlee Records expanded into <strong>Moonlee Booking</strong> '\
'to organise shows and tours for Moonlee bands in Slovenia and abroad.',
        'about/moonlee-about.svg'
      )
      meta_tags('About', 'Get in touch with us!')
    end

    def press
      @artists = Artist.on_records.order(:name)
      meta_tags('Press Photos', "Moonlee's bands press photos.")
    end
  end
end