Compare commits
39 Commits
feature/cu
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 49cc36ef31 | |||
| fe70315a63 | |||
| 3aec58719b | |||
| b86f583f42 | |||
| ae1eca427f | |||
| 64b07ad34d | |||
| 6fbc87a465 | |||
| c88c43fd8e | |||
| 807e124570 | |||
| 0493632932 | |||
| ce4f7f54da | |||
| 9df7ed5be8 | |||
| 82035ea239 | |||
| b47f7c8e75 | |||
| dc196fb621 | |||
| 692747abc5 | |||
| cc62a54571 | |||
| 3165996d6e | |||
| e9d4163a5d | |||
| 52cca8eef2 | |||
| d88674fe40 | |||
| 42ebff2c7c | |||
| 5c7626db66 | |||
| ef04458cd8 | |||
| b0f62c7a7a | |||
| 95674d23e8 | |||
| ba883a7b1a | |||
| a44ae71df7 | |||
| 655e446120 | |||
| 66bd96ef8f | |||
| d7dd9947d9 | |||
| ff731cf9a9 | |||
| b55270cb81 | |||
| 78d0c7e7d8 | |||
| d14bcb8d20 | |||
| 13a25eab94 | |||
| 2ac16f628c | |||
| 5024adc165 | |||
| cbed294433 |
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2026 Wasted Audio
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
26
code/app.lua
26
code/app.lua
@ -15,19 +15,27 @@ if string.find(ngx.var.host, "panamaracing.club") then
|
||||
page_titles = {
|
||||
name = "Panama Racing Club Archive",
|
||||
url = "panamaracing.club",
|
||||
style = "panamastyle.css"
|
||||
css = "panamaracing.css",
|
||||
header = "panamaracing.club_header.png"
|
||||
}
|
||||
elseif string.find(ngx.var.host, "videohotmix.net") then
|
||||
page_titles = {
|
||||
name = "Hotmix Video Archive",
|
||||
url = "videohotmix.net",
|
||||
style = "hotmixstyle.css"
|
||||
css = "videohotmix.css",
|
||||
header = "videohotmix.net-logo.png"
|
||||
}
|
||||
elseif string.find(ngx.var.host, "hotmixxx.com") then
|
||||
page_titles = {
|
||||
name = "Hotmix Video Archive",
|
||||
url = "videohotmix.net",
|
||||
css = "videohotmix.css",
|
||||
header = "videohotmix.net-logo.png"
|
||||
}
|
||||
else
|
||||
page_titles = {
|
||||
name = "Local Test Archive",
|
||||
url = "localhost",
|
||||
style = "style.css"
|
||||
url = "localhost"
|
||||
}
|
||||
end
|
||||
|
||||
@ -36,6 +44,16 @@ app:get("/", function(self)
|
||||
return handlers.Roothandler(self)
|
||||
end)
|
||||
|
||||
app:get("/latest.json", function(self)
|
||||
self.titles = page_titles
|
||||
return handlers.Latesthandler(self)
|
||||
end)
|
||||
|
||||
app:get("/latest.xml", function(self)
|
||||
self.titles = page_titles
|
||||
return handlers.RSShandler(self)
|
||||
end)
|
||||
|
||||
app:get("/*", function(self)
|
||||
self.titles = page_titles
|
||||
return handlers.Roothandler(self)
|
||||
|
||||
20
code/handlers/RSShandler.lua
Normal file
20
code/handlers/RSShandler.lua
Normal file
@ -0,0 +1,20 @@
|
||||
local to_json = require("lapis.util").to_json
|
||||
local escape = require("lapis.util").escape
|
||||
local autoload = require("lapis.util").autoload
|
||||
local config = require("lapis.config")
|
||||
local hotmixes = autoload("hotmixes")
|
||||
|
||||
local function RSShandler(self)
|
||||
|
||||
local path = config.get().mount .. self.titles.url
|
||||
local latest_path, latest_name = hotmixes.utils.these_latest( path )
|
||||
|
||||
local host = self.req.parsed_url.scheme .. '://' .. self.req.parsed_url.host
|
||||
self.datapath = host .. '/data/' .. self.titles.url .. '/'
|
||||
self.latestpath = latest_path
|
||||
self.latestname = latest_name
|
||||
|
||||
return { content_type = "application/rss+xml", layout = require "views.rss" }
|
||||
end
|
||||
|
||||
return RSShandler
|
||||
29
code/handlers/latesthandler.lua
Normal file
29
code/handlers/latesthandler.lua
Normal file
@ -0,0 +1,29 @@
|
||||
local to_json = require("lapis.util").to_json
|
||||
local escape = require("lapis.util").escape
|
||||
local autoload = require("lapis.util").autoload
|
||||
local config = require("lapis.config")
|
||||
local hotmixes = autoload("hotmixes")
|
||||
|
||||
local function Latesthandler(self)
|
||||
|
||||
local path = config.get().mount .. self.titles.url
|
||||
local latest_path, latest_name = hotmixes.utils.these_latest( path )
|
||||
|
||||
local host = self.req.parsed_url.scheme .. '://' .. self.req.parsed_url.host
|
||||
local data_path = host .. '/data/' .. self.titles.url .. '/'
|
||||
local latest_json = {}
|
||||
latest_json["files"] = {}
|
||||
|
||||
for i, file in ipairs(latest_path) do
|
||||
local file_data = {}
|
||||
|
||||
file_data["name"] = latest_name[i]
|
||||
file_data["url"] = data_path .. file
|
||||
|
||||
table.insert(latest_json["files"], file_data)
|
||||
end
|
||||
|
||||
return { json = latest_json }
|
||||
end
|
||||
|
||||
return Latesthandler
|
||||
@ -1,4 +1,3 @@
|
||||
local to_json = require("lapis.util").to_json
|
||||
local autoload = require("lapis.util").autoload
|
||||
local config = require("lapis.config")
|
||||
local hotmixes = autoload("hotmixes")
|
||||
@ -17,8 +16,13 @@ local function Roothandler(self)
|
||||
self.images = stuff.images
|
||||
self.latestpath = latest_path
|
||||
self.latestname = latest_name
|
||||
self.functions = { hotesc = hotmixes.utils.hotesc }
|
||||
|
||||
if self.titles['url'] == "panamaracing.club" then
|
||||
return { render = "root", layout = require "views.prc_layout" }
|
||||
else
|
||||
return { render = "root" }
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
local lfs = require 'lfs_ffi'
|
||||
local config = require("lapis.config").get()
|
||||
local escape = require("lapis.util").escape
|
||||
|
||||
|
||||
-- setup
|
||||
@ -29,6 +30,10 @@ local type_allowed = { jpg=true, jpeg=true, png=true, gif=true, mp3=true, flac=t
|
||||
|
||||
local utils = {}
|
||||
|
||||
local function hotesc ( str )
|
||||
return escape(str):gsub("%%2f", "/"):gsub("%%2d", "-"):gsub("%%2e", ".")
|
||||
end
|
||||
|
||||
utils['request_path'] = request_path
|
||||
utils['data_path'] = data_path
|
||||
|
||||
@ -44,7 +49,7 @@ end
|
||||
|
||||
utils['latest_files'] = function( directory )
|
||||
local i, t, popen = 0, {}, io.popen
|
||||
local pfile = popen('find "'..directory..'" -type f ! -name \'*.filepart\' -printf \'%C@ %p\n\'| sort -nr | head -7 | cut -f2- -d" "| sed s:"'..directory..'/"::')
|
||||
local pfile = popen('find -L "'..directory..'" -type f ! -name \'*.filepart\' ! -name \'*.png\' ! -name \'*.jpg\' ! -name \'*.jpeg\' ! -name \'*.gif\' -printf \'%C@ %p\n\'| sort -nr | head -7 | cut -f2- -d" "| sed s:"'..directory..'/"::')
|
||||
for filename in pfile:lines() do
|
||||
if utils.match_ext ( filename, type_allowed ) then
|
||||
i = i + 1
|
||||
@ -83,12 +88,17 @@ utils['these_files'] = function( path )
|
||||
return stuff
|
||||
end
|
||||
|
||||
utils['hotesc'] = function( str )
|
||||
return hotesc(str)
|
||||
end
|
||||
|
||||
utils['these_latest'] = function( path )
|
||||
-- list last 10 modified files in our directory
|
||||
local latest_path, latest_name = {}, {}
|
||||
|
||||
for i, file_path in ipairs( utils.latest_files( path ) ) do
|
||||
table.insert( latest_path, file_path)
|
||||
local escpath = hotesc(file_path)
|
||||
table.insert( latest_path, escpath )
|
||||
|
||||
local temp = ""
|
||||
local result = ""
|
||||
|
||||
BIN
code/static/ARCADECLASSIC-OV2X.TTF
Normal file
BIN
code/static/ARCADECLASSIC-OV2X.TTF
Normal file
Binary file not shown.
BIN
code/static/ARCADECLASSIC-OV2X.woff
Normal file
BIN
code/static/ARCADECLASSIC-OV2X.woff
Normal file
Binary file not shown.
BIN
code/static/ARCADECLASSIC-OV2X.woff2
Normal file
BIN
code/static/ARCADECLASSIC-OV2X.woff2
Normal file
Binary file not shown.
BIN
code/static/panamaracing.club_divider.png
Normal file
BIN
code/static/panamaracing.club_divider.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.9 KiB |
BIN
code/static/panamaracing.club_header.png
Normal file
BIN
code/static/panamaracing.club_header.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 53 KiB |
@ -1,27 +1,31 @@
|
||||
|
||||
:root {
|
||||
--main-color: #00980a;
|
||||
--ifm-red: #e2001a;
|
||||
--ifm-grey: #7e7e7e;
|
||||
--ifm-black: #222222;
|
||||
--ifm-light-black: #1e1e1e;
|
||||
--ifm-deep-black: #111111;
|
||||
--ifm-white: #ffffff;
|
||||
}
|
||||
|
||||
|
||||
.h1
|
||||
{
|
||||
font-family: Staatliches;
|
||||
color: var(--main-color);
|
||||
border-top: 3px solid var(--main-color);
|
||||
border-bottom: 3px solidvar(--main-color);
|
||||
font-family: Helvetica;
|
||||
font-size: 16px;
|
||||
color: var(--ifm-white);
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
margin-bottom: 15px;
|
||||
margin-top: 0px;
|
||||
margin-top: 10px;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
.p
|
||||
{
|
||||
font-family: Helvetica;
|
||||
color: #7e7e7e;
|
||||
font-size: 6px;
|
||||
color: var(--ifm-grey);
|
||||
margin-bottom: 45px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.href
|
||||
@ -34,21 +38,21 @@
|
||||
{
|
||||
line-height: 16px;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
font-size: 10px;
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-family: Helvetica;
|
||||
}
|
||||
|
||||
.amixlink
|
||||
{
|
||||
font-family: Helvetica;
|
||||
color: #9d9d9d;
|
||||
color: var(--ifm-grey);
|
||||
line-height: 1.6em;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
font-size: 10px;
|
||||
text-decoration: none;
|
||||
background: #111111;
|
||||
background: var(--ifm-deep-black);
|
||||
display: inline-flex;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
@ -58,83 +62,76 @@
|
||||
|
||||
.amixlink:hover
|
||||
{
|
||||
font-family: Helvetica;
|
||||
color: #000;
|
||||
line-height: 1.6em;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
background: var(--main-color);
|
||||
background: var(--ifm-red);
|
||||
}
|
||||
|
||||
.body
|
||||
{
|
||||
width: 80%;
|
||||
padding-left: 10%;
|
||||
padding-right: 10%;
|
||||
background-color: #222222;
|
||||
width: 100%;
|
||||
background-color: var(--ifm-black);
|
||||
}
|
||||
|
||||
.mixsections
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-family: Helvetica;
|
||||
font-weight: 900;
|
||||
font-size: 16px;
|
||||
color: #787878;
|
||||
font-size: 12px;
|
||||
color: var(--ifm-grey);
|
||||
padding: 5px;
|
||||
margin-top: 2%;
|
||||
margin-bottom: 5px;
|
||||
margin-right: 15px;
|
||||
border: solid 3px #787878;
|
||||
border: solid 3px var(--ifm-grey);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.hotmixlogo
|
||||
.prclogo
|
||||
{
|
||||
width: 150px;
|
||||
padding-bottom: 0px;
|
||||
height: 120px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.divider
|
||||
{
|
||||
height: 23px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 10px;
|
||||
padding-top: 10px;
|
||||
}
|
||||
|
||||
.h2
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-family: Helvetica;
|
||||
font-size: 24px;
|
||||
color: #4c4c4c;
|
||||
color: var(--ifm-grey);
|
||||
font-weight: 200;
|
||||
border-bottom: 2px solid #4c4c4c;
|
||||
border-bottom: 2px solid var(--ifm-grey);
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.header
|
||||
{
|
||||
width: 100%;
|
||||
background-image: url('/img/header.png');
|
||||
max-height: 185px;
|
||||
max-height: 120px;
|
||||
}
|
||||
|
||||
.footer
|
||||
{
|
||||
width: 100%;
|
||||
height: 250px;
|
||||
border-top: 2px solid var(--main-color);
|
||||
border-top: 2px solid var(--ifm-red);
|
||||
float: left;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-size: 18px;
|
||||
text-decoration: inherit;
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
.djsectionmenu
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-size: 33px;
|
||||
color: var(--main-color);
|
||||
font-family: Helvetica;
|
||||
font-size: 18px;
|
||||
color: var(--ifm-red);
|
||||
line-height: 1em;
|
||||
z-index: 100;
|
||||
display: block;
|
||||
@ -153,16 +150,10 @@
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-size: 33px;
|
||||
color: var(--main-color);
|
||||
line-height: 1em;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
padding-bottom: 5px;
|
||||
font-family: Helvetica;
|
||||
font-size: 18px;
|
||||
text-decoration: inherit;
|
||||
color: var(--ifm-red);
|
||||
}
|
||||
|
||||
.djsection:hover
|
||||
@ -172,11 +163,11 @@
|
||||
|
||||
.h2
|
||||
{
|
||||
font-family: Staatliches;
|
||||
color: var(--main-color);
|
||||
font-size: 24px;
|
||||
font-family: Helvetica;
|
||||
color: var(--ifm-red);
|
||||
font-size: 16px;
|
||||
padding-top: 5px;
|
||||
border-bottom: 2px solid var(--main-color);
|
||||
border-bottom: 2px solid var(--ifm-red);
|
||||
}
|
||||
|
||||
.homeheader
|
||||
@ -230,10 +221,7 @@
|
||||
padding-right: 5%;
|
||||
width: 40%;
|
||||
}
|
||||
.h2
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.footer
|
||||
{
|
||||
margin-top: 15%;
|
||||
@ -262,7 +250,7 @@
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2.5%;
|
||||
background-color: var(--main-color);
|
||||
background-color: var(--ifm-red);
|
||||
}
|
||||
|
||||
.image_collage
|
||||
@ -322,32 +310,11 @@
|
||||
}
|
||||
}
|
||||
|
||||
.alphabetpanel
|
||||
.content
|
||||
{
|
||||
width: 100%;
|
||||
float: left;
|
||||
border-top: 1px dotted;
|
||||
background-repeat: repeat;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@media (min-width:500px)
|
||||
{
|
||||
.alphabetimg
|
||||
{
|
||||
position: relative;
|
||||
float: none;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
height: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.alphabetgrid
|
||||
{
|
||||
width: 100%;
|
||||
margin-top: 40px;
|
||||
width: 80%;
|
||||
padding-left: 10%;
|
||||
padding-right: 10%;
|
||||
}
|
||||
|
||||
.latest
|
||||
@ -364,15 +331,6 @@
|
||||
float: left;
|
||||
}
|
||||
|
||||
.alphabet
|
||||
{
|
||||
width: 100%;
|
||||
margin-bottom: 40px;
|
||||
float: left;
|
||||
clear: both;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.sponsors
|
||||
{
|
||||
margin-top: 20px;
|
||||
@ -394,22 +352,117 @@
|
||||
min-width: 60px;
|
||||
width: 50%;
|
||||
}
|
||||
.alphabetimg500
|
||||
{
|
||||
height: 100px;
|
||||
}
|
||||
.alphabetpanel480down
|
||||
{
|
||||
height: 70px;
|
||||
overflow: hidden;
|
||||
width: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:767px)
|
||||
{
|
||||
.h1mobile
|
||||
@media screen and (min-width: 600px) {
|
||||
|
||||
.h1{
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.p
|
||||
{
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
.mixlink
|
||||
{
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.amixlink
|
||||
{
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.mixsections
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.h2
|
||||
{
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.header
|
||||
{
|
||||
max-height: 180px;
|
||||
}
|
||||
|
||||
.prclogo
|
||||
{
|
||||
height: 180px;
|
||||
}
|
||||
|
||||
.divider
|
||||
{
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.djsectionmenu
|
||||
{
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.h1{
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.p
|
||||
{
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.mixlink
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.amixlink
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.mixsections
|
||||
{
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.h2
|
||||
{
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.header
|
||||
{
|
||||
max-height: 220px;
|
||||
}
|
||||
|
||||
.prclogo
|
||||
{
|
||||
height: 220px;
|
||||
}
|
||||
|
||||
.divider
|
||||
{
|
||||
height: 43px;
|
||||
}
|
||||
|
||||
.djsectionmenu
|
||||
{
|
||||
font-size: 33px;
|
||||
}
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-size: 33px;
|
||||
}
|
||||
}
|
||||
@ -1,13 +1,25 @@
|
||||
:root {
|
||||
--main-color: #e2001a;
|
||||
@font-face {
|
||||
font-family: 'ArcadeFont';
|
||||
src: url('ARCADECLASSIC-OV2X.woff2') format('woff2'),
|
||||
url('ARCADECLASSIC-OV2X.woff') format('woff'),
|
||||
url('ARCADECLASSIC-OV2X.ttf') format('truetype');
|
||||
}
|
||||
|
||||
:root {
|
||||
--ifm-red: #e2001a;
|
||||
--ifm-grey: #7e7e7e;
|
||||
--ifm-black: #222222;
|
||||
--ifm-deep-black: #111111;
|
||||
}
|
||||
|
||||
|
||||
.h1
|
||||
{
|
||||
font-family: Staatliches;
|
||||
color: var(--main-color);
|
||||
border-top: 3px solid var(--main-color);
|
||||
border-bottom: 3px solidvar(--main-color);
|
||||
font-family: ArcadeFont;
|
||||
font-size: 16px;
|
||||
color: var(--ifm-red);
|
||||
border-top: 3px solid var(--ifm-red);
|
||||
border-bottom: 3px solid var(--ifm-red);
|
||||
padding-top: 5px;
|
||||
padding-bottom: 5px;
|
||||
margin-bottom: 15px;
|
||||
@ -17,15 +29,15 @@
|
||||
|
||||
.p
|
||||
{
|
||||
font-family: Helvetica;
|
||||
color: #7e7e7e;
|
||||
font-family: ArcadeFont;
|
||||
font-size: 6px;
|
||||
color: var(--ifm-grey);
|
||||
margin-bottom: 45px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.href
|
||||
{
|
||||
font-family: Helvetica;
|
||||
font-family: ArcadeFont;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@ -33,21 +45,21 @@
|
||||
{
|
||||
line-height: 16px;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
font-size: 10px;
|
||||
margin-bottom: 0;
|
||||
margin-top: 0;
|
||||
font-family: Helvetica, Arial, sans-serif;
|
||||
font-family: ArcadeFont;
|
||||
}
|
||||
|
||||
.amixlink
|
||||
{
|
||||
font-family: Helvetica;
|
||||
color: #9d9d9d;
|
||||
font-family: ArcadeFont;
|
||||
color: var(--ifm-grey);
|
||||
line-height: 1.6em;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
font-size: 10px;
|
||||
text-decoration: none;
|
||||
background: #111111;
|
||||
background: var(--ifm-deep-black);
|
||||
display: inline-flex;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
@ -57,12 +69,8 @@
|
||||
|
||||
.amixlink:hover
|
||||
{
|
||||
font-family: Helvetica;
|
||||
color: #000;
|
||||
line-height: 1.6em;
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
background: var(--main-color);
|
||||
background: var(--ifm-red);
|
||||
}
|
||||
|
||||
.body
|
||||
@ -70,20 +78,20 @@
|
||||
width: 80%;
|
||||
padding-left: 10%;
|
||||
padding-right: 10%;
|
||||
background-color: #222222;
|
||||
background-color: var(--ifm-black);
|
||||
}
|
||||
|
||||
.mixsections
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-family: ArcadeFont;
|
||||
font-weight: 900;
|
||||
font-size: 16px;
|
||||
color: #787878;
|
||||
font-size: 12px;
|
||||
color: var(--ifm-grey);
|
||||
padding: 5px;
|
||||
margin-top: 2%;
|
||||
margin-bottom: 5px;
|
||||
margin-right: 15px;
|
||||
border: solid 3px #787878;
|
||||
border: solid 3px var(--ifm-grey);
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
@ -97,18 +105,18 @@
|
||||
|
||||
.h2
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-size: 24px;
|
||||
color: #4c4c4c;
|
||||
font-family: ArcadeFont;
|
||||
font-size: 16px;
|
||||
color: var(--ifm-grey);
|
||||
font-weight: 200;
|
||||
border-bottom: 2px solid #4c4c4c;
|
||||
border-bottom: 2px solid var(--ifm-grey);
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.header
|
||||
{
|
||||
width: 100%;
|
||||
background-image: url('/img/header.png');
|
||||
background-image: url("/static/videohotmix.net_header.png");
|
||||
max-height: 185px;
|
||||
}
|
||||
|
||||
@ -116,24 +124,16 @@
|
||||
{
|
||||
width: 100%;
|
||||
height: 250px;
|
||||
border-top: 2px solid var(--main-color);
|
||||
border-top: 2px solid var(--ifm-red);
|
||||
float: left;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-size: 18px;
|
||||
text-decoration: inherit;
|
||||
color: var(--main-color);
|
||||
}
|
||||
|
||||
.djsectionmenu
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-size: 33px;
|
||||
color: var(--main-color);
|
||||
font-family: ArcadeFont;
|
||||
font-size: 18px;
|
||||
color: var(--ifm-red);
|
||||
line-height: 1em;
|
||||
z-index: 100;
|
||||
display: block;
|
||||
@ -152,16 +152,10 @@
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-family: Staatliches;
|
||||
font-size: 33px;
|
||||
color: var(--main-color);
|
||||
line-height: 1em;
|
||||
margin-bottom: 0px;
|
||||
margin-top: 0px;
|
||||
padding-top: 5px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
padding-bottom: 5px;
|
||||
font-family: ArcadeFont;
|
||||
font-size: 18px;
|
||||
text-decoration: inherit;
|
||||
color: var(--ifm-red);
|
||||
}
|
||||
|
||||
.djsection:hover
|
||||
@ -171,11 +165,11 @@
|
||||
|
||||
.h2
|
||||
{
|
||||
font-family: Staatliches;
|
||||
color: var(--main-color);
|
||||
font-size: 24px;
|
||||
font-family: ArcadeFont;
|
||||
color: var(--ifm-red);
|
||||
font-size: 16px;
|
||||
padding-top: 5px;
|
||||
border-bottom: 2px solid var(--main-color);
|
||||
border-bottom: 2px solid var(--ifm-red);
|
||||
}
|
||||
|
||||
.homeheader
|
||||
@ -229,10 +223,7 @@
|
||||
padding-right: 5%;
|
||||
width: 40%;
|
||||
}
|
||||
.h2
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.footer
|
||||
{
|
||||
margin-top: 15%;
|
||||
@ -261,7 +252,7 @@
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
margin-bottom: 2.5%;
|
||||
background-color: var(--main-color);
|
||||
background-color: var(--ifm-red);
|
||||
}
|
||||
|
||||
.image_collage
|
||||
@ -321,34 +312,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
.alphabetpanel
|
||||
{
|
||||
width: 100%;
|
||||
float: left;
|
||||
border-top: 1px dotted;
|
||||
background-repeat: repeat;
|
||||
overflow: hidden;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
@media (min-width:500px)
|
||||
{
|
||||
.alphabetimg
|
||||
{
|
||||
position: relative;
|
||||
float: none;
|
||||
top: 5px;
|
||||
left: 5px;
|
||||
height: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.alphabetgrid
|
||||
{
|
||||
width: 100%;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.latest
|
||||
{
|
||||
position: relative;
|
||||
@ -363,15 +326,6 @@
|
||||
float: left;
|
||||
}
|
||||
|
||||
.alphabet
|
||||
{
|
||||
width: 100%;
|
||||
margin-bottom: 40px;
|
||||
float: left;
|
||||
clear: both;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.sponsors
|
||||
{
|
||||
margin-top: 20px;
|
||||
@ -393,22 +347,87 @@
|
||||
min-width: 60px;
|
||||
width: 50%;
|
||||
}
|
||||
.alphabetimg500
|
||||
{
|
||||
height: 100px;
|
||||
}
|
||||
.alphabetpanel480down
|
||||
{
|
||||
height: 70px;
|
||||
overflow: hidden;
|
||||
width: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width:767px)
|
||||
{
|
||||
.h1mobile
|
||||
@media screen and (min-width: 600px) {
|
||||
|
||||
.h1{
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.p
|
||||
{
|
||||
font-size: 8px;
|
||||
}
|
||||
|
||||
.mixlink
|
||||
{
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.amixlink
|
||||
{
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.mixsections
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.h2
|
||||
{
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.djsectionmenu
|
||||
{
|
||||
font-size: 25px;
|
||||
}
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-size: 28px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.h1{
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.p
|
||||
{
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.mixlink
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.amixlink
|
||||
{
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.mixsections
|
||||
{
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.h2
|
||||
{
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.djsectionmenu
|
||||
{
|
||||
font-size: 33px;
|
||||
}
|
||||
|
||||
.djsection
|
||||
{
|
||||
font-size: 33px;
|
||||
}
|
||||
}
|
||||
BIN
code/static/videohotmix.net-logo.png
Normal file
BIN
code/static/videohotmix.net-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 74 KiB |
BIN
code/static/videohotmix.net.ico
Normal file
BIN
code/static/videohotmix.net.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 225 KiB |
71
code/static/videohotmix.net.svg
Normal file
71
code/static/videohotmix.net.svg
Normal file
@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="Capa_1" data-name="Capa 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 853.68451 824.84772">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #20211c;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: #b71918;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="cls-1" d="M12.45531,87.78015c3.30672-4.29873,11.90419-4.62941,11.90419-4.62941,0,0,122.67926-7.27478,165.33593-8.59747s159.38384-4.62941,227.83291-3.63739c68.44907.99202,242.38247,6.61344,288.01519,9.25881s118.04985,7.10944,124.33262,7.60545,10.25083.16534,12.40019,2.14937c2.14937,1.98403,2.48004,5.95209,3.14138,8.2668.66134,2.3147,3.30672,65.63836,4.29873,85.97468s3.96806,159.2185,3.96806,214.11003-3.96806,316.1223-3.96806,323.39708.22045,13.44732,0,15.87225-.22045,3.30672-1.98403,5.73165c-1.76358,2.42493-5.73165,3.74761-9.25881,4.40896-3.52717.66134-25.35151,1.98403-30.42181,2.20448-5.0703.22045-15.43135.88179-15.43135.88179,0,0,0,15.87225-.4409,25.7924-.4409,9.92016-1.98403,29.98092-1.98403,31.96495s.22045,2.42493-1.32269,3.96806.22045,1.10224-2.64537,1.54314c-2.86582.4409-123.67127,4.18851-155.19533,5.5112-31.52405,1.32269-171.28802,5.29075-229.48627,5.29075s-231.9112-9.25881-259.24674-10.1406-64.81168-3.08627-70.10243-3.74761c-5.29075-.66134-7.8259-2.53515-8.37702-3.74761-.55112-1.21246-4.40896-8.92814-5.0703-19.61986s-2.53515-44.75092-2.53515-44.75092c0,0-26.89464-.33067-28.43778-.4409s-12.8962.66134-17.41538-2.86582c-4.51918-3.52717-8.48724-7.27478-9.58948-17.63583-1.10224-10.36105-.88179-237.64284-.22045-312.37468.66134-74.73184,5.29075-251.97196,5.95209-275.11899.66134-23.14703,1.32269-31.41383,2.3147-36.3739s3.63739-10.25083,3.63739-10.25083Z"/>
|
||||
<path class="cls-2" d="M181.97975,77.97021s-97.87887,4.84985-111.54664,5.29075-49.23371,5.45375-49.82123,6.17254c-.58752.71879-1.32269,1.76358-1.76358,4.40896-.4409,2.64537-3.96806,82.88841-4.84985,96.11529-.88179,13.22687-4.84985,78.03856-3.52717,81.12483,1.32269,3.08627-.88179,9.69971,2.20448,11.0224,3.08627,1.32269,4.40896,6.17254,3.52717,9.69971-.88179,3.52717-.88179,122.12814-.88179,124.77351s.4409,3.52717,1.32269,5.73165c.88179,2.20448,2.20448-136.6777,2.20448-136.6777,0,0-1.32269-15.87225-1.76358-19.84031s7.05433-165.77682,7.93612-167.54041c.88179-1.76358,1.32269-4.40896,6.17254-4.84985,4.84985-.4409,78.47945-4.40896,82.88841-4.84985s60.68626-2.17063,65.69348-3.08627c5.00721-.91564,6.24813-2.67092,6.17254-4.40896-.07558-1.73804-3.96806-3.08627-3.96806-3.08627Z"/>
|
||||
<path class="cls-2" d="M15.32113,484.47615c.4409,6.17254-2.64537,93.02902-2.64537,101.40604s-.88179,29.54002-1.32269,32.62629c-.4409,3.08627-3.52717,9.69971-3.52717,12.78598v89.06095c0,3.08627,7.93612,14.54956,11.0224,16.31315,3.08627,1.76358,9.69971,3.08627,14.54956,3.08627s65.25258,3.52717,69.66154,3.52717,31.7445,3.52717,33.06719,2.64537,1.32269-52.02571,1.76358-59.08004c.4409-7.05433.88179-18.95852-1.32269-20.28121s-7.93612-3.08627-14.99046-2.64537-97.43797-3.96806-97.43797-3.96806c0,0-3.96806-2.20448-3.08627-3.96806.88179-1.76358,10.5815-1.32269,17.63583,0,7.05433,1.32269,38.79883,5.29075,40.12152,1.76358,1.32269-3.52717,1.76358-3.96806-1.76358-5.29075-3.52717-1.32269-47.61675-2.64537-50.26212-6.17254-2.64537-3.52717-4.84985-11.46329-5.29075-14.54956-.4409-3.08627-3.52717-90.38364-1.76358-102.28783,1.76358-11.90419-.88179-50.70302-1.76358-59.08004-.88179-8.37702-1.32269-8.81792-3.52717-9.25881-2.20448-.4409.88179,23.36748.88179,23.36748Z"/>
|
||||
<path class="cls-2" d="M107.02746,121.178c-7.27478-.66134-58.85959-1.32269-60.84362,1.32269s-5.95209,4.62941-5.95209,7.27478-.96721,111.84225-1.47562,118.74878-8.44453,99.49465-5.79916,102.14002c2.64537,2.64537,3.30672,1.32269,5.29075,1.32269s7.27478-46.29406,7.93612-59.52093-1.32269-54.23018,2.64537-58.85959,17.85628-16.53359,19.17897-19.84031-5.29075-61.50497-4.62941-68.77975c.66134-7.27478,2.64537-9.25881,5.95209-9.25881h48.93944c1.98403,0,1.98403-.66134,3.96806-4.62941s-15.21091-9.92016-15.21091-9.92016Z"/>
|
||||
<path class="cls-2" d="M182.86154,674.94314c-3.08627,0-35.71256-.88179-35.71256-.88179,0,0,.42345-1.05608-1.11096,1.89689s-3.298,43.51538-2.4162,46.16076c.88179,2.64537,4.84985,8.37702,6.61344,8.81792s108.90127,6.17254,126.5371,7.05433c17.63583.88179,264.97838,8.37702,278.20526,6.61344,13.22687-1.76358,60.40273-5.29075,63.92989-5.29075s3.08627-5.29075,3.08627-6.61344-4.40896-2.64537-4.40896-2.64537c0,0-73.1887,2.20448-119.48276,3.08627s-260.12853-4.84985-275.11899-7.93612c-14.99046-3.08627-55.99377-6.61344-53.34839-12.78598,2.64537-6.17254,12.34508-14.99046,17.63583-16.75404s46.29406-3.96806,62.16631-4.84985,114.63291-4.84985,128.74158-4.84985,201.93028-1.32269,208.54372-1.76358,44.53048-1.32269,48.93944-1.32269,10.55106,1.53526,14.19396-.98996c3.6429-2.52522,9.61441-14.0005,10.4962-16.64587.88179-2.64537-.19273-3.86223.78542-6.34007.97816-2.47784-4.75349-.27336-4.75349-.27336,0,0-184.73534,7.93612-193.11237,6.61344-8.37702-1.32269-223.97507-7.49523-226.62045-5.29075-2.64537,2.20448-7.49523,3.96806-5.29075,4.40896s218.24343,6.61344,227.94313,6.61344,164.89503-7.05433,169.30399-7.05433,3.96806,1.32269,6.17254,2.64537c2.20448,1.32269,2.4245,3.72233-2.20448,4.84985-4.62898,1.12752-170.62668,4.40896-180.76728,4.40896s-171.06757-1.76358-174.15385-2.20448-40.12152,3.08627-47.61675,3.08627-47.17585-1.76358-47.17585-1.76358Z"/>
|
||||
<path class="cls-2" d="M760.76572,671.0853c-7.90353.7185-86.63603,2.64537-89.61207,2.97605s-7.27478,2.97605-9.58948,5.62142c-2.3147,2.64537-24.13905,44.6407-25.46173,45.96339-1.32269,1.32269-2.3147,4.29873-.66134,4.96008,1.65336.66134,145.49562-9.25881,159.38384-10.25083s27.60162-3.41659,30.66508-3.52699,1.07942,6.83371-.24327,6.83371-85.31334,4.96008-86.9667,4.96008-3.30672,2.64537-3.30672,2.64537c0,0,96.55618-1.65336,98.54021-2.3147,1.98403-.66134,4.62941-10.25083,4.62941-11.90419s-6.28277-46.9554-7.60545-48.60876c-1.32269-1.65336-7.27478-3.30672-7.60545-2.97605s-33.06719,2.97605-62.16631,5.62142Z"/>
|
||||
<path class="cls-2" d="M630.81168,742.17975c-1.98403,2.3147-1.98403,3.63739-4.29873,7.60545-2.3147,3.96806-.99202,4.96008.66134,5.95209s3.63739.99202,5.95209.66134c2.3147-.33067,77.37721-3.30672,94.90282-6.28277,17.52561-2.97605,60.51295-6.61344,71.75579-5.29075s32.40584.66134,36.3739-.66134c3.96806-1.32269,5.29075-4.29873,6.61344-5.29075,1.32269-.99202-1.32269-4.96008-1.65336-6.28277-.33067-1.32269-2.3147-1.98403-3.96806-1.98403s-92.58812,7.27478-96.55618,7.93612c-3.96806.66134-91.26543,3.30672-93.24946,3.30672s-13.22687-2.3147-14.88023-2.3147-1.65336,2.64537-1.65336,2.64537Z"/>
|
||||
<path class="cls-2" d="M241.05978,614.54042c11.51388,1.39562,111.98754,10.5815,151.22726,10.5815s204.13476-3.08627,211.18909-3.08627,19.39942,2.64537,22.92658,3.08627,9.25881-1.76358,11.90419-1.76358,21.163-5.73165,25.57196-5.73165,7.05433,1.76358,8.37702,3.08627.4409,18.07673,0,21.60389c-.4409,3.52717-4.40896,9.25881-6.61344,11.0224-2.20448,1.76358-37.03525,1.32269-41.8851,1.32269s-93.46991,4.84985-105.3741,4.40896c-11.90419-.4409-43.20779-9.25881-52.02571-8.37702s-136.1251-2.64216-155.13947-1.98242c-19.01437.65974-80.29889-5.51281-86.47143-6.83549s-6.17254-11.0224-6.61344-18.07673c-.4409-7.05433-2.20448-9.69971,0-9.69971s8.37702-1.32269,22.92658.4409Z"/>
|
||||
<path class="cls-2" d="M698.93008,593.04675c-2.64537,1.32269-8.59747,14.21889-12.23486,22.15501s-10.5815,31.7445-11.24284,33.39786c-.66134,1.65336,2.97605,3.96806,2.97605,3.96806,0,0,21.49367.99202,31.7445.66134,10.25083-.33067,84.32132-3.63739,87.29737-3.96806,2.97605-.33067,11.57352-1.32269,14.54956-4.29873s4.96008-22.81636,5.62142-34.0592c.66134-11.24284,1.98403-194.43505,1.98403-197.08043s-1.98403-11.90419-1.98403-17.52561-2.75318-63.94635-2.3686-66.03238-.93811-3.40871-1.93013-3.40871-5.62142,2.64537-5.62142,2.64537c0,0,1.98403,8.59747,2.3147,11.24284.33067,2.64537-1.65336,258.58539-.99202,265.5295.66134,6.94411-.99202,29.76047-2.97605,31.7445s-18.18695-6.28277-23.80837-9.92016c-5.62142-3.63739-12.23486-22.48569-16.53359-28.10711-4.29873-5.62142-53.56884-7.60545-57.20623-7.60545s-9.58948.66134-9.58948.66134Z"/>
|
||||
<path class="cls-2" d="M655.2814,81.27693c-1.32269,1.32269-2.3147.96446-2.48004,1.6258-.16534.66134.248.74401,1.65336.82668s31.57916,4.21607,34.38987,4.71207,17.85628,1.73603,24.30438,1.98403,82.08929,4.05073,88.37205,4.62941c6.28277.57868,26.53642,1.73603,28.02444,1.90136s1.8187-.08267,2.3147.41334.49601,1.65336.74401,3.47205,4.32629,34.22454,4.76719,39.95618c.4409,5.73165.4409,48.05764-.22045,54.67108-.66134,6.61344,3.93608,36.12251,3.96806,58.63914.03198,22.51663,1.32269,194.2146,1.54314,208.32327.22045,14.10867,0,160.26563,0,166.21772s-1.10224,59.96183-1.54314,63.92989c-.4409,3.96806.66134,13.00643.77157,14.10867.11022,1.10224-.39672,1.15806.62832,1.62616,1.02504.4681,1.57616-.30347,2.2375-.19325s1.32269-.11022,1.43291-2.20448-.66134-43.64869-.66134-52.13593,1.32269-298.48646,2.20448-323.17663c.88179-24.69017-4.40896-164.45414-2.64537-179.4446,1.76358-14.99046-.94287-48.14528-2.20448-51.14391-1.26161-2.99863-1.76358-5.29075-3.83028-6.36543-2.0667-1.07468-8.2668-2.48004-12.06952-2.56271s-73.65716-2.64537-81.92395-3.30672c-8.2668-.66134-74.0705-5.29075-75.72386-5.45609s-14.05355-1.04713-14.05355-1.04713Z"/>
|
||||
<path class="cls-2" d="M613.17585,788.69426c-2.20448,2.20448-2.64537,3.52717-1.76358,6.17254.88179,2.64537.4409,13.66777,1.32269,15.43135.88179,1.76358,3.08627,2.64537,5.29075,2.64537s64.37079,0,79.36125-.88179c14.99046-.88179,65.25258-3.52717,68.77975-4.40896,3.52717-.88179,3.96806-1.76358,5.73165-3.96806s-.88179-41.00331-2.20448-42.76689-2.20448-5.73165-7.05433-4.40896c-4.84985,1.32269-35.71256,5.29075-37.47614,7.49523s0,14.54956.4409,17.19494.4409,4.40896-1.76358,5.73165-8.37702.88179-11.0224,1.32269-85.97468.4409-89.50185.4409h-10.1406Z"/>
|
||||
<path class="cls-2" d="M735.23698,103.77569l.62852,2.27885c-7.54757.42456-15.13625.80023-22.76605,1.127-11.33553-.80214-35.1279-4.8378-44.27507-3.40585v-3.40585c2.8348.69653,14.0082,1.54033,17.80953,1.77319,15.83616.97009,33.26185-2.28577,48.60307,1.63266Z"/>
|
||||
<path class="cls-2" d="M233.56456,797.95307c0,2.20448,18.07673,7.49523,18.07673,10.5815s.88179,5.73165,3.08627,6.17254,54.23018,5.29075,61.72541,4.84985,118.60097.88179,141.08666.4409,111.10574-.88179,119.48276-.88179,21.163-1.32269,23.80837-2.64537c2.64537-1.32269,1.32269.4409,2.20448-3.08627.88179-3.52717-3.52717-24.69017-3.52717-26.01285s-3.08627-3.96806-3.08627-3.96806c0,0-60.50456-1.22485-65.52395-.17153s-3.6967,3.6987-5.46028,5.46228-9.25881,16.31315-12.78598,18.07673-134.47322,5.29075-175.03564,3.96806c-40.56241-1.32269-73.6296-2.64537-76.27498-3.96806s-4.84985-6.61344-5.73165-8.37702c-.88179-1.76358-14.54956-4.40896-15.87225-4.84985-1.32269-.4409-6.17254,4.40896-6.17254,4.40896Z"/>
|
||||
<path class="cls-2" d="M196.46851,784.83642c1.77759,2.20448,6.50348,5.29075,5.79245,7.93612-.71104,2.64537-4.72589,11.90419-5.43693,13.66777-.71104,1.76358-2.48863,2.64537-4.26623,2.64537s-51.90575,0-63.99339-.88179-52.61679-3.52717-55.46094-4.40896-3.19967-1.76358-4.62174-3.96806c-1.42208-2.20448.71104-41.00331,1.77759-42.76689,1.06656-1.76358,1.77759-5.73165,5.6883-4.40896s19.07626,5.84187,20.49833,8.04635,9.72077,13.99844,9.36525,16.64382,9.35881,6.50321,11.13641,7.8259c1.77759,1.32269,13.73914-.4409,15.87225,0s52.62756-.33067,55.47171-.33067h8.17693Z"/>
|
||||
<path class="cls-2" d="M214.16514,166.14938c1.32269.99202,8.92814,2.97605,12.56553,3.30672s100.19357-6.94411,119.70321-7.93612,77.37721-1.32269,109.45239.33067c32.07517,1.65336,109.12171,5.95209,123.00993,6.28277,13.88822.33067,42.65667.99202,44.31003.99202s4.96008-3.30672,5.95209-3.30672-4.62941-1.65336-4.62941-1.65336c0,0-75.72386-.99202-81.34528-.99202s-80.68393-3.63739-94.57215-4.96008-146.15696.33067-154.42376,1.32269-69.44109,4.96008-71.09445,5.29075-8.92814,1.32269-8.92814,1.32269Z"/>
|
||||
<path class="cls-2" d="M423.60863,93.55814c7.66587-.27617,131.34435.7508,138.87847,1.34379,5.22669.41138,4.38312-.84208,4.17425,5.11307l-2.57572,3.30252-141.39882-1.74316c.84456,1.39307,1.15183,3.26212.92182,5.60716l-194.13821,5.10155c-2.20522-8.16998,6.03786-4.85922,9.76605-7.27437,2.12392-1.37589,1.95927-6.19813,8.49296-7.67744,21.23205-.26434,42.25085-2.08045,63.48864-2.07021,19.90518-.22543,39.7722-.22543,59.60105,0,17.53126-1.22723,35.12776-1.79487,52.7895-1.70292Z"/>
|
||||
<path class="cls-2" d="M516.06855,119.52464c10.40033,6.09308-131.02719,7.54499-137.22766,6.27624l-2.9131,1.81574c-28.88091.34598-58.72412,1.96589-87.61755,3.48699-25.16708-2.46949-55.67255,3.04181-80.14721-.07768-2.35306-.29992-5.04766-.99963-2.52597-3.39152,4.03921-3.8313,68.65445-1.53526,79.11603-5.1968,35.53542-.31011,195.78893-2.57446,231.31546-2.91298Z"/>
|
||||
<path class="cls-2" d="M403.97079,141.34899c.66134,1.65336,2.3147,2.64537,3.63739,4.62941,1.32269,1.98403,7.93612,2.3147,11.57352,2.64537s112.42843,3.96806,120.03388,4.29873,35.05122,2.97605,38.02726,1.32269,3.30672-2.64537,2.97605-3.63739c-.33067-.99202-24.80039-4.96008-27.44576-5.62142-2.64537-.66134-26.45375-.33067-28.43778.66134s-10.5815,1.98403-13.22687,2.3147-77.04654-.99202-84.98267-2.64537-16.86426-4.62941-18.8483-4.62941-3.30672.66134-3.30672.66134Z"/>
|
||||
<path class="cls-2" d="M691.6553,127.79144c1.86615,1.51982,1.76358,2.20448,5.29075,3.08627,3.52717.88179,48.49854,4.40896,59.96183,4.40896s36.59435.88179,39.68062.88179,4.84985,1.76358,6.61344,2.64537,2.20448,3.08627,2.20448,5.29075,1.32269,65.25258.88179,71.86602c-.4409,6.61344,0,63.0481.4409,67.45706s1.76358,9.69971,1.76358,9.69971c0,0,1.32269,1.32269,4.84985,2.64537,3.52717,1.32269,3.96806-2.20448,3.96806-2.20448,0,0-4.84985-17.19494-4.84985-26.01285v-133.59143s-7.05433-6.17254-8.81792-6.61344-38.79883,2.20448-44.53048,3.08627-56.87556-3.08627-58.19825-3.08627-9.25881.4409-9.25881.4409Z"/>
|
||||
<path class="cls-2" d="M83.04103,618.48755c-1.80065,7.62016,38.88063,12.0197,40.29958,12.36602,6.98783,1.7055,5.43164.17551,5.73165,7.05433.3288,7.539-61.5012,3.23837-64.08168,3.49098-2.90508.28438-25.82793-2.54474-28.46386-3.51736-.69719-.25725-4.71205-5.53444-4.71205-5.91247l-1.50307-256.83505c1.42433-.3186,4.40896,5.29075,4.40896,5.29075,0,0,4.86316,137.00493,5.02319,166.65768.12843,23.79717.21676,46.40378,1.14935,59.08098.69822,9.49127,13.61369.61131,14.10867.4409,9.09218-3.13041,18.04149-6.55862,25.39275-11.1922,1.03926-.65506,4.75339-4.3295,5.12919-5.21578,1.38051-3.25582-3.55192-7.42814,1.61229-6.74678,2.63094,8.20692,18.81545,7.72603,19.61689,8.5026.81522.78992-.05138,7.61753-1.55122,9.52868-.42048.53579-10.22559,6.48729-11.60213,7.13706-1.37371.64844-10.10893,7.9672-10.55849,9.86968Z"/>
|
||||
<g>
|
||||
<g>
|
||||
<path class="cls-3" d="M218.35727,298.68201h38.3652c-.5878,2.9537-1.14792,5.91367-1.68024,8.87936-12.91644-.00003-25.83295-.00003-38.74939,0,.65405-2.9657,1.34216-5.92566,2.06442-8.87936ZM214.46546,316.30927h39.08945c-.46909,2.92133-.91147,5.84747-1.32709,8.77805h-39.39285c.51068-2.93057,1.05414-5.85678,1.63049-8.77805ZM211.37638,334.05719c13.22141.00003,26.44284.00003,39.66428,0-.36118,2.93857-.69565,5.88095-1.00339,8.82654-13.29785.00003-26.59576.00003-39.89365,0,.37811-2.94562.789-5.88794,1.23276-8.82654ZM209.10773,351.73023h140.5849c-.10852,2.95154-.20569,5.90558-.29141,8.86182h-141.13232c.2468-2.95624.5264-5.91034.83884-8.86182ZM207.61676,369.63483h40.36389c-.14642,2.9599-.26611,5.92133-.3591,8.88376h-40.44598c.11423-2.9624.26132-5.92383.44119-8.88376ZM206.92865,387.57611h40.49191c-.03851,2.96411-.05035,5.92853-.03543,8.89288h-40.50006c-.01831-2.96442-.00378-5.92883.04358-8.89288ZM207.03852,405.36008c13.49048-.00003,26.98102-.00003,40.4715,0,.06958,3.0192.16693,6.03763.29208,9.05466h-40.40469c-.15375-3.01706-.27332-6.03543-.35889-9.05466ZM314.36014,298.68201h38.54565c-.25092,2.9537-.48993,5.91367-.71716,8.87936-12.9772-.00003-25.95438-.00003-38.93161,0,.34949-2.9657.71722-5.92566,1.10312-8.87936ZM312.28055,316.30927h39.27328c-.2002,2.92133-.38898,5.84747-.56641,8.77805h-39.57816c.27286-2.93057.56326-5.85678.87128-8.77805ZM310.62989,334.05719c13.2836.00003,26.56723.00003,39.85083,0-.15411,2.93857-.29688,5.88095-.42825,8.82654-13.36041.00003-26.72083.00003-40.0813,0,.202-2.94562.4216-5.88794.65872-8.82654ZM308.62095,369.63483h40.55374c-.0625,2.9599-.11359,5.92133-.15326,8.88376h-40.63623c.06104-2.9624.13959-5.92383.23575-8.88376ZM308.25324,387.57611h40.6824c-.01636,2.96411-.02148,5.92853-.01514,8.89288h-40.69055c-.00974-2.96442-.00198-5.92883.02328-8.89288ZM308.31196,405.36008c13.55396-.00003,27.10791-.00003,40.66183,0,.02972,3.0192.07129,6.03763.12466,9.05466h-40.59473c-.08218-3.01706-.14603-6.03543-.19177-9.05466Z"/>
|
||||
<path class="cls-3" d="M366.04953,316.30927h39.08939c-.05319,2.92133-.10336,5.84747-.15051,8.77805h-39.39279c.14218-2.93057.29349-5.85678.45392-8.77805ZM365.18958,334.05719c13.22141.00003,26.44284.00003,39.66422,0-.04092,2.93857-.07889,5.88095-.11377,8.82654-13.29791.00003-26.5957.00003-39.89362,0,.10529-2.94562.21967-5.88794.34317-8.82654ZM364.55802,351.73023h40.0864c-.02884,2.95154-.05472,5.90558-.07742,8.86182h-40.24246c.06866-2.95624.14648-5.91034.23349-8.86182ZM364.14298,369.63483h40.36383c-.01657,2.9599-.03024,5.92133-.04074,8.88376h-40.44592c.0318-2.9624.07275-5.92383.12283-8.88376ZM363.95139,387.57611h40.49188c-.00436,2.96411-.00571,5.92853-.00403,8.89288h-40.49994c-.0051-2.96442-.00107-5.92883.01208-8.89288ZM482.40827,298.68201c.20282,2.9537.39594,5.91367.57953,8.87936-32.3819-.00003-64.76379-.00003-97.14566,0,.12146-2.9657.24933-5.92566.38351-8.87936h96.18262ZM384.12293,405.36008c33.82098-.00003,67.64209-.00003,101.46301,0-.02411,3.0192-.05756,6.03763-.10083,9.05466h-101.29553c-.02856-3.01706-.05078-6.03543-.06665-9.05466ZM463.86377,316.30927h39.27411c.21564,2.92133.41901,5.84747.61023,8.77805h-39.57904c-.09558-2.93057-.19739-5.85678-.3053-8.77805ZM464.4422,334.05719c13.28394.00003,26.56787.00003,39.85175,0,.16602,2.93857.31995,5.88095.4613,8.82654-13.36072.00003-26.72144.00003-40.08221,0-.07086-2.94562-.14764-5.88794-.23083-8.82654ZM464.86707,351.73023h40.27582c.117,2.95154.22174,5.90558.31396,8.86182h-40.43274c-.0462-2.95624-.09857-5.91034-.15704-8.86182ZM465.14624,369.63483h40.55463c.06732,2.9599.12238,5.92133.1651,8.88376h-40.63708c-.02136-2.9624-.04895-5.92383-.08264-8.88376ZM465.27509,387.57611h40.68329c.0177,2.96411.02319,5.92853.0163,8.89288h-40.69141c.00342-2.96442.00073-5.92883-.00818-8.89288Z"/>
|
||||
<path class="cls-3" d="M515.90937,298.68201h115.27527c.72394,2.9537,1.41376,5.91367,2.06934,8.87936-38.80988-.00003-77.61969-.00003-116.42957,0-.28992-2.9657-.59497-5.92566-.91504-8.87936ZM556.72364,316.30927h39.27264c.47046,2.92133.91406,5.84747,1.33093,8.77805h-39.57739c-.32135-2.93057-.66339-5.85678-1.02618-8.77805ZM558.66773,334.05719c13.28339.00003,26.56683.00003,39.85016,0,.36218,2.93857.69763,5.88095,1.00629,8.82654-13.36011.00003-26.72034.00003-40.08063,0-.23792-2.94562-.49658-5.88794-.77582-8.82654ZM560.09546,351.73023h40.27423c.255,2.95154.48328,5.90558.68475,8.86182h-40.43109c-.15527-2.95624-.3313-5.91034-.52789-8.86182ZM561.03376,369.63483h40.55304c.14679,2.9599.26678,5.92133.36011,8.88376h-40.6355c-.07184-2.9624-.16437-5.92383-.27765-8.88376ZM561.4668,387.57611h40.68164c.0387,2.96411.05054,5.92853.03558,8.89288h-40.68982c.01154-2.96442.00238-5.92883-.0274-8.89288ZM561.39765,405.36008c13.55371-.00003,27.10742-.00003,40.66113,0-.06982,3.0192-.16748,6.03763-.29297,9.05466h-40.59399c.09668-3.01706.17188-6.03543.22583-9.05466Z"/>
|
||||
<path class="cls-3" d="M209.85148,442.76325c-.36761-3.00323-.70117-6.00946-1.00064-9.01843h40.13425c.24368,3.00891.51517,6.01514.81442,9.01843h-39.94803ZM212.4101,460.40527c-.492-2.93243-.95123-5.86908-1.37766-8.80945,19.89511-.00006,39.79025-.00006,59.68539,0,.30719,2.94025.63806,5.87701.99255,8.80945h-59.30029ZM352.01474,478.11334h-136.2225c-.62469-2.9137-1.21661-5.83289-1.77557-8.75665h137.38126c.19424,2.92377.39981,5.84296.61682,8.75665ZM352.69989,486.83673c.23984,2.90265.49106,5.79926.75363,8.68958h-133.51953c-.75601-2.89032-1.47922-5.78693-2.16953-8.68958h134.93542ZM224.91437,512.94837c-.88861-2.862-1.74438-5.73163-2.56726-8.60815h37.62277c.6698,2.87659,1.36627,5.74622,2.08951,8.60815h-37.14502ZM230.69712,530.18402c-1.02118-2.8291-2.0094-5.66699-2.9649-8.513h36.62067c.77768,2.84607,1.58206,5.68396,2.41315,8.513-12.02301.00006-24.0459.00006-36.06891,0ZM237.2826,547.20728c-1.17529-2.84406-2.31653-5.69843-3.42365-8.56232,11.82687.00006,23.65372.00006,35.48059,0,.90112,2.86389,1.82996,5.71826,2.78653,8.56232h-34.84348ZM278.86936,504.34021h18.90024c.51593,2.87659,1.05243,5.74622,1.60953,8.60815h-18.66025c-.64014-2.862-1.25671-5.73163-1.84952-8.60815ZM290.67582,451.59583c19.89517-.00006,39.79031-.00006,59.68542,0,.1481,2.94025.30765,5.87701.47861,8.80945h-59.30029c-.3085-2.93243-.59641-5.86908-.86374-8.80945ZM309.28037,433.74481h40.323c.1041,3.00891.21994,6.01514.34763,9.01843h-40.13593c-.19644-3.00323-.37466-6.00946-.5347-9.01843ZM355.18369,512.94837h-37.31979c-.47476-2.862-.93204-5.73163-1.3718-8.60815h37.79974c.28586,2.87659.58316,5.74622.89185,8.60815ZM357.19254,530.18402c-12.07956.00006-24.15909.00006-36.23862,0-.54562-2.8291-1.0737-5.66699-1.58432-8.513h36.79297c.33194,2.84607.6752,5.68396,1.02997,8.513ZM359.48026,547.20728h-35.00739c-.62805-2.84406-1.23779-5.69843-1.82941-8.56232,11.88248.00006,23.76498.00006,35.64743,0,.38464,2.86389.78113,5.71826,1.18936,8.56232Z"/>
|
||||
<path class="cls-3" d="M364.48652,433.74481h120.59064c-.08411,3.00891-.17773,6.01514-.28094,9.01843h-120.03113c-.10239-3.00323-.19516-6.00946-.27856-9.01843ZM371.44837,538.64496c35.53592.00006,71.07184.00006,106.60785,0-.31079,2.86389-.63123,5.71826-.96118,8.56232h-104.6936c-.32721-2.84406-.6449-5.69843-.95306-8.56232ZM404.82203,451.59583c13.30536-.00006,26.61066-.00006,39.91602,0-.04047,2.94025-.08392,5.87701-.13043,8.80945h-39.65842c-.04544-2.93243-.0878-5.86908-.12717-8.80945ZM405.09748,469.35669h39.35803c-.05292,2.92377-.10895,5.84296-.16803,8.75665h-39.02612c-.05762-2.9137-.1123-5.83289-.16388-8.75665ZM405.44339,486.83673h38.65732c-.06525,2.90265-.13373,5.79926-.20538,8.68958h-38.25171c-.06976-2.89032-.13654-5.78693-.20023-8.68958ZM405.86637,504.34021h37.80057c-.078,2.87659-.15906,5.74622-.2431,8.60815h-37.3205c-.08203-2.862-.16101-5.73163-.23697-8.60815ZM406.36341,521.67102h36.79376c-.09045,2.84607-.18408,5.68396-.28076,8.513-12.07977.00006-24.15955.00006-36.23935,0-.09421-2.8291-.18546-5.66699-.27365-8.513Z"/>
|
||||
<path class="cls-3" d="M499.01923,433.74481h40.13428c-.15918,3.00891-.33655,6.01514-.53186,9.01843h-39.948c.12695-3.00323.24219-6.00946.34558-9.01843ZM498.26575,451.59583c13.24268-.00006,26.48547-.00006,39.72827,0-.22668,2.94025-.4707,5.87701-.73218,8.80945h-39.47192c.16992-2.93243.32849-5.86908.47583-8.80945ZM491.47376,530.18402c.35272-2.8291.69403-5.66699,1.02411-8.513h36.62067c-.50775,2.84607-1.03302,5.68396-1.57574,8.513-12.02295.00006-24.04602.00006-36.06903,0ZM489.19922,547.20728c.40594-2.84406.80011-5.69843,1.1825-8.56232,11.82678.00006,23.65381.00006,35.48059,0-.58844,2.86389-1.19501,5.71826-1.81958,8.56232h-34.84351ZM516.72895,469.35669h39.35645c-.34937,2.92377-.71924,5.84296-1.10968,8.75665h-39.02448c.27356-2.9137.53284-5.83289.77771-8.75665ZM513.08027,504.34021h37.79901c-.51422,2.87659-1.04913,5.74622-1.60437,8.60815h-37.31903c.3891-2.862.76398-5.73163,1.12439-8.60815ZM534.41614,486.83673h57.80255c-.55988,2.90265-1.14642,5.79926-1.75958,8.68958h-57.19611c.40186-2.89032.78625-5.78693,1.15314-8.68958ZM575.76435,469.35669h39.17297c-.50562,2.92377-1.04102,5.84296-1.60608,8.75665h-38.84253c.44885-2.9137.87402-5.83289,1.27563-8.75665ZM569.77948,504.34021h37.62274c-.74432,2.87659-1.51837,5.74622-2.32208,8.60815h-37.14502c.63837-2.862,1.25311-5.73163,1.84436-8.60815ZM639.77015,433.74481c-.29889,3.00891-.63177,6.01514-.9986,9.01843h-40.13513c.29822-3.00323.56873-6.00946.81152-9.01843h40.3222ZM597.67865,451.59583c13.30475-.00006,26.60956-.00006,39.91431,0-.4256,2.94025-.88397,5.87701-1.37494,8.80945h-39.65674c.39911-2.93243.77155-5.86908,1.11737-8.80945ZM584.13453,521.67102h36.79211c-.95349,2.84607-1.93982,5.68396-2.95892,8.513-12.07935.00006-24.15857.00006-36.23785,0,.82819-2.8291,1.6297-5.66699,2.40466-8.513ZM611.39545,547.20728h-35.00665c.95325-2.84406,1.87878-5.69843,2.77667-8.56232,11.88226.00006,23.76447.00006,35.64673,0-1.10492,2.86389-2.24384,5.71826-3.41675,8.56232Z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="cls-3" d="M236.83942,240.76941c4.00421-.00003,8.00836-.00003,12.01257,0-.37796.97488-.75217,1.9509-1.12262,2.9281h-12.08929c.39575-.9772.79553-1.95322,1.19934-2.9281ZM234.48615,246.5788h12.16318c-.35638.96149-.70917,1.92419-1.05838,2.88788h-12.23553c.37308-.96368.74997-1.92639,1.13074-2.88788ZM232.22742,252.41525h12.30777c-.3418.96588-.67999,1.93286-1.01456,2.90094h-12.37717c.35748-.96805.71875-1.93503,1.08395-2.90094ZM230.0828,258.22336h12.44501c-.32736.97012-.65103,1.94119-.9711,2.91327h-12.51144c.34198-.97208.68787-1.94321,1.03754-2.91327ZM234.271,264.11047h12.63675c-.30194.97409-.6004,1.94913-.89542,2.92517h-12.70047c.31598-.97601.63574-1.95111.95914-2.92517ZM238.74006,270.022c6.36182-.00003,12.72369-.00003,19.08554,0-.26736.97766-.53152,1.9563-.79248,2.93588h-19.17627c.2908-.97955.58517-1.95813.88321-2.93588ZM243.43656,275.89984h6.44147c-.26913,1.00015-.53476,2.00119-.79688,3.00311h-6.47089c.27179-1.00195.54724-2.00299.82629-3.00311ZM253.22574,264.11047h12.57758c-.26987.97409-.53659,1.94913-.80017,2.92517h-12.64093c.28452-.97601.57236-1.95111.86353-2.92517ZM266.89875,240.76941c4.02304-.00003,8.04611-.00003,12.06912,0-.3132.97488-.62326,1.9509-.93018,2.9281h-12.14621c.33246-.9772.66815-1.95322,1.00726-2.9281ZM264.92237,246.5788h12.22043c-.29529.96149-.58759,1.92419-.87692,2.88788h-12.29315c.31329-.96368.62982-1.92639.94965-2.88788ZM263.02536,252.41525h12.36569c-.28317.96588-.56339,1.93286-.84061,2.90094h-12.43539c.30017-.96805.60364-1.93503.91031-2.90094ZM261.22425,258.22336h12.5036c-.27118.97012-.53937,1.94119-.80463,2.91327h-12.57031c.2872-.97208.57767-1.94321.87134-2.91327Z"/>
|
||||
<path class="cls-3" d="M322.89988,240.76941c12.03119-.00003,24.06238-.00003,36.09354,0-.14102.97488-.28055,1.9509-.41876,2.9281h-36.32416c.21426-.9772.43076-1.95322.64938-2.9281ZM316.04075,275.89984h38.52957c-.10782,1.00015-.2142,2.00119-.31918,3.00311h-38.70541c.16281-1.00195.32785-2.00299.49503-3.00311ZM333.78885,246.5788h12.2197c-.15732.96149-.31308,1.92419-.46719,2.88788h-12.29242c.1781-.96368.35809-1.92639.53992-2.88788ZM332.71033,252.41525h12.36499c-.15088.96588-.30017,1.93286-.44785,2.90094h-12.43463c.17068-.96805.34317-1.93503.51749-2.90094ZM331.68641,258.22336h12.50281c-.14444.97012-.28732,1.94119-.42865,2.91327h-12.56955c.16327-.97208.32843-1.94321.49539-2.91327ZM330.69779,264.11047h12.63596c-.13803.97409-.27451,1.94913-.4093,2.92517h-12.69968c.15585-.97601.31351-1.95111.47302-2.92517ZM329.75419,270.022c4.25436-.00003,8.5087-.00003,12.76306,0-.13153.97766-.26154,1.9563-.38986,2.93588h-12.82373c.14828-.97955.29849-1.95813.45053-2.93588Z"/>
|
||||
<path class="cls-3" d="M432.75415,243.69751h-30.24994c.04617-.9772.09274-1.95322.13983-2.9281,10.01938-.00003,20.03867-.00003,30.05792,0,.01758.97488.03491,1.9509.05219,2.9281ZM402.23783,249.46668c.04346-.96368.0874-1.92639.13184-2.88788h12.16318c-.01999.96149-.03983,1.92419-.05945,2.88788h-12.23557ZM401.97992,255.31619c.04169-.96805.08386-1.93503.1264-2.90094h12.30774c-.0192.96588-.03818,1.93286-.05701,2.90094h-12.37714ZM401.73529,261.13663c.03989-.97208.08023-1.94321.12097-2.91327h12.44504c-.01843.97012-.03662,1.94119-.05457,2.91327h-12.51144ZM401.49933,267.03565c.03812-.97601.07663-1.95111.11551-2.92517h12.57755c-.01761.97409-.03488,1.94913-.05209,2.92517h-12.64096ZM401.27442,272.95789c.03619-.97955.07288-1.95813.11002-2.93588,4.23465-.00003,8.46939-.00003,12.70404,0-.01675.97766-.03323,1.9563-.04962,2.93588h-12.76443ZM401.06049,278.90296c.0351-1.00195.07062-2.00299.1066-3.00311h32.08664c.01349,1.00015.02679,2.00119.03986,3.00311h-32.23309ZM439.00281,249.46668h-12.23697c-.0043-.96368-.00876-1.92639-.01324-2.88788h12.16464c.02875.96149.05743,1.92419.08557,2.88788ZM426.86264,272.95789c-.00363-.97955-.00729-1.95813-.01108-2.93588,4.23517-.00003,8.4704-.00003,12.70557,0,.02411.97766.04791,1.9563.07141,2.93588h-12.7659ZM432.95008,255.31619c-.01556-.96805-.03131-1.93503-.04724-2.90094h12.36792c.03937.96588.07831,1.93286.11694,2.90094h-12.43762ZM433.04145,261.13663c-.01495-.97208-.02985-1.94321-.04517-2.91327h12.5058c.03772.97012.07507,1.94119.11194,2.91327h-12.57257ZM433.12958,267.03565c-.01422-.97601-.02863-1.95111-.04309-2.92517h12.63898c.03607.97409.07172,1.94913.10687,2.92517h-12.70276Z"/>
|
||||
<path class="cls-3" d="M488.7038,240.76941c12.03168-.00003,24.06329-.00003,36.09497,0,.2157.97488.42932,1.9509.64069,2.9281h-36.32556c-.13531-.9772-.27203-1.95322-.4101-2.9281ZM489.50849,246.5788h12.16315c.15466.96149.30762,1.92419.45905,2.88788h-12.23553c-.1275-.96368-.25641-1.92639-.38666-2.88788ZM490.28083,252.41525h12.30774c.14832.96588.29492,1.93286.44,2.90094h-12.37714c-.12225-.96805-.24579-1.93503-.37061-2.90094ZM491.0141,258.22336h31.14148c.17572.97012.3493,1.94119.52087,2.91327h-31.30756c-.11688-.97208-.23517-1.94321-.3548-2.91327ZM491.72211,264.11047h12.57751c.13562.97409.26978,1.94913.40222,2.92517h-12.64099c-.11157-.97601-.22449-1.95111-.33875-2.92517ZM492.39783,270.022c4.23468-.00003,8.46942-.00003,12.70404,0,.12921.97766.2569,1.9563.38306,2.93588h-12.7644c-.1062-.97955-.21375-1.95813-.32269-2.93588ZM493.03534,275.89984h38.53113c.16486,1.00015.3277,2.00119.4884,3.00311h-38.70697c-.10278-1.00195-.20703-2.00299-.31256-3.00311Z"/>
|
||||
<path class="cls-3" d="M570.25318,246.5788h12.16321c.31635.96149.62958,1.92419.93945,2.88788h-12.2356c-.28601-.96368-.57507-1.92639-.86707-2.88788ZM571.98523,252.41525h12.30774c.30334.96588.60352,1.93286.90057,2.90094h-12.37714c-.27405-.96805-.55127-1.93503-.83118-2.90094ZM573.62977,258.22336h12.44501c.29053.97012.57788,1.94119.862,2.91327h-12.51141c-.26221-.97208-.52747-1.94321-.79559-2.91327ZM575.21747,264.11047h12.57751c.27759.97409.552,1.94913.82312,2.92517h-12.64099c-.25037-.97601-.50342-1.95111-.75964-2.92517ZM576.73291,270.022c4.23474-.00003,8.46924-.00003,12.70398,0,.26459.97766.52582,1.9563.78394,2.93588h-12.7644c-.23816-.97955-.47937-1.95813-.72351-2.93588ZM604.54364,240.76941c.38733.97488.77075,1.9509,1.15027,2.9281h-30.30902c-.31604-.9772-.63538-1.95322-.95789-2.9281,10.039-.00003,20.07782-.00003,30.11664,0ZM584.54425,275.89984h32.14935c.29608,1.00015.58832,2.00119.87677,3.00311h-32.29602c-.24011-1.00195-.48352-2.00299-.7301-3.00311ZM600.6894,246.5788h12.22119c.37732.96149.7511,1.92419,1.12085,2.88788h-12.29382c-.34589-.96368-.69513-1.92639-1.04822-2.88788ZM602.78321,252.41525h12.36639c.362.96588.72015,1.93286,1.07452,2.90094h-12.4361c-.33142-.96805-.66638-1.93503-1.00482-2.90094ZM604.77118,258.22336h12.50427c.34668.97012.68945,1.94119,1.0285,2.91327h-12.57098c-.31708-.97208-.63763-1.94321-.96179-2.91327ZM606.69056,264.11047h12.63745c.33124.97409.65851,1.94913.98206,2.92517h-12.70117c-.30255-.97601-.6087-1.95111-.91833-2.92517ZM608.5224,270.022c4.25488-.00003,8.50977-.00003,12.76459,0,.31573.97766.62738,1.9563.93542,2.93588h-12.82526c-.28802-.97955-.57941-1.95813-.87476-2.93588Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Capa_2" data-name="Capa 2">
|
||||
<path class="cls-1" d="M198.54263,71.89646s24.882-22.63779,46.07394-32.4769c21.19195-9.83912,36.25939-15.6304,36.25939-15.6304,0,0,58.18656-21.32384,118.73498-23.59441,60.54842-2.27057,131.98372,15.96408,145.22605,20.78967,39.01928,14.21889,78.3018,41.33,78.3018,41.33l9.74452,6.62249,35.95058,31.03108s7.44175,1.01477,2.58891,4.38625c-4.85284,3.37149,6.87181,16.04881,6.87181,16.04881,0,0,46.16817,60.54842,59.79156,86.2815,13.62339,25.73308,16.65081,37.08591,16.65081,37.08591l-37.08591-5.29799s-24.03606-44.92841-38.78177-65.26878c-14.74571-20.34036-38.44669-46.26511-65.69348-67.45706-15.59696-12.13097-54.83218-34.54443-100.08335-42.10555-13.31739-2.22523-63.47882-12.83643-109.12171-11.24284-48.70971,1.70066-93.5078,18.80922-113.91213,22.24913-35.48675,5.98262-57.08081,31.30141-81.77113,51.05367-45.41131,36.32905-43.06182,61.17042-43.06182,61.17042l-41.87675,46.87066-20.63704-11.64058s17.02355-57.04404,32.16065-82.77711,63.67006-67.42799,63.67006-67.42799Z"/>
|
||||
<path class="cls-2" d="M584.84829,47.44616c10.5815,2.64537,45.63272,21.82434,50.59279,29.09912,4.96008,7.27478,42.98734,43.97936,49.93145,55.88354s36.26368,55.00175,36.26368,55.00175l-1.98403,1.65336-2.64537-1.32269s-24.91061-38.46816-29.54002-47.72697c-4.62941-9.25881-36.3739-44.97137-42.326-50.26212-5.95209-5.29075-43.09757-33.83875-47.3963-35.49211-4.29873-1.65336-21.163-5.5112-22.15501-7.16456s3.30672-2.3147,3.30672-2.3147l5.95209,2.64537Z"/>
|
||||
<path class="cls-2" d="M682.83739,330.49329c-.99202-1.65336,0-5.62142,0-5.62142,0,0,8.59747-5.95209,10.5815-6.28277s11.90419-3.30672,15.54158-.66134c3.63739,2.64537,6.94411,13.55755,6.94411,13.55755,0,0-.66134,32.73651-1.65336,44.97137s-5.29075,81.34528-6.94411,89.61207c-1.65336,8.2668-20.50166,77.70789-23.14703,81.34528-2.64537,3.63739-11.24284,1.32269-11.24284,1.32269l-3.30672-.33067-.66134,2.97605,12.23486,1.98403-.99202,4.62941h-13.55755l-1.32269,5.29075,12.56553,2.64537-3.63739,6.94411s-14.54956-2.3147-15.54158-2.3147-1.32269-4.96008-1.98403-6.28277c-.66134-1.32269,2.3147-21.49367,5.95209-46.62473,3.63739-25.13106,19.84031-89.61207,22.81636-122.01792s-.33067-54.23018-.33067-57.20623-2.3147-7.93612-2.3147-7.93612Z"/>
|
||||
<path class="cls-2" d="M669.61051,409.85454c3.30672-27.77644.66134-64.48101.66134-68.1184s-4.29873-3.63739-4.29873-3.63739l-.99202,1.32269s-3.19649,2.53515-2.86582,3.52717c.33067.99202,7.16456,23.25725,7.16456,23.25725,0,0-1.65336-.66134-2.97605,0-1.32269.66134-3.96806-1.32269-3.96806-1.32269,0,0-2.3147-9.58948-2.64537-13.22687-.33067-3.63739-2.97605-11.57352-2.97605-11.57352.99202-3.63739,2.97605-8.2668,2.97605-8.2668,0,0,6.28277-4.62941,9.58948-6.94411,3.30672-2.3147,8.59747-.66134,8.59747-.66134,0,0,3.63739,16.20292,3.96806,18.18695.33067,1.98403-4.62941,68.77975-5.62142,75.72386-14.02221,98.1555-17.16548,51.68652-21.82434,140.20487.33067-6.28277-16.86426.66134-17.85628.66134s-4.62941-2.64537-4.62941-2.64537l1.32269-3.30672"/>
|
||||
<path class="cls-2" d="M753.06194,301.56479c.75967,6.99393,1.68783,13.9374,2.08236,16.25274s-4.40896,2.20448-4.40896,2.20448c0,0-5.29075,14.10867-4.84985,18.51762.4409,4.40896-17.19494-9.25881-20.7221-10.1406s-6.61344-1.76358-6.61344-1.76358c0,0,2.62662,18.57839,1.97466,24.0592-.65197,5.48081-5.94272,102.47789-10.35168,120.55462-16.20679,66.44783-40.59128,144.87102-26.01285,104.05141-2.20448,6.17254-5.29075,11.90419-3.96806,13.22687,1.32269,1.32269,8.37702,3.52717,8.37702,3.52717,0,0,5.29075-16.75404,7.93612-20.28121,2.64537-3.52717,10.5815-4.40896,10.5815-4.40896,0,0,13.22687.88179,14.99046,2.20448,1.76358,1.32269.8833,6.77941.8833,6.77941,0,0,.88029,1.59761,3.96656,2.9203,3.08627,1.32269,12.34508-22.48569,16.31315-32.62629s19.39942-54.67108,26.89464-105.3741c7.49523-50.70302,2.25381-85.17505,1.34735-90.64517s-2.67004-21.34237-2.67004-24.86954-5.73165-11.0224-5.73165-11.0224c0,0-1.32269-15.43135-1.32269-17.19494s-2.64537-1.76358-2.64537-1.76358l-6.05042,5.79205Z"/>
|
||||
<path class="cls-2" d="M160.2005,320.79358c.9613-1.65336,0-5.62142,0-5.62142,0,0-8.33126-5.95209-10.25385-6.28277s-11.53559-3.30672-15.06035-.66134c-3.52476,2.64537-6.72909,13.55755-6.72909,13.55755,0,0,.64087,32.73651,1.60216,44.97137.9613,12.23486,7.69039,64.48101,9.29255,72.74781,1.60216,8.2668,8.33126,45.63272,10.89472,49.27011,2.56346,3.63739,22.77367,61.61519,22.77367,61.61519l3.20433-.33067.64087,2.97605-11.85602,1.98403.9613,4.62941h13.13775l1.28173,5.29075-12.17645,2.64537,3.52476,6.94411s14.09905-2.3147,15.06035-2.3147,1.28173-4.96008,1.9226-6.28277-2.24303-21.49367-5.76779-46.62473-22.1328-100.96514-25.0167-133.37098.32043-54.23018.32043-57.20623,2.24303-7.93612,2.24303-7.93612Z"/>
|
||||
<path class="cls-2" d="M92.15038,291.86508c-.73615,6.99393-1.63557,13.9374-2.01788,16.25274-.38231,2.31535,4.27244,2.20448,4.27244,2.20448,0,0,5.12693,14.10867,4.69968,18.51762-.42724,4.40896,16.66251-9.25881,20.08046-10.1406,3.41795-.88179,6.40866-1.76358,6.40866-1.76358,0,0-2.54529,18.57839-1.91351,24.0592.63178,5.48081,5.75871,102.47789,10.03115,120.55462,4.27244,18.07673,23.07117,97.87887,25.20739,104.05141s5.12693,11.90419,3.8452,13.22687-8.11763,3.52717-8.11763,3.52717c0,0-5.12693-16.75404-7.69039-20.28121-2.56346-3.52717-10.25385-4.40896-10.25385-4.40896,0,0-12.81732.88179-14.52629,2.20448s-.85595,6.77941-.85595,6.77941c0,0-.85303,1.59761-3.84374,2.9203s-11.96283-22.48569-15.80802-32.62629c-3.8452-10.1406-18.79873-54.67108-26.06188-105.3741-7.26315-50.70302-2.18402-85.17505-1.30563-90.64517s2.58737-21.34237,2.58737-24.86954,5.55417-11.0224,5.55417-11.0224c0,0,1.28173-15.43135,1.28173-17.19494s2.56346-1.76358,2.56346-1.76358l5.86308,5.79205Z"/>
|
||||
<path class="cls-2" d="M185.42401,341.51569c-.93594-3.63739-2.80783-8.2668-2.80783-8.2668,0,0-5.92764-4.62941-9.04745-6.94411s-8.11151-.66134-8.11151-.66134c0,0-3.43179,16.20292-3.74377,18.18695s4.36774,68.77975,5.30368,75.72386c.93594,6.94411,16.535,75.72386,17.78292,79.36125,1.24792,3.63739,11.84235,67.78773,12.7783,67.78773s4.36774-2.64537,4.36774-2.64537l-1.24792-3.30672s-9.3465-53.56884-11.84235-63.81967c-2.49585-10.25083-12.47924-57.86758-15.59906-85.64401-3.11981-27.77644-.62396-64.48101-.62396-68.1184s4.05575-3.63739,4.05575-3.63739l.93594,1.32269s-3.74377,14.54956-4.05575,15.54158c-.31198.99202,0,11.24284,0,11.24284,0,0,1.55991-.66134,2.80783,0s3.74377-1.32269,3.74377-1.32269c0,0-1.97973-8.70769-1.66775-12.34508.31198-3.63739,6.97143-12.45531,6.97143-12.45531Z"/>
|
||||
<path class="cls-2" d="M650.2111,165.70848c4.40896,6.17254,14.99046,17.63583,17.63583,23.80837s24.69017,6.17254,30.86271,8.81792c6.17254,2.64537,7.93612,21.163,7.93612,21.163,0,0,3.47445,22.5993,4.82349,32.90354,1.34905,10.30424,17.2213,47.33949,17.2213,47.33949,0,0,2.07148-3.9229,12.36999-7.32875,10.29851-3.40585,22.31343-5.10877,22.31343-5.10877,0,0,4.9972-3.43473,1.47003-10.48906-3.52717-7.05433-13.80309-16.95646-15.27857-25.23227-1.47547-8.27581-13.65415-8.5547-13.65415-8.5547l-3.69357-14.71157s-14.99046-7.93612-14.10867-12.34508c.88179-4.40896,4.40896-15.87225,6.17254-20.28121s-.88179-8.81792-.88179-8.81792l-39.68062-9.69971s-7.91341-1.16473-14.09731-8.07759c-6.1839-6.91287-14.34789-5.24493-14.34789-5.24493l-5.06288,1.85923Z"/>
|
||||
<path class="cls-2" d="M183.47061,159.49436c-4.34187,6.17254-14.76234,17.63583-17.36746,23.80837-2.60512,6.17254-24.31445,6.17254-30.39306,8.81792s-7.81536,21.163-7.81536,21.163c0,0-3.42157,22.5993-4.75009,32.90354s-16.95923,47.33949-16.95923,47.33949c0,0-2.03996-3.9229-12.18175-7.32875-10.14179-3.40585-21.97388-5.10877-21.97388-5.10877,0,0-4.92115-3.43473-1.44766-10.48906,3.47349-7.05433,13.59305-16.95646,15.04607-25.23227,1.45302-8.27581,13.44637-8.5547,13.44637-8.5547l3.63736-14.71157s14.76234-7.93612,13.89397-12.34508c-.86837-4.40896-4.34187-15.87225-6.07861-20.28121-1.73675-4.40896.86837-8.81792.86837-8.81792l39.07679-9.69971s7.79299-1.16473,13.88279-8.07759c6.0898-6.91287,14.12956-5.24493,14.12956-5.24493l4.98584,1.85923Z"/>
|
||||
<path class="cls-2" d="M146.26719,159.97684c3.96806-6.17254,12.26885-16.69048,15.61368-22.23346,3.34484-5.54298,38.6165-43.90091,53.60696-54.48241,14.99046-10.5815,46.16381-30.69951,54.16506-33.42648s12.8511-3.60876,12.8511-3.60876l2.64537,3.96806s4.82282,8.61209,2.63186,11.80127-14.09515,5.39366-19.3859,7.59814c-5.29075,2.20448-41.00331,14.10867-52.02571,24.69017-11.0224,10.5815-54.23018,54.67108-58.63914,62.60721-4.40896,7.93612-10.5815,12.78598-10.5815,12.78598l-9.25881,2.42493,8.37702-12.12463Z"/>
|
||||
<path class="cls-2" d="M289.11743,44.46213s2.64537,15.43135,5.29075,16.31315c2.64537.88179.4409-3.52717,14.10867-6.17254,13.66777-2.64537,46.29406-12.78598,68.77975-13.22687,22.48569-.4409,9.69971-6.61344,18.95852-6.17254,9.25881.4409,56.43466.4409,60.40273-3.52717s0-5.73165,0-5.73165c0,0-102.72872,7.05433-121.24635,10.1406-18.51762,3.08627-16.96267-4.03061-22.04479-2.64537-5.08212,1.38524-18.2613,3.7063-21.25528,6.48255-2.99399,2.77626-2.99399,4.53984-2.99399,4.53984Z"/>
|
||||
<path class="cls-2" d="M294.84907,24.62182c5.29075-.88179,61.72541-13.66777,68.33885-14.99046s12.78598,2.64537,19.39942,2.64537,77.15677,0,82.88841,1.32269,45.85316,4.40896,58.19825,10.5815c12.34508,6.17254,22.92658,9.69971,21.60389,10.5815s-6.61344,1.76358-8.37702,1.76358-11.46329-8.37702-16.31315-9.69971c-4.84985-1.32269-34.38987-5.73165-51.14391-7.93612-16.75404-2.20448-53.78929.88179-58.63914,1.32269s-40.56241,1.32269-48.49854,1.32269-61.19239,10.57358-65.69348,12.78598c-4.50108,2.2124-6.61344-.4409-6.61344-.4409l4.84985-9.25881Z"/>
|
||||
<path class="cls-2" d="M133.48121,168.35386c3.52717-5.29075,17.7744-26.70584,26.89464-39.23973,9.12025-12.53389,36.15346-37.91704,43.20779-43.20779,7.05433-5.29075,57.03773-37.7787,64.23143-39.61145,7.19369-1.83276,11.60265-9.32798,39.81998-15.94142,28.21733-6.61344,32.62629-11.46329,36.15346-13.66777,3.52717-2.20448-.88179-3.08627-.88179-3.08627,0,0-59.08004,13.22687-64.37079,17.19494-5.29075,3.96806-46.29406,22.48569-50.70302,27.33554-4.40896,4.84985-12.78598,16.31315-12.78598,16.31315,0,0-37.03525,30.42181-43.64869,37.03525-6.61344,6.61344-39.07945,47.32314-41.00331,54.23018s.4409,8.81792.4409,8.81792l2.42493-.66134.22045-5.5112Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 40 KiB |
BIN
code/static/videohotmix.net_header.png
Normal file
BIN
code/static/videohotmix.net_header.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.8 KiB |
@ -6,12 +6,20 @@
|
||||
- <%= title %>
|
||||
<% end %>
|
||||
</title>
|
||||
<link rel="icon" type="image/x-icon" href="/static/<%= titles['url'] %>.ico">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/static/<%= titles.style %>">
|
||||
<% if titles.css ~= nil then %>
|
||||
<link rel="stylesheet" href="/static/<%= titles.css %>">
|
||||
<% else %>
|
||||
<link rel="stylesheet" href="/static/style.css">
|
||||
<% end %>
|
||||
</head>
|
||||
<body class="body">
|
||||
<h1 class="h1 h1mobile">Tons Of Mix - Downloads & Streams (right click + Save link as... for downloads)<br>
|
||||
<header class="header">
|
||||
<a href="/"><img src="/static/<%= titles['header'] %>" alt="videohotmix logo" class="hotmixlogo"/></a>
|
||||
</header>
|
||||
<h1 class="h1">Tons Of Mix - Downloads & Streams (right click + Save link as... for downloads)<br>
|
||||
<%= titles.name %><br>
|
||||
Sharing <%= total[0] %> files</h1>
|
||||
|
||||
@ -23,7 +31,7 @@
|
||||
<br>
|
||||
<h1 class="h1">Latest uploads:</h1>
|
||||
<% for i, file in ipairs(latestpath) do %>
|
||||
<a class="amixlink" href="<%= '/data/' .. titles.url .. '/' .. file:gsub("#", "%%23") %>">
|
||||
<a class="amixlink" href="<%= '/data/' .. titles.url .. '/' .. file %>">
|
||||
<span class="mixlink"><%= latestname[i] %></span>
|
||||
</a>
|
||||
</br>
|
||||
|
||||
44
code/views/prc_layout.etlua
Normal file
44
code/views/prc_layout.etlua
Normal file
@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title><%= titles['name'] %>
|
||||
<% if title then %>
|
||||
- <%= title %>
|
||||
<% end %>
|
||||
</title>
|
||||
<link rel="icon" type="image/x-icon" href="/static/<%= titles['url'] %>.ico">
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="/static/<%= titles.css %>">
|
||||
</head>
|
||||
<body class="body">
|
||||
<header class="header">
|
||||
<a href="/"><img src="/static/<%= titles['header'] %>" alt="prc logo" class="prclogo"/></a>
|
||||
</header>
|
||||
<div class="content">
|
||||
<h1 class="h1">Tons Of Mix - Downloads & Streams (right click + Save link as... for downloads)<br>
|
||||
<%= titles.name %><br>
|
||||
Sharing <%= total[0] %> files
|
||||
</h1>
|
||||
</div>
|
||||
<img class="divider" src="/static/panamaracing.club_divider.png">
|
||||
<div class="content">
|
||||
<% content_for("inner") %>
|
||||
</div>
|
||||
<img class="divider" src="/static/panamaracing.club_divider.png">
|
||||
<div class="content">
|
||||
<section class="latest">
|
||||
<div class="latest_files">
|
||||
<h1 class="h1">Latest uploads:</h1>
|
||||
<% for i, file in ipairs(latestpath) do %>
|
||||
<a class="amixlink" href="<%= '/data/' .. titles.url .. '/' .. file:gsub("#", "%%23") %>">
|
||||
<span class="mixlink"><%= latestname[i] %></span>
|
||||
</a>
|
||||
</br>
|
||||
<% end %>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
<img class="divider" src="/static/panamaracing.club_divider.png">
|
||||
</body>
|
||||
</html>
|
||||
@ -10,13 +10,13 @@
|
||||
|
||||
<% for i, dir in ipairs(dirs) do %>
|
||||
<br>
|
||||
<a href="<%= uri .. dir %>" class="djsection"><span><%= dir %></span></a>
|
||||
<a href="<%- functions.hotesc(uri .. dir) %>" class="djsection"><span><%= dir %></span></a>
|
||||
<br>
|
||||
<% end %>
|
||||
<br>
|
||||
|
||||
<% for i, file in ipairs(files) do %>
|
||||
<a class="amixlink" href="<%= path .. file:gsub("#", "%%23") %>">
|
||||
<a class="amixlink" href="<%- functions.hotesc(path .. file) %>">
|
||||
<span class="mixlink"><%= file %></span>
|
||||
</a>
|
||||
<br>
|
||||
|
||||
18
code/views/rss.etlua
Normal file
18
code/views/rss.etlua
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="ISO-8859-1" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
|
||||
<channel>
|
||||
<atom:link href="https://<%= titles['url'] %>/latest.xml" rel="self" type="application/rss+xml" />
|
||||
<title><%= titles['name'] %></title>
|
||||
<link>https://<%= titles['url'] %></link>
|
||||
<description>Latest uploads</description>
|
||||
<% for i, file in ipairs(latestpath) do %>
|
||||
<item>
|
||||
<title><%= latestname[i] %></title>
|
||||
<link><%= datapath .. file:gsub("#", "%%23") %></link>
|
||||
<description><![CDATA[<%= latestname[i] %>]]></description>
|
||||
<guid><%= datapath .. file:gsub("#", "%%23") %></guid>
|
||||
</item>
|
||||
<% end %>
|
||||
</channel>
|
||||
</rss>
|
||||
@ -8,12 +8,12 @@ services:
|
||||
- /data:/mnt/data:ro
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.hotmixes.rule=Host(`videohotmix.net`) || Host(`www.videohotmix.net`) || Host(`panamaracing.club`)
|
||||
- traefik.http.routers.hotmixes.rule=Host(`videohotmix.net`) || Host(`www.videohotmix.net`) || Host(`panamaracing.club`) || Host(`hotmixxx.com`)
|
||||
- traefik.http.routers.hotmixes.entrypoints=web
|
||||
- traefik.http.routers.hotmixes.middlewares=redirect-https-hotmixes
|
||||
- traefik.http.middlewares.redirect-https-hotmixes.redirectscheme.scheme=https
|
||||
|
||||
- traefik.http.routers.hotmixes_ssl.rule=Host(`videohotmix.net`) || Host(`www.videohotmix.net`) || Host(`panamaracing.club`)
|
||||
- traefik.http.routers.hotmixes_ssl.rule=Host(`videohotmix.net`) || Host(`www.videohotmix.net`) || Host(`panamaracing.club`) || Host(`hotmixxx.com`)
|
||||
- traefik.http.routers.hotmixes_ssl.entrypoints=websecure
|
||||
- traefik.http.routers.hotmixes_ssl.tls.certresolver=myresolver
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user