new style

This commit is contained in:
Abdulrahman
2019-01-14 21:05:27 +03:00
parent 8a45c88725
commit 2ba938e17c
7 changed files with 210 additions and 1 deletions

View File

@@ -218,7 +218,7 @@ $kleeja_plugin['klj_adfly']['functions'] = array(
* special functions
*/
if (!function_exists('genera_klj_adfly_link')) {
if (!function_exists('generate_klj_adfly_link')) {
function generate_klj_adfly_link($link)
{
global $config;

View File

@@ -0,0 +1 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1256" /><title>Powered by Kleeja</title><style type="text/css">* {font-size: 100%;margin:0;padding: 0; color:#CECFCE;}body { font-family: Tahoma ,Arial, sans-serif;font-size: 100%;color: #69788E; margin: 10px 30px;background: #F7F7F7;}a:link, a:visited {text-decoration: none;color:#CECFCE;}a:active, a:hover {text-decoration: underline;color: #111;}h1 {font-family: "Trebuchet MS", Helvetica, sans-serif; font-size: 1.70em;font-weight: normal;color: #333333;margin-top: 0; margin-bottom: 10px;}.content_box {border: 1px dashed #CECFCE;background: #FFFFFF;padding: 10px;margin-right: auto;margin-left: auto;}</style> </head> <body title="&#1603;&#1604;&#1610;&#1580;&#1575;"><br /><div class="content_box"><p><a target="_blank" href="http://www.kleeja.com" title="kleeja"><img border="0" src="http://kleeja.com/index.png"></a></p><br /><h1><span style="font-size:250%;color:#D80000;">403 - Access forbidden!</span></h1></div><br /><div class="content_box"><span style="font-size: 140%">Powered by Kleeja &gt;&gt;&gt; the best uploader ...</span > >> <a target="_blank" href="http://www.kleeja.com/bugs/ar/">Bugs</a> | <a target="_blank" href="http://www.kleeja.com/plugins/">Plugins</a> | <a target="_blank" href="http://www.kleeja.com/styles/">Styles</a> | </div></body></html>

View File

@@ -0,0 +1,17 @@
/**
* Kleeja team
* 2017
*/
.btn-primary{
background-color: #1b1e21;
border-color: #1b1e21;
}
.btn-outline-primary{
border-color: #1b1e21;
color: #1b1e21 !important;
}
.btn-outline-primary span{
color: #1b1e21 !important;
}

View File

@@ -0,0 +1,105 @@
<!DOCTYPE html>
<html lang="{lang.LANG_SMALL_NAME}" dir="{dir}">
<head>
<meta charset="{charset}">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="author" content="Kleeja.com">
<title>{title}(title? - :){config.sitename}</title>
<link rel="shortcut icon" href="images/favicon.ico" />
<link rel="icon" type="image/gif" href="images/favicon.gif" />
<link rel="apple-touch-icon" href="images/apple-touch-icon.png" />
<link rel="apple-touch-startup-image" href="images/iPhone.png" />
<!-- Bootstrap core CSS -->
<link href="{STYLE_PATH}css/bootstrap.min.css" rel="stylesheet">
<link href="{STYLE_PATH}css/stylesheet.css" rel="stylesheet">
<link href="{THIS_STYLE_PATH}css/stylesheet.css" rel="stylesheet">
<IF NAME="lang.DIR==rtl">
<style type="text/css">
body{font-family: "Tahoma",Arial,sans-serif;}
body{
direction: rtl; /* placing it here fixes the issue with jquery white page bug */
}
</style>
<link rel="stylesheet" type="text/css" media="all" href="{STYLE_PATH}css/bootstrap.rtl.min.css" />
</IF>
<script type="text/javascript">
<!--
var LANG_PAST_URL_HERE = "{lang.PAST_URL_HERE}";
var LANG_MORE_F_FILES = "{lang.MORE_F_FILES}";
var STYLE_PATH = "{STYLE_PATH}";
-->
</script>
<!-- Extra code -->
{EXTRA_CODE_META}
</head>
<body>
<body>
<!-- header -->
<nav class="navbar navbar-toggleable-md navbar-dark navbar-inverse" style="background-color: #1d1e1f">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#TopMenuNavbar" aria-controls="TopMenuNavbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="{config.siteurl}">
<img src="{STYLE_PATH}images/logo.png" width="30" height="30" class="d-inline-block align-top" alt="{username}">
{config.sitename}
</a>
<div class="collapse navbar-collapse" id="TopMenuNavbar">
<ul class="navbar-nav mr-auto">
<LOOP NAME="top_menu">
<IF LOOP="show">
<li class="nav-item"><a href="{{url}}" class="nav-link(go_current=={{name}}? active:)">{{title}}</a></li>
</IF>
</LOOP>
</ul>
</div>
</nav>
<!-- use related menu -->
<nav class="navbar navbar-toggleable-md bg-faded navbar-light">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<span class="navbar-brand">
<img src="{STYLE_PATH}images/user.png" width="26" height="26" class="d-inline-block align-top" alt="{username}">
</span>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<LOOP NAME="side_menu">
<IF LOOP="show">
<li class="nav-item"><a href="{{url}}" class="nav-link(go_current=={{name}}? active:)">{{title}}</a></li>
</IF>
</LOOP>
</ul>
<IF NAME="user_is">
<span class="navbar-text">
{username}
</span>
</IF>
</div>
</nav>
<div class="container mt-4">
<IF NAME="extras.header">
<div class="extras_header mb-5">{extras.header}</div>
</IF>

View File

@@ -0,0 +1,58 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256"/>
<title>Powered by Kleeja</title>
<style type="text/css">* {
font-size: 100%;
margin: 0;
padding: 0;
color: #CECFCE;
}
body {
font-family: Tahoma, Arial, sans-serif;
font-size: 100%;
color: #69788E;
margin: 10px 30px;
background: #F7F7F7;
}
a:link, a:visited {
text-decoration: none;
color: #CECFCE;
}
a:active, a:hover {
text-decoration: underline;
color: #111;
}
h1 {
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 1.70em;
font-weight: normal;
color: #333333;
margin-top: 0;
margin-bottom: 10px;
}
.content_box {
border: 1px dashed #CECFCE;
background: #FFFFFF;
padding: 10px;
margin-right: auto;
margin-left: auto;
}</style>
</head>
<body title="&#1603;&#1604;&#1610;&#1580;&#1575;"><br/>
<div class="content_box">
<p>
<a target="_blank" href="http://www.kleeja.com" title="kleeja"></a>
</p>
<br/>
<h1><span style="font-size:250%;color:#D80000;">403 - Access forbidden!</span></h1></div>
<br/>
<div class="content_box"style="font-size: 140%">Powered by Kleeja</div>
</body>
</html>

28
styles/bootstrap_black/info.txt Executable file
View File

@@ -0,0 +1,28 @@
#
# This is a configuration file of the style.
# Change those values when you create
# your style ...
#
#Style name
name = Bootstrap Black
#Style desc
desc:en = Based on Bootstarp style, black version
desc:ar = مبني على بوتسراب، النسخة السوداء
#Style copyright
copyright = 2017 Kleeja.com
#Version of style
version = 1.0
#Min. required version of kleeja
kleeja_version = 2.0
#name of the style required by this style
depend_on = bootstrap
#plugins required to install this style
#plugins_required = test, test2

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB