AEOS Calvarium v0.4
53
themes/defaut/base.php
Normal file → Executable file
|
|
@ -1,45 +1,24 @@
|
|||
<?php (SECURITY)?die():FALSE; ?>
|
||||
<body>
|
||||
<div id="general">
|
||||
<div id="header">
|
||||
<h1><?php echo $SITE_NOM; ?></h1>
|
||||
<p><?php echo $SITE_DESC; ?></p>
|
||||
<ul class="menu">
|
||||
<?php
|
||||
// Listings des pages + menu
|
||||
$list=listing_dossier($DATA_PAGES);
|
||||
if(empty($_GET['id'])){$id=1;} else {$id = $_GET['id'];}
|
||||
foreach ($list as &$pages) {
|
||||
$page = lecture_xml($DATA_PAGES.$pages);
|
||||
if ($page['page']['etat']['#text']==1){
|
||||
echo "<li><a href='index.php?id=".$page['page']['ordre']['#text']."'>";
|
||||
if ($page['page']['ordre']['#text']==$id){echo "<b>"; }
|
||||
echo $page['page']['nom']['#text'];
|
||||
if ($page['page']['ordre']['#text']==$id){echo "</b>"; }
|
||||
echo "</a></li>";
|
||||
}
|
||||
}
|
||||
?>
|
||||
<div id="General">
|
||||
<div id="Header">
|
||||
<h1><?php echo AEOS_NAME; ?></h1>
|
||||
<p><?php echo AEOS_DESC; ?></p>
|
||||
|
||||
<ul class="Menu">
|
||||
<?php require_once('core/menu.php'); ?>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div id="corps">
|
||||
<div id="contentG">
|
||||
<p>
|
||||
<?php
|
||||
// Affichage de la page
|
||||
if(empty($_GET['id'])){$id=1;} else {$id = $_GET['id'];}
|
||||
$contenu = lecture_xml($DATA_PAGES.$id.'.xml');
|
||||
if((@include_once("modules/".$contenu['page']['type']['#text']."/base.php"))==FALSE)
|
||||
{
|
||||
echo "<span class='erreur'>Impossible d'accéder au module demandé.</span>";
|
||||
}
|
||||
?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="footer">
|
||||
<div id="Corps">
|
||||
<p>
|
||||
AEOS v<?php echo $SITE_VERSION; ?> - <?php echo round(microtime(true)-$execTime, 3)."s<br />".$SITE_FOOTER; ?>
|
||||
<?php require_once('core/base.php'); ?>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div id="Footer">
|
||||
<p>
|
||||
<?php require_once('core/footer.php'); ?>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
6
themes/defaut/config.xml
Normal file → Executable file
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration>
|
||||
<id>1</id>
|
||||
<nom>AEOS - Défaut</nom>
|
||||
<nom>AEOS - Défaut</nom>
|
||||
<dossier>defaut</dossier>
|
||||
<description>Thème de base d'AEOS</description>
|
||||
<description>Thème de base d'AEOS</description>
|
||||
<version>1.0.0</version>
|
||||
<auteurs>NNS Production</auteurs>
|
||||
<email>contact@nekonosekai.com</email>
|
||||
|
|
|
|||
3
themes/defaut/edition.php
Normal file → Executable file
|
|
@ -1,3 +1,4 @@
|
|||
<?php
|
||||
<?php
|
||||
(SECURITY)?die():FALSE;
|
||||
echo "<span class='erreur'>Aucune modification possible sur ce thème.</span>";
|
||||
?>
|
||||
|
Before Width: | Height: | Size: 541 B |
|
Before Width: | Height: | Size: 150 B |
0
themes/defaut/images/favicon_aeos.ico
Normal file → Executable file
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 982 B |
|
Before Width: | Height: | Size: 968 B |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 988 B |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 938 B |
|
Before Width: | Height: | Size: 938 B |
|
Before Width: | Height: | Size: 1,002 B |
|
Before Width: | Height: | Size: 950 B |
|
Before Width: | Height: | Size: 946 B |
|
Before Width: | Height: | Size: 1,000 B |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 1,014 B |
|
Before Width: | Height: | Size: 1,012 B |
|
Before Width: | Height: | Size: 1,001 B |
|
Before Width: | Height: | Size: 966 B |
|
Before Width: | Height: | Size: 997 B |
|
Before Width: | Height: | Size: 1,023 B |
0
themes/defaut/images/logo.png
Normal file → Executable file
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
4
themes/defaut/maintenance.php
Normal file → Executable file
|
|
@ -1,8 +1,10 @@
|
|||
<?php (SECURITY)?die():FALSE; ?>
|
||||
<!-- Maintenance -->
|
||||
<body>
|
||||
<div id="content">
|
||||
<div id="center">
|
||||
<p><?php echo $SITE_MESSAGE; ?></p>
|
||||
<!-- Affichage du message en cas de maintenance -->
|
||||
<p><?php echo AEOS_MAINTMSG; ?></p>
|
||||
</div>
|
||||
<div id="left"></div>
|
||||
</div>
|
||||
|
|
|
|||
0
themes/defaut/modification.xml
Normal file → Executable file
178
themes/defaut/styles.css
Normal file → Executable file
|
|
@ -1,106 +1,86 @@
|
|||
body,html{
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 12px;
|
||||
margin:0;
|
||||
color: #666;
|
||||
* {margin:0; padding:0;}
|
||||
body,html
|
||||
{
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 12px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* Design */
|
||||
#header{
|
||||
background: url(images/bg_header.png) repeat-x #D8D8D8;
|
||||
overflow: hidden;
|
||||
margin-bottom: 15px;
|
||||
border-bottom: 5px solid #D8D8D8;
|
||||
|
||||
#Header
|
||||
{
|
||||
overflow: hidden;
|
||||
margin-bottom: 15px;
|
||||
border-bottom: 5px solid #D8D8D8;
|
||||
background: #3cbae3; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #3cbae3 0%, #1389cb 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3cbae3), color-stop(100%,#1389cb)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #3cbae3 0%,#1389cb 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #3cbae3 0%,#1389cb 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, #3cbae3 0%,#1389cb 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, #3cbae3 0%,#1389cb 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3cbae3', endColorstr='#1389cb',GradientType=0 ); /* IE6-9 */
|
||||
}
|
||||
#Header h1{width: 960px; color: #fff; font-weight: normal; margin: 30px auto 5px auto;}
|
||||
#Header p {width: 960px; color: #fff; margin: 5px auto 15px auto;}
|
||||
|
||||
ul.Menu
|
||||
{
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
list-style-type: none;
|
||||
background: rgba(255, 255, 255, 0.3);
|
||||
overflow: hidden;
|
||||
}
|
||||
ul.Menu li a
|
||||
{
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
padding: 10px;
|
||||
display: block;
|
||||
}
|
||||
ul.Menu li{float: left;margin-right: 5px;}
|
||||
ul.Menu li a:hover{color: #4b537a;}
|
||||
|
||||
#Corps
|
||||
{
|
||||
width: 960px;
|
||||
margin: 0 auto 0;
|
||||
margin-bottom: 30px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#header p {width: 960px; color: #fff; margin: 5px auto 15px auto;}
|
||||
#Footer{clear: both; text-align: center;}
|
||||
#Footer a {color:#33AFDE; text-decoration:none;}
|
||||
|
||||
#corps{
|
||||
width: 960px;
|
||||
margin: 0 auto 0;
|
||||
margin-bottom: 30px;
|
||||
overflow: hidden;
|
||||
#DeadZone
|
||||
{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: black;
|
||||
z-index:1001;
|
||||
-moz-opacity: 0.5;
|
||||
opacity:.50;
|
||||
filter: alpha(opacity=50);
|
||||
overflow:hidden;
|
||||
}
|
||||
#contentG{
|
||||
float: left;
|
||||
width: 950px;
|
||||
/*width: 600px*/
|
||||
margin-right: 60px;
|
||||
#LifeZone
|
||||
{
|
||||
position: absolute;
|
||||
top: 25%;
|
||||
left: 50%;
|
||||
width: 350px;
|
||||
height: 295px;
|
||||
padding: 16px;
|
||||
border: 3px solid #1367BB;
|
||||
background-color: white;
|
||||
z-index:1002;
|
||||
margin:0 0 0 -175px;
|
||||
}
|
||||
#contentD{
|
||||
float: left;
|
||||
width: 298px;
|
||||
}
|
||||
|
||||
#footer{clear: both; text-align: center;}
|
||||
#footer a {color:#33AFDE; text-decoration:none;}
|
||||
|
||||
/* Menus */
|
||||
ul.menu{
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
list-style-type: none;
|
||||
background: url(images/bg_nav.png);
|
||||
overflow: hidden;
|
||||
}
|
||||
ul.menu li a{
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
padding: 10px;
|
||||
display: block;
|
||||
}
|
||||
ul.menu li{float: left;margin-right: 5px;}
|
||||
ul.menu li a:hover{color: #4b537a;}
|
||||
|
||||
|
||||
/* Styles */
|
||||
#text_input {width:250px;}
|
||||
.input_text {border:1px solid #5EB2DC;background-color:#FFFFFF; padding:3px; font-family:Arial; font-size:12px;}
|
||||
.input_text_mini {border:1px solid #5EB2DC;background-color:#FFFFFF; padding:3px; width:76px; font-family:Arial; font-size:12px;}
|
||||
.area_text {border:1px solid #5EB2DC;background-color:#FFFFFF; padding:3px; width:250px; height:100px; font-family:Arial; font-size:12px;}
|
||||
|
||||
|
||||
/* Tableaux */
|
||||
#tableau {border:1px solid #5EB2DC; padding:15px;}
|
||||
#tableau tr:hover {background:#CEE7F4;}
|
||||
#tableau tr {border:1px solid black;}
|
||||
#en_tete {font-weight:bold; background:#A5D2EB;}
|
||||
tr:hover#en_tete {background:#A5D2EB;}
|
||||
|
||||
/* Formulaire */
|
||||
#option_table a {text-decoration:none; color:#666666;}
|
||||
#option_table td {border:1px solid #5EB2DC; padding:3px; background:url(tinyeditor/images/header-bg.gif) repeat-x; height:34px;}
|
||||
#option_table td:hover {padding:3px; background-image:none; background-color:#FFFFFF; height:34px;}
|
||||
.div_unique1 {float:left; border:1px solid #5EB2DC;width:184px; margin:0 0 30px 20px; height:237px; padding:20px;}
|
||||
|
||||
/* Admin BOX */
|
||||
#content {position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: white;}
|
||||
#center {position: absolute;
|
||||
height: 200px; top:0; bottom:0; left:0; right: 0; margin: auto; background-color: #1389CA;
|
||||
text-align:left; text-align:center; color:#FFF; border-top:5px solid #E9EBF5 ; border-bottom:5px solid #E9EBF5 ; background-image:url(images/bg_header.png);background-repeat:repeat-x;}
|
||||
#left {width: 76px; height: 77px; background:url(images/logo.png) no-repeat; text-indent:-5000; font-size:0; margin:-90px auto 20px;}
|
||||
|
||||
/* Boutons */
|
||||
.erreur {color:red; font-weight:bold; text-shadow:#FFFFFF 0px 0px 2px;}
|
||||
.valide {color:green; font-weight:bold; text-shadow:#FFFFFF 0px 0px 2px;}
|
||||
.input {border:1px solid #219AD2;}
|
||||
.option {border:1px solid #219AD2; padding:2px;}
|
||||
#add_but {background:url(images/icones/ajout.png) no-repeat; padding:4px 0px 4px 17px; border:none; background-position:left center; font-size:12px; font-family:Arial; color:#A60000; cursor:pointer;}
|
||||
#apply_but {background:url(images/icones/apply.png) no-repeat; padding:4px 0px 4px 17px; border:none; background-position:left center; font-size:12px; font-family:Arial; color:#666666;}
|
||||
#save_but {background:url(images/icones/save.png) no-repeat; padding:4px 0px 4px 17px; border:none; background-position:left center; font-size:12px; font-family:Arial; color:#666666;}
|
||||
|
||||
/* Icones */
|
||||
.icon {margin:0 4px -2px 0;}
|
||||
.petit_decalage {margin:0 5px 0 5px;}
|
||||
.decalageBas {margin:0 0 -10px 0;}
|
||||
|
||||
|
||||
/* Bases */
|
||||
ul{margin-left: 0; padding-left: 0; list-style-position: inside;}
|
||||
a{color: #b70034;}
|
||||
h1{width: 960px; color: #fff; font-weight: normal; margin: 30px auto 5px auto;}
|
||||
h6{font-size:14px; margin:10px 0 5px 0;}
|
||||
.text_left {text-align:justify; padding:10px;}
|
||||
.link {text-decoration:none;}
|
||||
.gauche {float:left;}
|
||||
.gauche50 {float:left; margin:0 50px 0 0;}
|
||||
#LifeZone h1 {font-size:23px; color:#1367BB; margin:0 0 30px 0;}
|
||||
#LifeZone p {text-align:center; line-height:14px;}
|
||||
#LifeZone img {margin:0 0 20px 0;}
|
||||
#LifeZone a {color:#1367BB; text-decoration:none;}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
/*
|
||||
Ici, création d'un thème format iPhone/iPod
|
||||
*/
|
||||