We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8662675 commit 6f48b5dCopy full SHA for 6f48b5d
_layouts/tutorial.html
@@ -17,7 +17,11 @@
17
18
<section class="page-ref">
19
{% if page.tutorial.link and page.tutorial.name %}
20
- Tutorial: <a href="{{ page.tutorial.link }}">{{ page.tutorial.name }}</a>
+ {% if page.tutorial.show_label == nil or page.tutorial.show_label == true %}
21
+ Tutorial: <a href="{{ page.tutorial.link }}">{{ page.tutorial.name }}</a>
22
+ {% else %}
23
+ <a href="{{ page.tutorial.link }}">{{ page.tutorial.name }}</a>
24
+ {% endif %}
25
{% endif %}
26
</section>
27
0 commit comments