Class: Dvl::Components::Footer

Inherits:
Erector::Widget
  • Object
show all
Defined in:
lib/dvl/components/footer.rb

Instance Method Summary collapse

Instance Method Details

#contentObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/dvl/components/footer.rb', line 4

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:[email protected]' }
      }
    }
  }
end