Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

footer.html 3.7 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
  1. {#-
  2. This file was automatically generated - do not edit
  3. -#}
  4. <footer class="md-footer">
  5. <!-- BEGIN NEXT PREVIOUS BUTTONS – DO NOT CHANGE -->
  6. {% if page.previous_page or page.next_page %}
  7. {% if page.meta and page.meta.hide %}
  8. {% set hidden = "hidden" if "footer" in page.meta.hide %}
  9. {% endif %}
  10. <nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer.title') }}" {{ hidden }}>
  11. {% if page.previous_page %}
  12. {% set direction = lang.t("footer.previous") %}
  13. <a href="{{ page.previous_page.url | url }}" class="md-footer__link md-footer__link--prev" aria-label="{{ direction }}: {{ page.previous_page.title | e }}" rel="prev">
  14. <div class="md-footer__button md-icon">
  15. {% include ".icons/material/arrow-left.svg" %}
  16. </div>
  17. <div class="md-footer__title">
  18. <div class="md-ellipsis">
  19. <span class="md-footer__direction">
  20. {{ direction }}
  21. </span>
  22. {{ page.previous_page.title }}
  23. </div>
  24. </div>
  25. </a>
  26. {% endif %}
  27. {% if page.next_page %}
  28. {% set direction = lang.t("footer.next") %}
  29. <a href="{{ page.next_page.url | url }}" class="md-footer__link md-footer__link--next" aria-label="{{ direction }}: {{ page.next_page.title | e }}" rel="next">
  30. <div class="md-footer__title">
  31. <div class="md-ellipsis">
  32. <span class="md-footer__direction">
  33. {{ direction }}
  34. </span>
  35. {{ page.next_page.title }}
  36. </div>
  37. </div>
  38. <div class="md-footer__button md-icon">
  39. {% include ".icons/material/arrow-right.svg" %}
  40. </div>
  41. </a>
  42. {% endif %}
  43. </nav>
  44. {% endif %}
  45. <!-- END NEXT PREVIOUS BUTTONS -->
  46. <div class="ui footer">
  47. <div class="dagshub-footer">
  48. <a href="/">
  49. <img alt="footer DAGsHub logo" id="footer-logo" class="ui centered image"
  50. src="/docs/assets/images/footer/footerlogo.svg">
  51. </a>
  52. <div id="footer-social" class="">
  53. {% for social in config.extra.social %}
  54. {% set title = social.name %}
  55. {% if not title and "//" in social.link %}
  56. {% set _, url = social.link.split("//") %}
  57. {% set title = url.split("/")[0] %}
  58. {% endif %}
  59. <a href="{{ social.link }}" target="_blank" rel="noopener" title="{{ title | e }}" class="social_link">
  60. {% include ".icons/" ~ social.icon ~ ".svg" %}
  61. </a>
  62. {% endfor %}
  63. </div>
  64. <div class="links">
  65. <a class="footer-item" rel="noopener noreferrer" href="/about">Our Story</a>
  66. <a class="footer-item" rel="noopener noreferrer" href="/careers">Careers</a>
  67. <a id="merch-store" class="footer-item" rel="noopener noreferrer"
  68. href="https://teespring.com/stores/dagshub">Merch</a>
  69. <a class="footer-item" rel="noopener noreferrer" href="/enterprise">Enterprise</a>
  70. <a class="footer-item" rel="noopener noreferrer" href="/pricing">Pricing</a>
  71. </div>
  72. <h2>The home for data science collaboration</h2>
  73. <div class="legal">
  74. <p><b>© Copyright Dagshub 2023</b></p>
  75. <div class="">
  76. <a class="footer-item" rel="noopener noreferrer" href="/terms">Terms of Service</a>
  77. <a class="footer-item" rel="noopener noreferrer" href="/privacy">Privacy Policy</a>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. </footer>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...