AEOS Calvarium v0.1a

This commit is contained in:
OverSu 2026-08-26 17:21:47 +02:00
commit 37d5452518
56 changed files with 2081 additions and 0 deletions

47
themes/defaut/base.php Normal file
View file

@ -0,0 +1,47 @@
<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){
if ($page['page']['ordre']['#text']==$id)
{
echo "<li><a href='index.php?id=".$page['page']['ordre']['#text']."'><b>".$page['page']['nom']['#text']."</b></a></li>";
}
else
{
echo "<li><a href='index.php?id=".$page['page']['ordre']['#text']."'>".$page['page']['nom']['#text']."</a></li>";
}
}
}
?>
</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');
echo $contenu['page']['contenu']['#text'];
?>
</p>
</div>
</div>
<div id="footer">
<p>
AEOS v<?php echo $SITE_VERSION; ?> - <?php echo round(microtime(true)-$execTime, 3)."s<br />".$SITE_FOOTER; ?>
</p>
</div>
</div>
</body>
</html>

10
themes/defaut/config.xml Normal file
View file

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<configuration>
<id>1</id>
<nom>AEOS - Défaut</nom>
<dossier>defaut</dossier>
<description>Thème de base d'AEOS</description>
<version>1.0.0</version>
<auteurs>N.n.S Production</auteurs>
<email>contact@nekonosekai.com</email>
</configuration>

View file

@ -0,0 +1,3 @@
<?php
echo "<span class='erreur'>Aucune modification possible sur ce thème.</span>";
?>

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 968 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 988 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,002 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 950 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 946 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,000 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,014 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,012 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,001 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 966 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 997 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,023 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -0,0 +1,10 @@
<!-- Maintenance -->
<body>
<div id="content">
<div id="center">
<p><?php echo $SITE_MESSAGE; ?></p>
</div>
<div id="left"></div>
</div>
</body>
</html>

View file

@ -0,0 +1,3 @@
<!--
Ici, modification possible au format XML pour votre thème.
-->

106
themes/defaut/styles.css Normal file
View file

@ -0,0 +1,106 @@
body,html{
font-family: Arial, sans-serif;
font-size: 12px;
margin:0;
color: #666;
}
/* Design */
#header{
background: url(images/bg_header.png) repeat-x #D8D8D8;
overflow: hidden;
margin-bottom: 15px;
border-bottom: 5px solid #D8D8D8;
}
#header p {width: 960px; color: #fff; margin: 5px auto 15px auto;}
#corps{
width: 960px;
margin: 0 auto 0;
margin-bottom: 30px;
overflow: hidden;
}
#contentG{
float: left;
width: 950px;
/*width: 600px*/
margin-right: 60px;
}
#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;}

View file

@ -0,0 +1,3 @@
/*
Ici, création d'un thème format iPhone/iPod
*/