mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-02 22:36:21 -04:00
* Modernize Jekyll site The site now boasts the new README, Bootstrap 5 goodness, light/dark mode, and a footer so sleek it could moonwalk. * Fixed broken links
16 lines
305 B
HTML
16 lines
305 B
HTML
|
|
<!doctype html>
|
|
<html lang="{{ site.locale }}">
|
|
|
|
<head>{% include head.html %}</head>
|
|
|
|
<body class="d-flex flex-column min-vh-100">
|
|
<main class="{{ site.bs-container }} flex-grow-1 py-4">
|
|
{{ content }}
|
|
</main>
|
|
{% include footer.html %}
|
|
{% include scripts.html %}
|
|
</body>
|
|
|
|
</html>
|