27 lines
838 B
Plaintext
27 lines
838 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Rocket SeaORM Example</title>
|
|
<meta name="description" content="Example Rocket - SeaORM integration" />
|
|
<meta name="author" content="Sam Samai" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<link
|
|
href="//fonts.googleapis.com/css?family=Raleway:400,300,600"
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
/>
|
|
<link rel="stylesheet" href="/css/normalize.css" />
|
|
<link rel="stylesheet" href="/css/skeleton.css" />
|
|
<link rel="stylesheet" href="/css/style.css" />
|
|
<link rel="icon" type="image/png" href="/images/favicon.png" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<p><!--Nothing to see here --></p>
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
</body>
|
|
</html>
|