2018-04-18 21:00:36 +00:00
|
|
|
{% set name = "safe.fiery.me" %}
|
|
|
|
{% set root = "https://safe.fiery.me" %}
|
|
|
|
{% set motto = "A small safe worth protecting." %}
|
|
|
|
{% set description = "A pomf-like file uploading service that doesn't suck." %}
|
|
|
|
{% set keywords = "upload,lolisafe,file,images,hosting,bobby,fiery" %}
|
|
|
|
|
|
|
|
{% set home_subtitle = "A <strong>modern</strong> self-hosted file upload service" %}
|
|
|
|
|
2018-08-30 18:45:51 +00:00
|
|
|
{% set google_site_verification = null %}
|
|
|
|
|
2018-04-18 21:00:36 +00:00
|
|
|
{#
|
2018-05-12 16:34:19 +00:00
|
|
|
This will be appended to the URLs of static files (CSS, JS, images, etc),
|
2018-04-23 19:58:44 +00:00
|
|
|
and should be changed on every updates to make sure clients load the very latest version of them.
|
2018-05-12 16:34:19 +00:00
|
|
|
v1: CSS and JS files (lolisafe).
|
|
|
|
v2: Images and config files (manifest.json, browserconfig.xml, etc).
|
|
|
|
v3: CSS and JS files (libs such as bulma, lazyload, etc).
|
2019-01-14 12:44:09 +00:00
|
|
|
v4: Renders in /public/render/* directories (to be used by render.js).
|
2018-04-18 21:00:36 +00:00
|
|
|
#}
|
2019-09-12 07:44:31 +00:00
|
|
|
{% set v1 = "gI6ZM0Tg0t" %}
|
2019-01-05 21:38:29 +00:00
|
|
|
{% set v2 = "hiboQUzAzp" %}
|
2019-09-02 10:24:04 +00:00
|
|
|
{% set v3 = "tWLiAlAX5i" %}
|
2019-08-18 14:52:19 +00:00
|
|
|
{% set v4 = "S3TAWpPeFS" %}
|
2018-04-18 21:00:36 +00:00
|
|
|
|
|
|
|
{#
|
|
|
|
These will be the links in the homepage and the No-JS uploader.
|
2018-04-23 19:58:44 +00:00
|
|
|
You may remove icons by changing "home_icons" to false.
|
|
|
|
It will then automatically use "attrs.title" as the display text.
|
2018-04-26 12:53:19 +00:00
|
|
|
Note: No-JS uploader page will have icons disabled by default (it will also not load fontello.css).
|
2018-04-18 21:00:36 +00:00
|
|
|
#}
|
2018-04-23 19:58:44 +00:00
|
|
|
{% set home_icons = true %}
|
2018-04-18 21:00:36 +00:00
|
|
|
{% set home_links = [
|
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
title: 'Home',
|
|
|
|
href: 'https://fiery.me'
|
|
|
|
},
|
|
|
|
icon: 'icon-home icon-2x'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
title: 'Blog',
|
|
|
|
href: 'https://blog.fiery.me'
|
|
|
|
},
|
|
|
|
icon: 'icon-archive icon-2x'
|
|
|
|
},
|
2018-11-24 13:58:33 +00:00
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
title: 'PrivateBin',
|
|
|
|
href: 'https://paste.fiery.me'
|
|
|
|
},
|
|
|
|
icon: 'icon-privatebin icon-2x'
|
|
|
|
},
|
2018-04-18 21:00:36 +00:00
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
id: 'ShareX',
|
|
|
|
title: 'ShareX',
|
2018-04-26 12:56:33 +00:00
|
|
|
href: 'https://safe.fiery.me/safe.fiery.me.sxcu?v=' + v2
|
2018-04-18 21:00:36 +00:00
|
|
|
},
|
|
|
|
icon: 'icon-sharex icon-2x'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attrs: {
|
2019-09-01 19:23:16 +00:00
|
|
|
title: 'Firefox extension',
|
|
|
|
href: 'https://addons.mozilla.org/en-US/firefox/addon/lolisafe/',
|
2018-04-25 14:24:31 +00:00
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener'
|
2018-04-18 21:00:36 +00:00
|
|
|
},
|
2019-09-01 19:23:16 +00:00
|
|
|
icon: 'icon-firefox icon-2x'
|
2018-04-18 21:00:36 +00:00
|
|
|
},
|
2018-04-21 19:08:09 +00:00
|
|
|
{
|
|
|
|
attrs: {
|
2019-09-01 19:23:16 +00:00
|
|
|
title: 'Chrome extension',
|
|
|
|
href: 'https://chrome.google.com/webstore/detail/loli-safe-uploader/enkkmplljfjppcdaancckgilmgoiofnj',
|
2018-04-25 14:24:31 +00:00
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener'
|
2018-04-21 19:08:09 +00:00
|
|
|
},
|
2019-09-01 19:23:16 +00:00
|
|
|
icon: 'icon-chrome icon-2x'
|
2018-04-21 19:08:09 +00:00
|
|
|
},
|
2018-04-18 21:00:36 +00:00
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
title: 'Bash uploader',
|
2018-12-19 11:25:58 +00:00
|
|
|
href: 'https://github.com/BobbyWibowo/uguush/tree/fiery-kde',
|
2018-04-25 14:24:31 +00:00
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener'
|
2018-04-18 21:00:36 +00:00
|
|
|
},
|
|
|
|
icon: 'icon-terminal icon-2x'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
title: 'FAQ',
|
|
|
|
href: 'faq'
|
|
|
|
},
|
|
|
|
icon: 'icon-help-circled icon-2x'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
title: 'Dashboard',
|
|
|
|
href: 'auth'
|
|
|
|
},
|
|
|
|
icon: 'icon-gauge icon-2x'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
attrs: {
|
|
|
|
title: 'View on GitHub',
|
2018-04-18 21:45:48 +00:00
|
|
|
href: 'https://github.com/BobbyWibowo/lolisafe',
|
2018-04-25 14:24:31 +00:00
|
|
|
target: '_blank',
|
|
|
|
rel: 'noopener'
|
2018-04-18 21:00:36 +00:00
|
|
|
},
|
|
|
|
icon: 'icon-github-circled icon-2x'
|
|
|
|
}
|
|
|
|
] %}
|