diff options
| author | Pitu <[email protected]> | 2021-01-04 01:04:20 +0900 |
|---|---|---|
| committer | Pitu <[email protected]> | 2021-01-04 01:04:20 +0900 |
| commit | fcd39dc550dec8dbcb8325e07e938c5024cbc33d (patch) | |
| tree | f41acb4e0d5fd3c3b1236fe4324b3fef9ec6eafe /views | |
| parent | Create FUNDING.yml (diff) | |
| parent | chore: update todo (diff) | |
| download | host.fuwn.me-fcd39dc550dec8dbcb8325e07e938c5024cbc33d.tar.xz host.fuwn.me-fcd39dc550dec8dbcb8325e07e938c5024cbc33d.zip | |
Merge branch 'dev'
Diffstat (limited to 'views')
| -rw-r--r-- | views/album.handlebars | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/views/album.handlebars b/views/album.handlebars deleted file mode 100644 index 82234a3..0000000 --- a/views/album.handlebars +++ /dev/null @@ -1,74 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <meta name="description" content="A pomf-like file uploading service that doesn't suck."> - <meta name="keywords" content="upload,lolisafe,file,images,hosting"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta http-equiv="X-UA-Compatible" content="IE=edge"> - - <link rel="apple-touch-icon" sizes="180x180" href="/images/icons/apple-touch-icon.png?v=XBreOJMe24"> - <link rel="icon" type="image/png" href="/images/icons/favicon-32x32.png?v=XBreOJMe24" sizes="32x32"> - <link rel="icon" type="image/png" href="/images/icons/favicon-16x16.png?v=XBreOJMe24" sizes="16x16"> - <link rel="manifest" href="/images/icons/manifest.json?v=XBreOJMe24"> - <link rel="mask-icon" href="/images/icons/safari-pinned-tab.svg?v=XBreOJMe24" color="#5bbad5"> - <link rel="shortcut icon" href="/images/icons/favicon.ico?v=XBreOJMe24"> - <meta name="apple-mobile-web-app-title" content="lolisafe"> - <meta name="application-name" content="lolisafe"> - <meta name="msapplication-config" content="/images/icons/browserconfig.xml?v=XBreOJMe24"> - <meta name="theme-color" content="#ffffff"> - - <meta property="og:url" content="https://lolisafe.moe" /> - <meta property="og:type" content="website" /> - <meta property="og:title" content="{{ title }} | {{ count }} files" /> - <meta property="og:description" content="lolisafe.moe | A small safe worth protecting." /> - <meta property="og:image" content="{{ thumb }}" /> - <meta property="og:image:secure_url" content="{{ thumb }}" /> - - <meta name="twitter:card" content="summary"> - <meta name="twitter:title" content="{{ title }} | {{ count }} files"> - <meta name="twitter:description" content="lolisafe.moe | A small safe worth protecting."> - <meta name="twitter:image" content="{{ thumb }}"> - <meta name="twitter:image:src" content="{{ thumb }}"> - - <title>{{ title }}</title> - <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.3.0/css/bulma.min.css"> - <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css"> - <link rel="stylesheet" type="text/css" href="/css/style.css"> - <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script> - <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.15.3/axios.min.js"></script> - </head> - - <body> - - <section class="hero is-fullheight"> - <div class="hero-head"> - <div class="container"> - <div class="columns"> - <div class="column is-9"> - <h1 class="title" id='title' style='margin-top: 1.5rem;'>{{ title }}</h1> - <h1 class="subtitle" id='count'>{{ count }} files</h1> - </div> - <div class="column is-3" style="text-align: right; padding-top: 45px;"> - {{#if enableDownload}} - <a class="button is-primary is-outlined" title="Download album" href="/api/album/zip/{{ identifier }}">Download Album</a> - {{/if}} - </div> - </div> - <hr> - </div> - </div> - <div class="hero-body"> - <div class="container" id='container'> - <div class="columns is-multiline is-mobile" id="table"> - {{#each files}} - <div class="column is-2"> - <a href="{{ this.file }}" target="_blank">{{{ this.thumb }}}</a> - </div> - {{/each}} - </div> - </div> - </div> - </section> - - </body> -</html> |