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

hero_banner.html 772 B

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
  1. {% extends "base.html" %}
  2. {% block hero %}
  3. <section class="hero-banner">
  4. <div class="hero-content">
  5. <h1>DagsHub Documentation</h1>
  6. <p>Everything you need to know to use DagsHub like a pro.</p>
  7. <p class="small">If you're new here, check out how to <a href="quick_start/set_up_dagshub/">set up DagsHub</a></p>
  8. </div>
  9. </section>
  10. {% endblock %}
  11. {% block content %}
  12. {% if "material/tags" in config.plugins %}
  13. {% include "partials/tags.html" %}
  14. {% endif %}
  15. {% include "partials/actions.html" %}
  16. {{ page.content }}
  17. {% if page.meta and (
  18. page.meta.git_revision_date_localized or
  19. page.meta.revision_date
  20. ) %}
  21. {% include "partials/source-file.html" %}
  22. {% endif %}
  23. {% include "partials/feedback.html" %}
  24. {% include "partials/comments.html" %}
  25. {% endblock %}
Tip!

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

Comments

Loading...