prc customizations
This commit is contained in:
parent
b55270cb81
commit
ff731cf9a9
@ -14,13 +14,16 @@ local page_titles = {}
|
|||||||
if string.find(ngx.var.host, "panamaracing.club") then
|
if string.find(ngx.var.host, "panamaracing.club") then
|
||||||
page_titles = {
|
page_titles = {
|
||||||
name = "Panama Racing Club Archive",
|
name = "Panama Racing Club Archive",
|
||||||
url = "panamaracing.club"
|
url = "panamaracing.club",
|
||||||
|
css = "panamaracing.css",
|
||||||
|
header = "panamaracing.club_header.png"
|
||||||
}
|
}
|
||||||
elseif string.find(ngx.var.host, "videohotmix.net") then
|
elseif string.find(ngx.var.host, "videohotmix.net") then
|
||||||
page_titles = {
|
page_titles = {
|
||||||
name = "Hotmix Video Archive",
|
name = "Hotmix Video Archive",
|
||||||
url = "videohotmix.net",
|
url = "videohotmix.net",
|
||||||
css = "videohotmix.css"
|
css = "videohotmix.css",
|
||||||
|
header = "videohotmix.net.svg"
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
page_titles = {
|
page_titles = {
|
||||||
|
|||||||
@ -18,7 +18,11 @@ local function Roothandler(self)
|
|||||||
self.latestpath = latest_path
|
self.latestpath = latest_path
|
||||||
self.latestname = latest_name
|
self.latestname = latest_name
|
||||||
|
|
||||||
|
if self.titles['url'] == "panamaracing.club" then
|
||||||
|
return { render = "root", layout = require "views.prc_layout" }
|
||||||
|
else
|
||||||
return { render = "root" }
|
return { render = "root" }
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@ -44,7 +44,7 @@ end
|
|||||||
|
|
||||||
utils['latest_files'] = function( directory )
|
utils['latest_files'] = function( directory )
|
||||||
local i, t, popen = 0, {}, io.popen
|
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\' -printf \'%C@ %p\n\'| sort -nr | head -7 | cut -f2- -d" "| sed s:"'..directory..'/"::')
|
||||||
for filename in pfile:lines() do
|
for filename in pfile:lines() do
|
||||||
if utils.match_ext ( filename, type_allowed ) then
|
if utils.match_ext ( filename, type_allowed ) then
|
||||||
i = i + 1
|
i = i + 1
|
||||||
|
|||||||
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 |
370
code/static/panamaracing.css
Normal file
370
code/static/panamaracing.css
Normal file
@ -0,0 +1,370 @@
|
|||||||
|
:root {
|
||||||
|
--ifm-red: #e2001a;
|
||||||
|
--ifm-grey: #7e7e7e;
|
||||||
|
--ifm-black: #222222;
|
||||||
|
--ifm-light-black: #1e1e1e;
|
||||||
|
--ifm-deep-black: #111111;
|
||||||
|
--ifm-white: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.h1
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
color: var(--ifm-white);
|
||||||
|
padding-top: 5px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
margin-top: 10px;
|
||||||
|
line-height: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
color: var(--ifm-grey);
|
||||||
|
margin-bottom: 45px;
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.href
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mixlink
|
||||||
|
{
|
||||||
|
line-height: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
margin-top: 0;
|
||||||
|
font-family: Helvetica;
|
||||||
|
}
|
||||||
|
|
||||||
|
.amixlink
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
color: var(--ifm-grey);
|
||||||
|
line-height: 1.6em;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
text-decoration: none;
|
||||||
|
background: var(--ifm-deep-black);
|
||||||
|
display: inline-flex;
|
||||||
|
margin-top: 2px;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
padding: 2px 10px;
|
||||||
|
border-radius: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.amixlink:hover
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
color: #000;
|
||||||
|
line-height: 1.6em;
|
||||||
|
font-weight: 600;
|
||||||
|
font-size: 14px;
|
||||||
|
background: var(--ifm-red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.body
|
||||||
|
{
|
||||||
|
width: 80%;
|
||||||
|
padding-left: 10%;
|
||||||
|
padding-right: 10%;
|
||||||
|
background-color: var(--ifm-black);
|
||||||
|
}
|
||||||
|
|
||||||
|
.mixsections
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
font-weight: 900;
|
||||||
|
font-size: 16px;
|
||||||
|
color: var(--ifm-grey);
|
||||||
|
padding: 5px;
|
||||||
|
margin-top: 2%;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
margin-right: 15px;
|
||||||
|
border: solid 3px var(--ifm-grey);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.prclogo
|
||||||
|
{
|
||||||
|
width: 1440px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h2
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
font-size: 24px;
|
||||||
|
color: var(--ifm-grey);
|
||||||
|
font-weight: 200;
|
||||||
|
border-bottom: 2px solid var(--ifm-grey);
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header
|
||||||
|
{
|
||||||
|
width: 100%;
|
||||||
|
max-height: 220px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer
|
||||||
|
{
|
||||||
|
width: 100%;
|
||||||
|
height: 250px;
|
||||||
|
border-top: 2px solid var(--ifm-red);
|
||||||
|
float: left;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.djsection
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
font-size: 18px;
|
||||||
|
text-decoration: inherit;
|
||||||
|
color: var(--ifm-red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.djsectionmenu
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
font-size: 33px;
|
||||||
|
color: var(--ifm-red);
|
||||||
|
line-height: 1em;
|
||||||
|
z-index: 100;
|
||||||
|
display: block;
|
||||||
|
width: 10%;
|
||||||
|
height: 130px;
|
||||||
|
float: left;
|
||||||
|
margin-top: 5px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
min-width: 130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.djsectionmenu:hover
|
||||||
|
{
|
||||||
|
background-color: #e3301a;
|
||||||
|
}
|
||||||
|
|
||||||
|
.djsection
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
font-size: 33px;
|
||||||
|
color: var(--ifm-red);
|
||||||
|
line-height: 1em;
|
||||||
|
margin-bottom: 0px;
|
||||||
|
margin-top: 0px;
|
||||||
|
padding-top: 5px;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.djsection:hover
|
||||||
|
{
|
||||||
|
background-color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h2
|
||||||
|
{
|
||||||
|
font-family: Helvetica;
|
||||||
|
color: var(--ifm-red);
|
||||||
|
font-size: 24px;
|
||||||
|
padding-top: 5px;
|
||||||
|
border-bottom: 2px solid var(--ifm-red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.homeheader
|
||||||
|
{
|
||||||
|
background-image: url('/img/header.png');
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
padding-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bottomimg
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
.imglink
|
||||||
|
{
|
||||||
|
width: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footerlegal
|
||||||
|
{
|
||||||
|
right: 0;
|
||||||
|
float: right;
|
||||||
|
margin-top: 80px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Three image containers (use 25% for four, and 50% for two, etc) */
|
||||||
|
|
||||||
|
.column
|
||||||
|
{
|
||||||
|
float: left;
|
||||||
|
margin-left: 0px;
|
||||||
|
padding-left: 2.5%;
|
||||||
|
padding-right: 2.5%;
|
||||||
|
width: 15%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Clear floats after image containers */
|
||||||
|
|
||||||
|
.row::after
|
||||||
|
{
|
||||||
|
content: "";
|
||||||
|
clear: both;
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 768px)
|
||||||
|
{
|
||||||
|
.column
|
||||||
|
{
|
||||||
|
padding-left: 5%;
|
||||||
|
padding-right: 5%;
|
||||||
|
width: 40%;
|
||||||
|
}
|
||||||
|
.h2
|
||||||
|
{
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
.footer
|
||||||
|
{
|
||||||
|
margin-top: 15%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 500px)
|
||||||
|
{
|
||||||
|
.column
|
||||||
|
{
|
||||||
|
padding-left: 0%;
|
||||||
|
padding-right: 5%;
|
||||||
|
width: 45%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.profileimg
|
||||||
|
{
|
||||||
|
overflow: hidden;
|
||||||
|
height: auto;
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.profilesection
|
||||||
|
{
|
||||||
|
width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
margin-bottom: 2.5%;
|
||||||
|
background-color: var(--ifm-red);
|
||||||
|
}
|
||||||
|
|
||||||
|
.image_collage
|
||||||
|
{
|
||||||
|
line-height: 0;
|
||||||
|
-webkit-column-count: 5;
|
||||||
|
-webkit-column-gap: 0px;
|
||||||
|
-moz-column-count: 5;
|
||||||
|
-moz-column-gap: 0px;
|
||||||
|
column-count: 5;
|
||||||
|
column-gap: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image_collage img
|
||||||
|
{
|
||||||
|
width: 100% !important;
|
||||||
|
height: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1200px)
|
||||||
|
{
|
||||||
|
.image_collage
|
||||||
|
{
|
||||||
|
-moz-column-count: 4;
|
||||||
|
-webkit-column-count: 4;
|
||||||
|
column-count: 4;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1000px)
|
||||||
|
{
|
||||||
|
.image_collage
|
||||||
|
{
|
||||||
|
-moz-column-count: 3;
|
||||||
|
-webkit-column-count: 3;
|
||||||
|
column-count: 3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 800px)
|
||||||
|
{
|
||||||
|
.image_collage
|
||||||
|
{
|
||||||
|
-moz-column-count: 2;
|
||||||
|
-webkit-column-count: 2;
|
||||||
|
column-count: 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 400px)
|
||||||
|
{
|
||||||
|
.image_collage
|
||||||
|
{
|
||||||
|
-moz-column-count: 1;
|
||||||
|
-webkit-column-count: 1;
|
||||||
|
column-count: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.latest
|
||||||
|
{
|
||||||
|
position: relative;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.latestdiv
|
||||||
|
{
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sponsors
|
||||||
|
{
|
||||||
|
margin-top: 20px;
|
||||||
|
clear: both;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.linkimg:hover
|
||||||
|
{
|
||||||
|
filter: invert(70%);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width:499px)
|
||||||
|
{
|
||||||
|
.djsectionmenu500
|
||||||
|
{
|
||||||
|
height: 70px;
|
||||||
|
overflow: hidden;
|
||||||
|
min-width: 60px;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width:767px)
|
||||||
|
{
|
||||||
|
.h1mobile
|
||||||
|
{
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -17,7 +17,7 @@
|
|||||||
</head>
|
</head>
|
||||||
<body class="body">
|
<body class="body">
|
||||||
<header class="header">
|
<header class="header">
|
||||||
<a href="/"><img src="/static/<%= titles['url'] %>.svg" alt="videohotmix logo" class="hotmixlogo"/></a>
|
<a href="/"><img src="/static/<%= titles['header'] %>" alt="videohotmix logo" class="hotmixlogo"/></a>
|
||||||
</header>
|
</header>
|
||||||
<h1 class="h1 h1mobile">Tons Of Mix - Downloads & Streams (right click + Save link as... for downloads)<br>
|
<h1 class="h1 h1mobile">Tons Of Mix - Downloads & Streams (right click + Save link as... for downloads)<br>
|
||||||
<%= titles.name %><br>
|
<%= titles.name %><br>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user