github.com/hugorut/terraform@v1.1.3/website/layouts/intro.erb (about)

     1  <% wrap_layout :inner do %>
     2    <% content_for(:custom_share) do %>
     3      <meta name="twitter:card" content="summary_large_image" />
     4      <meta property="og:image" content="<%= image_url("og-image-large.png") %>"/>
     5    <% end %>
     6  
     7    <% content_for :sidebar do %>
     8      <h4><a href="/intro/index.html">Introduction to Terraform</a></h4>
     9  
    10      <ul class="nav docs-sidenav">
    11        <li>
    12          <a href="/intro/index.html">What is Terraform?</a>
    13        </li>
    14  
    15        <li>
    16          <a href="/intro/use-cases.html">Use Cases</a>
    17        </li>
    18  
    19        <li>
    20          <a href="https://learn.hashicorp.com/collections/terraform/aws-get-started?utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS">Getting Started</a>
    21        </li>
    22  
    23        <li>
    24          <a href="/guides/core-workflow.html">The Core Terraform Workflow</a>
    25        </li>
    26  
    27        <li><a href="/docs/cloud/guides/recommended-practices/index.html">Terraform Recommended Practices</a>
    28          <ul class="nav">
    29            <li><a href="/docs/cloud/guides/recommended-practices/part1.html">Part 1: Workflow Overview</a></li>
    30            <li><a href="/docs/cloud/guides/recommended-practices/part2.html">Part 2: Evaluating Current Practices</a></li>
    31            <li><a href="/docs/cloud/guides/recommended-practices/part3.html">Part 3: Evolving Your Practices</a></li>
    32            <li><a href="/docs/cloud/guides/recommended-practices/part3.1.html">Part 3.1: From Manual to Semi-Automated</a></li>
    33            <li><a href="/docs/cloud/guides/recommended-practices/part3.2.html">Part 3.2: From Semi-Automated to Infrastructure as Code</a></li>
    34            <li><a href="/docs/cloud/guides/recommended-practices/part3.3.html">Part 3.3: From Infrastructure as Code to Collaborative IaC</a></li>
    35            <li><a href="/docs/cloud/guides/recommended-practices/part3.4.html">Part 3.4: Advanced Improvements</a></li>
    36          </ul>
    37        </li>
    38  
    39        <li>
    40          <a href="/intro/vs/index.html">Terraform vs. Other</a>
    41          <ul class="nav">
    42            <li>
    43              <a href="/intro/vs/chef-puppet.html">Chef, Puppet, etc.</a>
    44            </li>
    45            <li>
    46              <a href="/intro/vs/cloudformation.html">CloudFormation, Heat, etc.</a>
    47            </li>
    48            <li>
    49              <a href="/intro/vs/boto.html">Boto, Fog, etc.</a>
    50            </li>
    51            <li>
    52              <a href="/intro/vs/custom.html">Custom Solutions</a>
    53            </li>
    54          </ul>
    55        </li>
    56      </ul>
    57  
    58      <%= partial("layouts/otherdocs", :locals => { :skip => "Introduction to Terraform" }) %>
    59    <% end %>
    60  
    61    <%= yield %>
    62  <% end %>