mirror of
https://github.com/kennethreitz/12factor.git
synced 2026-06-05 23:10:17 +00:00
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>The Twelve-Factor App</title>
|
|
<meta name="description" content="A methodology for building modern, scalable, maintainable software-as-a-service apps.">
|
|
<meta name="author" content="Adam Wiggins">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
|
|
<link rel="stylesheet" href="/css/screen.css" media="screen">
|
|
<link rel="stylesheet" href="/css/mobile.css" media="screen">
|
|
|
|
<script type="text/javascript" src="http://use.typekit.com/rsq7tro.js"></script>
|
|
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
|
|
|
|
<% if ENV['GOOGLE_ANALYTICS_KEY'] %>
|
|
<script type="text/javascript">
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', '<%= ENV['GOOGLE_ANALYTICS_KEY'] %>']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
</script>
|
|
<% end %>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1><a href="/" title="The Twelve-Factor App">The Twelve-Factor App</a></h1>
|
|
</header>
|
|
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|