_footer.html.erb 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <footer>
  2. <hr id='footer_separator'/>
  3. <br/>
  4. <table id='footer_table'>
  5. <tr>
  6. <td id='footer_left'>
  7. <span id='footer_follow' class='desktop'>
  8. <%= t('footer.follow') %>
  9. </span>
  10. <a target='_blank' title='eMail' href='mailto:i@inigovalentin.com'>
  11. <%= image_tag ("social/email.svg"), class: "footer_social_icon", alt: t('social.mail') , title: t('social.mail') %>
  12. </a>
  13. <a target='_blank' title='Telegram' href='https://telegram.me/InigoValentin'>
  14. <%= image_tag ("social/telegram.svg"), class: "footer_social_icon", alt: t('social.telegram') , title: t('social.telegram') %>
  15. </a>
  16. <a target='_blank' title='Github' href='https://github.com/InigoValentin'>
  17. <%= image_tag ("social/github.svg"), class: "footer_social_icon", alt: t('social.github') , title: t('social.github') %>
  18. </a>
  19. <a target='_blank' title='LinkedIn' href='https://www.linkedin.com/in/ivalentin'>
  20. <%= image_tag ("social/linkedin.svg"), class: "footer_social_icon", alt: t('social.linkedin') , title: t('social.linkedin') %>
  21. </a>
  22. </td>
  23. <td id='footer_center'>
  24. <%= t('footer.copy', year: Date.today.year) %>
  25. </td>
  26. <td id='footer_right'>
  27. <a id='footer_help' href='<?=URL::BASE?>/help/'>
  28. <%= t('footer.help') %>
  29. </a>
  30. <br/><br/>
  31. <% I18n.available_locales.each do |locale| %>
  32. <a class='lang' href='<?=$dest?>'>
  33. <%= image_tag ("lang/" + locale.to_s + ".svg") %>
  34. </a>
  35. <% end %>
  36. </td>
  37. </tr>
  38. </table>
  39. </footer>