* Update examples sea-orm version * Update example sea-schema version * Update [cli] sea-schema version * Fix [cli] cargo publish failed * Update CHANGELOG * Edit rocket example * Poem example with migration * Axum example with migration * Refactoring * Actix4 example with migration * Actix example with migration * Use sea_schema::migration::prelude
27 lines
856 B
Plaintext
27 lines
856 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Poem Example</title>
|
|
<meta name="description" content="Actix - SeaOrm integration example" />
|
|
<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="/static/css/normalize.css" />
|
|
<link rel="stylesheet" href="/static/css/skeleton.css" />
|
|
<link rel="stylesheet" href="/static/css/style.css" />
|
|
<link rel="icon" type="image/png" href="/static/images/favicon.png" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<p><!--Nothing to see here --></p>
|
|
{% block content %}{% endblock content %}
|
|
</div>
|
|
</body>
|
|
</html>
|