Files
12factor/views/layout.erb
T
2011-06-03 02:03:48 -07:00

26 lines
734 B
Plaintext

<!doctype html>
<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="/style.css">
<script type="text/javascript" src="http://use.typekit.com/rsq7tro.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body>
<header>
<img src="/symbol.png" />
<h1><a href="/">The Twelve-Factor App</a></h1>
</header>
<%= yield %>
</body>
</html>