Sha256: 9a5f54c5d7d1ef030c9dafa8cceeb60133b8bb8a2522e331c5e3e20ccb5e1599

Contents?: true

Size: 664 Bytes

Versions: 1

Compression:

Stored size: 664 Bytes

Contents

class Dvl::Core::Components::Footer < Erector::Widget
  needs :application_name

  def content
    footer.footer {
      div.footer_inner {
        span {
          text @application_name
          rawtext t('dvl_core.footer.about')
        }

        ul {
          li { a t('dvl_core.footer.status'), href: 'http://status.dobt.co', target: '_blank' }
          li { a t('dvl_core.footer.legal'), href: 'https://dashboard.dobt.co/terms', target: '_blank' }
          li { a t('dvl_core.footer.help'), href: 'http://help.dobt.co', target: '_blank' }
          li { a t('dvl_core.footer.contact'), href: 'mailto:support@dobt.co' }
        }
      }
    }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dvl-core-0.0.4 lib/dvl/core/components/footer.rb