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 653 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
  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. </div>
  8. </section>
  9. {% endblock %}
  10. {% block content %}
  11. {% if "material/tags" in config.plugins %}
  12. {% include "partials/tags.html" %}
  13. {% endif %}
  14. {% include "partials/actions.html" %}
  15. {{ page.content }}
  16. {% if page.meta and (
  17. page.meta.git_revision_date_localized or
  18. page.meta.revision_date
  19. ) %}
  20. {% include "partials/source-file.html" %}
  21. {% endif %}
  22. {% include "partials/feedback.html" %}
  23. {% include "partials/comments.html" %}
  24. {% endblock %}
Tip!

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

Comments

Loading...