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.1 KB · 26 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/share-expired.njk8   Purpose : Clean expired/revoked share page — leaks no file details9   License : MIT © Simon-Pierre Boucher10  ─────────────────────────────────────────────11#}12{% extends "base.njk" %}13{% block title %}Link unavailable · SPB Drive{% endblock %}14{% block body %}15<div class="center-page">16  <div>17    <div class="big">⏳</div>18    <h1>This link has expired</h1>19    <p>The share you're looking for is no longer available.<br>Ask the sender for a fresh link.</p>20    <div class="share-footer" style="border: none;">21      SPB Drive · <a href="mailto:contact@spboucher.ai">contact@spboucher.ai</a>22    </div>23  </div>24</div>25{% endblock %}26