2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-08-10 22:40:54 +00:00
Files
.github
_data
_drafts
_includes
_layouts
collection
alternatives.html
content.html
default.html
empty.html
plugin.html
publisher.html
user.html
_news
_plugins
_posts
_publishers
_repo
about
alternatives
assets
extend
use
.gitignore
404.md
CNAME
Gemfile
Gemfile.lock
LICENSE
README.md
_config.yml
blog.html
categories.html
contribute.md
demo.md
deploy.md
digitalocean.md
functions.md
index.md
news.html
newsletter.md
package-lock.json
package.json
plugins.html
postcss.config.js
publishers.html
support.md
tags.html
tailwind.config.js
inventree-website/_layouts/default.html
Matthias Mair 8d5fcdf93c Remove analytics ()
* remove analytics

* Update default.html
2023-11-27 23:56:35 +01:00

20 lines
403 B
HTML

<!DOCTYPE html>
<html lang="{{ site.lang | default: " en-US " }}">
<head>
{% include base/head.html %}
</head>
<body class="flex flex-col antialiased cm-gray-1 min-h-screen">
<div class="flex-none">
{% include base/header.html %} {{ content }}
</div>
<div class="flex-grow"></div>
<div class="flex-none">
{% include base/footer.html %}
</div>
</body>
</html>