mirror of https://github.com/AMT-Cheif/drift.git
23 lines
674 B
HTML
23 lines
674 B
HTML
<!doctype html>
|
|
<html lang="{{ site.language }}" class="no-js">
|
|
<head>
|
|
{% include "partials/head" %}
|
|
</head>
|
|
<body class="td-{{ kind }}">
|
|
<header>
|
|
{% include "partials/navbar" %}
|
|
</header>
|
|
<div class="container-fluid td-default td-outer">
|
|
<main role="main" class="td-main">
|
|
{{ main }}
|
|
</main>
|
|
{% include "partials/footer" %}
|
|
</div>
|
|
{% if page.show_favorites %}
|
|
<a href="https://docs.flutter.dev/development/packages-and-plugins/favorites">
|
|
<img class="flutter_favorite" src="{{ 'flutter_favorites.png' | relUrl }}" alt="Icon for the Flutter Favorites program">
|
|
</a>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|