Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/understanding-tool-modes/
- /kanvas/designer/pin-model-to-dock/
---

{{< youtube id=8lQ6ed_1Tss class="yt-embed-container" >}}
Expand All @@ -23,5 +26,3 @@ When a model is pinned you can still browse all components or search for a speci

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/
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">
<h2>Related Docs</h2>
<ul>
{{ range . }}
{{ $relatedPage := $.Site.GetPage . }}
{{ if $relatedPage }}
<li><a href="{{ $relatedPage.RelPermalink }}">{{ $relatedPage.Title }}</a></li>
{{ end }}
{{ end }}
</ul>
</section>
{{ end }}
1 change: 1 addition & 0 deletions layouts/video/single.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{{ define "main" }}
{{ partial "feature-info.html" . }}
{{ .Render "content" }}
{{ partial "related-docs.html" . }}
<div style="margin-top:2rem;">
{{ partial "recent-discussions.html" . }}
</div>
Expand Down
Loading