2014-07-28 06:47:03 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
2014-10-22 05:20:52 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="description" content="<%= current_page.data.description %>">
|
2014-07-28 06:47:03 +02:00
|
|
|
|
2014-10-22 05:20:52 +02:00
|
|
|
<link rel="shortcut icon" href="<%= image_path('favicon.png') %>">
|
2014-07-28 06:47:03 +02:00
|
|
|
|
2014-10-22 05:20:52 +02:00
|
|
|
<title><%= [current_page.data.page_title, "Terraform by HashiCorp"].compact.join(" - ") %></title>
|
2014-07-28 06:47:03 +02:00
|
|
|
|
2014-10-22 05:20:52 +02:00
|
|
|
<%= stylesheet_link_tag "application" %>
|
2014-07-28 06:47:03 +02:00
|
|
|
|
2014-10-22 05:20:52 +02:00
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<%= javascript_include_tag "html5shiv", "respond.min" %>
|
|
|
|
<![endif]-->
|
2014-07-28 06:47:03 +02:00
|
|
|
|
2014-10-22 05:20:52 +02:00
|
|
|
<%= yield_content :head %>
|
|
|
|
</head>
|
2014-07-28 06:47:03 +02:00
|
|
|
|
2014-10-22 05:20:52 +02:00
|
|
|
<body id="page-<%= current_page.data.page_title ? "#{current_page.data.page_title}" : "home" %>" class="page-<%= current_page.data.page_title ? "#{current_page.data.page_title} layout-#{current_page.data.layout} page-sub" : "home layout-#{current_page.data.layout}" %>">
|