2021-11-23 09:27:42 -08:00
< ? php
if ( ! defined ( 'e107_INIT' ))
{
require_once ( " class2.php " );
define ( 'e_IFRAME' , true );
2021-12-01 11:59:49 -08:00
$css = " body { background: rgb(55, 55, 55); padding:50px; color: white; text-align: left; font-size:16px; line-height:1.5em; font-weight:normal; font-family:Arial, Helvetica, sans-serif; }
2021-11-23 09:27:42 -08:00
p { margin : 0 px 5 px 10 px 5 px ; }
a { color : #F6931E; text-decoration:none; }
a : hover { color : #fdce8a; text-decoration:none; }
. bold { font - weight : bold ; }
. center { text - align : center ; }
. wrapper { width : 600 px ; margin : 0 px auto 0 px 0 px ; margin - left : auto ; margin - right : auto ; padding - bottom : 10 px ; }
. wrapper - middle { min - height : 389 px ; }
. logo { margin - bottom : 20 px }
. credits - content { padding : 20 px 40 px ;}
. copyright { margin - top : 30 px }
2021-11-24 14:00:47 -08:00
. credits - content { min - height : 20 px ; padding : 19 px ; border : 1 px solid #0f0f0f; border-radius: 6px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
box - shadow : inset 0 1 px 1 px rgba ( 0 , 0 , 0 , . 05 ); color : #eee; background-color: #222 !important;
2021-11-23 09:27:42 -08:00
}
" ;
e107 :: css ( 'inline' , $css );
2021-12-01 11:59:49 -08:00
e107 :: link ([ 'rel' => " canonical " , 'href' => SITEURL . " credits.php " ]);
e107 :: title ( 'e107 Development Credits and Sponsors' );
e107 :: meta ( 'description' , 'e107 bootstrap content management system development credits and sponsors.' );
e107 :: meta ( 'og:image' , SITEURLBASE . e_IMAGE_ABS . 'admin_images/credits_logo.png' );
e107 :: meta ( 'og:url' , SITEURL . " credits.php " );
2021-11-23 09:27:42 -08:00
require_once ( HEADERF );
}
$text = ' < div class = " wrapper " >
< div class = " wrapper-middle " >
< div class = " well credits-content " >
2021-12-01 11:59:49 -08:00
< img class = " logo " src = " '.e_IMAGE_ABS.'admin_images/credits_logo.png " alt = " e107 Logo " title = " e107 bootstrap content management system logo " />
2021-11-23 09:27:42 -08:00
< div class = " wrapper-text " >
< h4 class = " text-info " > Developers </ h4 >
< p >
< a target = " _blank " title = " View Github profile " href = " https://github.com/CaMer0n " > CaMer0n </ a > , < a target = " _blank " title = " View Github profile " href = " https://github.com/Moc " > Moc </ a > , < a target = " _blank " title = " View Github profile " href = " https://github.com/Deltik " > Deltik </ a >.< br />
A complete list of the past and present contributors < a target = " _blank " title = " View all contributors on Github " href = " https://github.com/e107inc/e107/graphs/contributors " > can be found here </ a >.
</ p >
< h4 class = " text-info " > Third Party Code </ h4 >
< p >
jQuery , Twitter Bootstrap , FontAwesome , HybridAuth , PhpMailer , Intervention , Minify , MagpieRSS , PCLZip , PCLTar , TinyMCE , Nuvolo Icons , TCPDF , PHP UTF8
</ p >
< h4 class = " text-info " > Sponsors </ h4 >
< p >
< a target = " _blank " href = " https://www.jetbrains.com/?from=e107 " title = " Visit JetBrains " > JetBrains </ a > , < a target = " _blank " href = " https://stemaidinstitute.com " title = " Visit Stemaid Institute " > Stemaid </ a >.< br />
</ p >
< div class = " copyright " > Copyright < a target = " _blank " href = " https://e107.org/community " title = " e107 Team " > e107 . org </ a > 2008 - '.date(' Y ').' .< br /> Released under the terms of the GNU GPL License .</ div >
</ div >
</ div >
</ div >
</ div > ' ;
2021-11-24 14:00:47 -08:00
echo $text ;
2021-11-23 09:27:42 -08:00
if ( deftrue ( 'e_IFRAME' ))
{
require_once ( FOOTERF );
}