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 defd045 commit c325b6cCopy full SHA for c325b6c
src/_includes/content/destination-dossier.html
@@ -3,8 +3,13 @@
3
4
{% assign overrideInfo = site.data.catalog.overrides.items % | where: "id", thisDestination | first %}
5
6
+{% if page.private %}
7
+{% assign destinationInfo = site.data.catalog.destinations_private.items | where: "id", thisDestination | first %}
8
+{% else %}
9
{% assign destinationInfo = site.data.catalog.destinations.items | where: "id", thisDestination | first %}
10
11
+{% endif %}
12
+
13
{% comment %}There are probably prettier ways to generate a list of links to these methods, but this was good enough for me.{% endcomment %}
14
{% assign destMethods = "" | split: ", " %}
15
{% assign methodName = "" | split: " " %}
0 commit comments