github.com/phobos182/packer@v0.2.3-0.20130819023704-c84d2aeffc68/website/source/layouts/layout.erb (about)

     1  <!DOCTYPE html>
     2  <html>
     3  	<head>
     4  		<title><%= current_page.data.page_title ? "#{current_page.data.page_title} - " : "" %>Packer</title>
     5  		<meta name="description" content="Packer is a free and open source tool for creating golden images for multiple platforms from a single source configuration." />
     6  
     7  		<!-- HTML5 shiv -->
     8  		<!--[if lt IE 9]>
     9  		<script src="dist/html5shiv.js"></script>
    10  		<![endif]-->
    11  
    12  		<!-- css -->
    13  		<%= stylesheet_link_tag "bootstrap.min", "main", "prettify" %>
    14  
    15  		<!-- js -->
    16  		<%= javascript_include_tag "prettify" %>
    17  
    18  		<!-- analytics -->
    19  		<script>
    20  			(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    21  					(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    22  				m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    23  			})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    24  
    25  			ga('create', 'UA-43075859-1', 'packer.io');
    26  			ga('send', 'pageview');
    27  
    28  		</script>
    29  
    30  		<!-- fonts -->
    31  		<link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
    32  		<script type="text/javascript" src="//use.typekit.net/apr3jjs.js"></script>
    33  		<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
    34  	</head>
    35  	<body>
    36  		<nav class="dark-background">
    37  		<div class="container-fluid">
    38  			<div class="row-fluid">
    39  				<div class="span12">
    40  					<a href="https://github.com/mitchellh/packer">
    41  						<button class="download pull-right primary">GitHub</button>
    42  					</a>
    43  					<a href="/downloads.html">
    44  						<button class="download pull-right primary spaced">Download</button>
    45  					</a>
    46  					<a href="/" class="packer-logo pull-left">Packer</a>
    47  					<ul>
    48  						<li><a href="/intro">Intro</a></li>
    49  						<li><a href="/docs">Documentation</a></li>
    50  						<li><a href="/community">Community</a></li>
    51  					</ul>
    52  				</div>
    53  			</div>
    54  		</div>
    55  		</nav>
    56  
    57  		<%= yield %>
    58  
    59  		<div class="clearfix"></div>
    60  
    61  		<footer class="dark-background">
    62  		<div class="container-fluid">
    63  			<div class="row-fluid">
    64  				<div class="span12">
    65  					<ul>
    66  						<li class="packer"><a href="/">Packer</a></li>
    67  						<li>A <a href="http://www.hashicorp.com/">HashiCorp</a> project.</li>
    68  						<a href="http://www.hashicorp.com">
    69  							<li class="pull-right hashi-logo">&nbps;</li>
    70  						</a>
    71  					</ul>
    72  				</div>
    73  			</div>
    74  		</div>
    75  		</footer>
    76  
    77  		<script type="text/javascript">prettyPrint();</script>
    78  	</body>
    79  </html>