diff --git a/content/en/videos/getting-started/basics/pinning-models-to-dock.md b/content/en/videos/getting-started/basics/pinning-models-to-dock.md index 35b9d818082..0051edf3a4e 100644 --- a/content/en/videos/getting-started/basics/pinning-models-to-dock.md +++ b/content/en/videos/getting-started/basics/pinning-models-to-dock.md @@ -8,6 +8,9 @@ categories: [Designer] formats: [video] tags: [Dock, Pin, Models, designer] duration: "0:57" +relatedDocs: + - kanvas/designer/pin-model-to-dock + - kanvas/designer/understanding-tool-modes --- {{< youtube id=8lQ6ed_1Tss class="yt-embed-container" >}} @@ -22,6 +25,3 @@ There is no limit to the number of models that you can pin to the dock. When a model is pinned you can still browse all components or search for a specific component. Drag and drop or click to place a new component into your design. When you no longer want a model pinned to the dock, you can remove the pin by revisiting the model in its original location and choosing to “remove from dock”. - -Related Docs: -1. https://docs.layer5.io/kanvas/designer/understanding-tool-modes/ diff --git a/layouts/_default/content.html b/layouts/_default/content.html index 61144a04b55..fd64a3b7b77 100644 --- a/layouts/_default/content.html +++ b/layouts/_default/content.html @@ -11,6 +11,7 @@

{{ .Title }}

{{ partial "plan-info.html" (dict "plan" .) }} {{ end }} {{ .Content }} + {{ partial "related-docs.html" . }} {{ if (.Site.Config.Services.Disqus.Shortname) -}}
{{- partial "disqus-comment.html" . -}} diff --git a/layouts/partials/related-docs.html b/layouts/partials/related-docs.html new file mode 100644 index 00000000000..0bc99b88b54 --- /dev/null +++ b/layouts/partials/related-docs.html @@ -0,0 +1,13 @@ +{{ with .Params.relatedDocs }} + +{{ end }} diff --git a/layouts/shortcodes/relatedDocs.html b/layouts/shortcodes/relatedDocs.html new file mode 100644 index 00000000000..794c9e980be --- /dev/null +++ b/layouts/shortcodes/relatedDocs.html @@ -0,0 +1 @@ +{{ partial "related-docs.html" . }}