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
. {
div. {
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
|