2013-06-08 01:41:02 -04:00
|
|
|
<!DOCTYPE html>
|
2017-03-25 18:13:52 -04:00
|
|
|
<html lang="en">
|
2015-07-22 20:18:08 -04:00
|
|
|
<head>
|
2017-03-25 18:13:52 -04:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta name="description" content="<%= description_for(current_page) %>">
|
|
|
|
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="<%= image_path("favicons/apple-touch-icon.png") %>">
|
|
|
|
<link rel="icon" type="image/png" href="<%= image_path("favicons/favicon-32x32.png") %>" sizes="32x32">
|
|
|
|
<link rel="icon" type="image/png" href="<%= image_path("favicons/favicon-16x16.png") %>" sizes="16x16">
|
|
|
|
<link rel="manifest" href="/android-manifest.json">
|
|
|
|
<link rel="mask-icon" href="<%= image_path("favicons/safari-pinned-tab.svg") %>" color="#5bbad5">
|
|
|
|
<meta name="msapplication-config" content="/microsoft-tile.xml" />
|
|
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
|
|
|
|
<title><%= title_for(current_page) %></title>
|
|
|
|
|
2015-07-22 20:18:08 -04:00
|
|
|
<%= stylesheet_link_tag "application" %>
|
2017-03-25 18:13:52 -04:00
|
|
|
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<%= javascript_include_tag "ie-compat" %>
|
|
|
|
<![endif]-->
|
|
|
|
<%= javascript_include_tag "application" %>
|
2017-02-27 19:54:39 -05:00
|
|
|
|
2017-01-27 15:40:42 -05:00
|
|
|
<!-- Google Tag Manager -->
|
2017-03-25 18:13:52 -04:00
|
|
|
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
|
|
|
|
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
|
|
|
|
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|
|
|
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
|
|
|
|
})(window,document,'script','dataLayer','GTM-NR2SD7C');</script>
|
2017-02-27 19:54:39 -05:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
<!-- Typekit script to import Klavika font -->
|
2017-02-27 19:54:39 -05:00
|
|
|
<script src="https://use.typekit.net/wxf7mfi.js"></script>
|
|
|
|
<script>try{Typekit.load({ async: true });}catch(e){}</script>
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
<%= yield_content :head %>
|
2015-07-22 20:18:08 -04:00
|
|
|
</head>
|
2017-03-07 15:56:28 -05:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
<body id="<%= body_id_for(current_page) %>" class="<%= body_classes_for(current_page) %>">
|
2017-03-07 15:56:28 -05:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
<%= mega_nav :packer %>
|
|
|
|
|
|
|
|
<div id="header" class="navigation navbar-static-top hidden-print">
|
2017-03-07 16:03:52 -05:00
|
|
|
<div class="container">
|
2017-03-25 18:13:52 -04:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12">
|
|
|
|
<div class="navbar-header">
|
|
|
|
<div class="navbar-brand">
|
|
|
|
<a class="logo" href="/">Packer</a>
|
|
|
|
</div>
|
|
|
|
<button class="navbar-toggle" type="button">
|
|
|
|
<span class="sr-only">Toggle navigation</span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
<span class="icon-bar"></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="buttons hidden-xs">
|
|
|
|
<nav class="navigation-links" role="navigation">
|
|
|
|
<ul class="main-links nav navbar-nav navbar-right">
|
|
|
|
<li><a href="/intro/index.html">Intro</a></li>
|
|
|
|
<li><a href="/guides/index.html">Guides</a></li>
|
|
|
|
<li><a href="/docs/index.html">Docs</a></li>
|
|
|
|
<li><a href="/community.html">Community</a></li>
|
|
|
|
<li>
|
|
|
|
<a href="/downloads.html">
|
|
|
|
<%= inline_svg "download.svg" %> Download
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="https://github.com/mitchellh/packer">
|
|
|
|
<%= inline_svg "github.svg" %> GitHub
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2015-11-10 02:52:21 -05:00
|
|
|
</div>
|
2017-03-25 18:13:52 -04:00
|
|
|
|
2015-11-10 16:31:42 -05:00
|
|
|
<%= partial "layouts/sidebar" %>
|
2015-11-10 02:52:21 -05:00
|
|
|
|
2015-07-22 20:18:08 -04:00
|
|
|
<%= yield %>
|
2017-03-25 18:13:52 -04:00
|
|
|
|
|
|
|
<div id="footer" class="navigation hidden-print">
|
2017-03-07 16:03:52 -05:00
|
|
|
<div class="container">
|
2015-07-22 20:18:08 -04:00
|
|
|
<div class="row">
|
2015-11-10 15:19:17 -05:00
|
|
|
<div class="col-xs-12">
|
2017-03-25 18:13:52 -04:00
|
|
|
<ul class="footer-links nav navbar-nav">
|
|
|
|
<li><a href="/intro/index.html">Intro</a></li>
|
|
|
|
<li><a href="/guides/index.html">Guides</a></li>
|
|
|
|
<li><a href="/docs/index.html">Docs</a></li>
|
|
|
|
<li><a href="/community.html">Community</a></li>
|
|
|
|
<li><a href="/security.html">Security</a></li>
|
|
|
|
</ul>
|
|
|
|
<ul class="footer-links nav navbar-nav navbar-right">
|
|
|
|
<li><a href="<%= github_url :current_page %>">Edit this page</a></li>
|
|
|
|
</ul>
|
2015-11-10 15:19:17 -05:00
|
|
|
</div>
|
2015-07-22 20:18:08 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-07-22 22:29:59 -04:00
|
|
|
</div>
|
2017-03-25 18:13:52 -04:00
|
|
|
|
|
|
|
<script>
|
|
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
|
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
|
|
|
|
|
|
|
ga('create', 'UA-43075859-1', 'packer.io');
|
|
|
|
ga('require', 'linkid');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
adroll_adv_id = "6QAAFJDIWBG3DJBDRJ7BEX";
|
|
|
|
adroll_pix_id = "PYT5HSNKNRDS7LMUR5B6YG";
|
|
|
|
(function () {
|
|
|
|
var oldonload = window.onload;
|
|
|
|
window.onload = function(){
|
|
|
|
__adroll_loaded=true;
|
|
|
|
var scr = document.createElement("script");
|
|
|
|
var host = (("https:" == document.location.protocol) ? "https://s.adroll.com" : "http://a.adroll.com");
|
|
|
|
scr.setAttribute('async', 'true');
|
|
|
|
scr.type = "text/javascript";
|
|
|
|
scr.src = host + "/j/roundtrip.js";
|
|
|
|
((document.getElementsByTagName('head') || [null])[0] ||
|
|
|
|
document.getElementsByTagName('script')[0].parentNode).appendChild(scr);
|
|
|
|
if(oldonload){oldonload()}};
|
|
|
|
}());
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script type="application/ld+json">
|
|
|
|
{
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "Product",
|
|
|
|
"name": "Packer",
|
|
|
|
"alternateName": "Packer by HashiCorp",
|
|
|
|
"manufacturer": "HashiCorp",
|
|
|
|
"url": "https://www.packer.io",
|
|
|
|
"logo": "<%= File.join(base_url, image_path("logo-text.svg")) %>",
|
|
|
|
"sameAs": [
|
|
|
|
"https://github.com/mitchellh/packer"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
2013-06-08 01:41:02 -04:00
|
|
|
</html>
|