mirror of
https://github.com/kennethreitz/12factor.git
synced 2026-06-05 23:10:17 +00:00
26 lines
741 B
Plaintext
26 lines
741 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="/images/symbol.png" />
|
|
<h1><a href="/">The Twelve-Factor App</a></h1>
|
|
</header>
|
|
|
|
<%= yield %>
|
|
</body>
|
|
</html>
|