SPB Git

spb/drive Public

SPB Drive — self-hosted personal cloud drive (files, previews, sharing) on the MacLustr cluster.

JavaScript 82.7% CSS 10.6% Nunjucks 3.6% Shell 1.8% SQL 1.3%
1.4 KB · 31 lines jinja
Raw Blame History
1{#2  ─────────────────────────────────────────────3   SPB Drive — Personal Cloud Drive4  ─────────────────────────────────────────────5   Author  : Simon-Pierre Boucher6   Contact : contact@spboucher.ai7   File    : src/web/views/base.njk8   Purpose : Base HTML layout — head, fonts, tokens, favicon, manifest9   License : MIT © Simon-Pierre Boucher10  ─────────────────────────────────────────────11#}12<!doctype html>13<html lang="en" data-theme="light">14<head>15  <meta charset="utf-8">16  <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">17  <title>{% block title %}SPB Drive{% endblock %}</title>18  <meta name="theme-color" id="metaTheme" content="#f6f5f1">19  <link rel="icon" href="/assets/favicon.svg" type="image/svg+xml">20  <link rel="apple-touch-icon" href="/assets/icon-192.png">21  <link rel="manifest" href="/assets/manifest.webmanifest">22  <link rel="stylesheet" href="/assets/tokens.css">23  <link rel="stylesheet" href="/assets/app.css">24  {% block og %}{% endblock %}25  <script src="/assets/js/theme.js"></script>26</head>27<body>28{% block body %}{% endblock %}29</body>30</html>31