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

learning-track-nav.html 845 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
  1. <div class="py-3 px-4 rounded color-bg-primary border-gradient--purple-pink d-flex flex-justify-between learning-track-nav">
  2. {% assign track = currentLearningTrack %}
  3. <span class="d-flex flex-column">
  4. {% if track.prevGuide %}
  5. <span class="f6 color-text-secondary">{% data ui.learning_track_nav.prevGuide %}</span>
  6. <a href="{{track.prevGuide.href}}?learn={{track.trackName}}" class="text-bold color-text-secondary">{{track.prevGuide.title}}</a>
  7. {% endif %}
  8. </span>
  9. <span class="d-flex flex-column flex-items-end">
  10. {% if track.nextGuide %}
  11. <span class="f6 color-text-secondary">{% data ui.learning_track_nav.nextGuide %}</span>
  12. <a href="{{track.nextGuide.href}}?learn={{track.trackName}}" class="text-bold color-text-secondary text-right">{{track.nextGuide.title}}</a>
  13. {% endif %}
  14. </span>
  15. </div>
Tip!

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

Comments

Loading...