fat-footer.pug 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. footer.fat-footer.hidden-print
  2. .fat-footer-container(
  3. role='navigation'
  4. aria-label=translate('footer_navigation')
  5. )
  6. .fat-footer-sections(class={hidden: hideFatFooter})
  7. #footer-brand.footer-section
  8. a.footer-brand(href='/' aria-label=settings.appName)
  9. .footer-section
  10. h2.footer-section-heading #{translate('About')}
  11. ul.list-unstyled
  12. li
  13. a(href='/about') #{translate('footer_about_us')}
  14. li
  15. a(href='https://digitalscience.pinpointhq.com/') #{translate('careers')}
  16. li
  17. a(href='/blog') #{translate('blog')}
  18. .footer-section
  19. h2.footer-section-heading #{translate('solutions')}
  20. ul.list-unstyled
  21. li
  22. a(href='/for/enterprises') #{translate('for_business')}
  23. li
  24. a(href='/for/universities') #{translate('for_universities')}
  25. li
  26. a(href='/for/government') #{translate('for_government')}
  27. li
  28. a(href='/for/publishers') #{translate('for_publishers')}
  29. li
  30. a(href='/about/customer-stories') #{translate('customer_stories')}
  31. .footer-section
  32. h2.footer-section-heading #{translate('learn')}
  33. ul.list-unstyled
  34. li
  35. a(href='/learn/latex/Learn_LaTeX_in_30_minutes') #{translate('latex_in_thirty_minutes')}
  36. li
  37. a(href='/latex/templates') #{translate('templates')}
  38. li
  39. a(href='/events/webinars') #{translate('webinars')}
  40. li
  41. a(href='/learn/latex/Tutorials') #{translate('tutorials')}
  42. li
  43. a(href='/learn/latex/Inserting_Images') #{translate('how_to_insert_images')}
  44. li
  45. a(href='/learn/latex/Tables') #{translate('how_to_create_tables')}
  46. .footer-section
  47. h2.footer-section-heading !{translate('pricing')}
  48. ul.list-unstyled
  49. li
  50. a(href='/user/subscription/plans?itm_referrer=footer-for-indv') #{translate('for_individuals')}
  51. li
  52. a(
  53. href='/user/subscription/plans?plan=group&itm_referrer=footer-for-groups'
  54. ) !{translate('for_groups_and_organizations')}
  55. li
  56. a(
  57. href='/user/subscription/plans?itm_referrer=footer-for-students#student-annual'
  58. ) #{translate('for_students')}
  59. .footer-section
  60. h2.footer-section-heading #{translate('get_involved')}
  61. ul.list-unstyled
  62. li
  63. a(href='https://forms.gle/67PSpN1bLnjGCmPQ9') #{translate('let_us_know_what_you_think')}
  64. if user
  65. li
  66. a(href='/beta/participate') #{translate('join_beta_program')}
  67. .footer-section
  68. h2.footer-section-heading #{translate('help')}
  69. ul.list-unstyled
  70. li
  71. a(href='/learn') #{translate('Documentation')}
  72. li
  73. a(href='/contact') #{translate('footer_contact_us')}
  74. li
  75. a(href='https://status.overleaf.com/') #{translate('website_status')}
  76. include fat-footer-base