footer.js 655 B

12345678910111213141516171819
  1. var m = require('mithril');
  2. var _i18n = require('./i18n');
  3. // ____ __
  4. // / __/___ ____ / /____ _____
  5. // / /_/ __ \/ __ \/ __/ _ \/ ___/
  6. // / __/ /_/ / /_/ / /_/ __/ /
  7. // /_/ \____/\____/\__/\___/_/
  8. module.exports = {
  9. view(vn){
  10. return m('footer', [
  11. m('p', m.trust('<a href="http://ethica-spinoza.net" target="_blank">'+_i18n.t('Ethica, work without obstacle')+'</a>')),
  12. m('p', m.trust('<a href="https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html" target="_blank">Ethica is under GNU/GPL V.2 licence</a>')),
  13. m('p', m.trust('<a href="mailto:contact@ethica-spinoza.net">contact</a>'))
  14. ]);
  15. }
  16. }