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

page.html 1.3 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
  1. ---
  2. layout: default
  3. ---
  4. <div class="post-header">
  5. <a id="{{page.title}}"></a>
  6. <h1 class="post-title-main">{{ page.title }}</h1>
  7. </div>
  8. {% if page.simple_map == true %}
  9. <script>
  10. $(document).ready ( function(){
  11. $('.box{{page.box_number}}').addClass('active');
  12. });
  13. </script>
  14. {% include custom/{{page.map_name}}.html %}
  15. {% elsif page.complex_map == true %}
  16. <script>
  17. $(document).ready ( function(){
  18. $('.modalButton{{page.box_number}}').addClass('active');
  19. });
  20. </script>
  21. {% include custom/{{page.map_name}}.html %}
  22. {% endif %}
  23. <div class="post-content">
  24. {% if page.summary %}
  25. <div class="summary">{{page.summary}}</div>
  26. {% endif %}
  27. {% unless page.toc == false %}
  28. {% include toc.html %}
  29. {% endunless %}
  30. {{content}}
  31. <div class="tags">
  32. {% if page.tags != null %}
  33. <b>Tags: </b>
  34. {% assign projectTags = site.data.tags.allowed-tags %}
  35. {% for tag in page.tags %}
  36. {% if projectTags contains tag %}
  37. <a href="{{ "tag_" | append: tag | append: ".html" }}" class="btn btn-default navbar-btn cursorNorm" role="button">{{page.tagName}}{{tag}}</a>
  38. {% endif %}
  39. {% endfor %}
  40. {% endif %}
  41. </div>
  42. </div>
  43. {{site.data.alerts.hr_shaded}}
  44. {% include footer.html %}
Tip!

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

Comments

Loading...