ef903d4f81
* website: various updates * Expose /docs and /intro views using documentation-style layout for index pages * Add [Use Case] Secrets Management page * Add [Use Case] Data Encryption page * Add [Use Case] Identity Based Access page * Update redirects file removing `/intro` routes redirecting to `learn.hashicorp` * Hide MegaNav on mobile * website: route /api straight to documentation * Bybass index page and jump straight to content
14 lines
263 B
Plaintext
14 lines
263 B
Plaintext
<% wrap_layout :layout do %>
|
|
<%= partial "partials/subnav" %>
|
|
|
|
<div class="content-wrap g-container">
|
|
<div id="sidebar" role="complementary">
|
|
<%= yield_content :sidebar %>
|
|
</div>
|
|
|
|
<div id="inner" role="main">
|
|
<%= yield %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|