Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -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" >}}
Expand All @@ -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/
1 change: 1 addition & 0 deletions layouts/_default/content.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ <h1>{{ .Title }}</h1>
{{ partial "plan-info.html" (dict "plan" .) }}
{{ end }}
{{ .Content }}
{{ partial "related-docs.html" . }}
{{ if (.Site.Config.Services.Disqus.Shortname) -}}
<br />
{{- partial "disqus-comment.html" . -}}
Expand Down
13 changes: 13 additions & 0 deletions layouts/partials/related-docs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{ with .Params.relatedDocs }}
<section class="related-docs">
<p>Related Docs:</p>
<ol start="1">
{{ range . }}
{{ $relatedPage := $.Site.GetPage . }}
{{ if $relatedPage }}
<li><a href="{{ $relatedPage.RelPermalink }}">{{ $relatedPage.Title }}</a></li>
{{ end }}
{{ end }}
</ol>
</section>
{{ end }}
1 change: 1 addition & 0 deletions layouts/shortcodes/relatedDocs.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{ partial "related-docs.html" . }}
Loading