mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06:00
13166df619
Terraform is way bigger than the core CLI tools and the language now, and the docs have grown accordingly. So we're adding a global index page to help users get around the many sections of the docs site, and bumping the CLI/core docs down so they're no longer at the top of the hierarchy. The "right" (as in, conceptually pure) way to do this would be to actually create a new level of directory hierarchy in between. But that would be real expensive and annoying — the amount of 301s and links to edit would be monumental, and it wouldn't gain us much beyond a certain picture-straightening satisfaction, so I'm resisting the temptation.
42 lines
1.3 KiB
Plaintext
42 lines
1.3 KiB
Plaintext
<% wrap_layout :inner do %>
|
|
<% content_for :sidebar do %>
|
|
<h4><a href="/docs/cli-index.html">Terraform CLI</a></h4>
|
|
|
|
<ul class="nav docs-sidenav">
|
|
<li<%= sidebar_current("docs-commands") %>>
|
|
<a class="back" href="/docs/commands/index.html">Commands (CLI)</a>
|
|
<ul class="nav">
|
|
|
|
<li<%= sidebar_current("docs-commands-workspace") %>>
|
|
<a href="/docs/commands/workspace/index.html">workspace</a>
|
|
<ul class="nav">
|
|
<li<%= sidebar_current("docs-commands-workspace-sub-list") %>>
|
|
<a href="/docs/commands/workspace/list.html">list</a>
|
|
</li>
|
|
|
|
<li<%= sidebar_current("docs-commands-workspace-sub-select") %>>
|
|
<a href="/docs/commands/workspace/select.html">select</a>
|
|
</li>
|
|
|
|
<li<%= sidebar_current("docs-commands-workspace-sub-new") %>>
|
|
<a href="/docs/commands/workspace/new.html">new</a>
|
|
</li>
|
|
|
|
<li<%= sidebar_current("docs-commands-workspace-sub-delete") %>>
|
|
<a href="/docs/commands/workspace/delete.html">delete</a>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
|
|
</ul>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<%= partial("layouts/otherdocs", :locals => { :skip => "Terraform CLI" }) %>
|
|
|
|
<% end %>
|
|
|
|
<%= yield %>
|
|
<% end %>
|