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

source-file.html 858 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. {% import "partials/language.html" as lang with context %}
  2. <!-- taken from
  3. https://github.com/squidfunk/mkdocs-material/blob/master/src/partials/source-file.html -->
  4. <br>
  5. <div class="md-source-file">
  6. <small>
  7. <!-- mkdocs-git-revision-date-localized-plugin -->
  8. {% if page.meta.git_revision_date_localized %}
  9. 📅 {{ lang.t("source.file.date.updated") }}:
  10. {{ page.meta.git_revision_date_localized }}
  11. {% if page.meta.git_creation_date_localized %}
  12. <br/>
  13. 🎂 {{ lang.t("source.file.date.created") }}:
  14. {{ page.meta.git_creation_date_localized }}
  15. {% endif %}
  16. <!-- mkdocs-git-revision-date-plugin -->
  17. {% elif page.meta.revision_date %}
  18. 📅 {{ lang.t("source.file.date.updated") }}:
  19. {{ page.meta.revision_date }}
  20. {% endif %}
  21. </small>
  22. </div>
Tip!

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

Comments

Loading...