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

code-example-card.html 1.0 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
  1. <div class="col-12 col-xl-4 col-lg-6 mb-4 js-filter-card {% if forloop.index0 > 5 %}d-none{% endif %}" data-tags="{{ example.tags | join: ', ' }}" data-title="{{ example.title }}" data-description="{{ example.description }}">
  2. <a
  3. class="Box d-flex flex-column flex-justify-between height-full color-shadow-medium hover-shadow-large no-underline color-text-primary"
  4. href="https://github.com/{{ example.href }}"
  5. >
  6. <div class="p-4">
  7. <h4>{{ example.title }}</h4>
  8. <p class="mt-2 mb-4 color-text-tertiary">{{ example.description }}</p>
  9. <div class="d-flex flex-wrap">
  10. {% for tag in example.tags %}
  11. <span class="IssueLabel color-text-inverse color-bg-info-inverse mr-2 mb-1">{{ tag }}</span>
  12. {% endfor %}
  13. </div>
  14. </div>
  15. <footer class="border-top p-4 color-text-secondary d-flex flex-items-center">
  16. {% octicon "repo" class="flex-shrink-0" %}
  17. <span class="ml-2 text-mono text-small color-text-link">{{ example.href }}</span>
  18. </footer>
  19. </a>
  20. </div>
Tip!

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

Comments

Loading...