thank for your explanation

So, if I understand, there is the possibility of implement YAML into phpWCMS, but there are some (little?) problems still?
And the version for phpWCMS, in addition to Joomla etc., must have released from YAML, correct?
No problems, only some extra work in the NAV_LIST_UL Tag ... as for example an extra class for the active Section, to get Navigation deeper without double use of same classes.sustia wrote: So, if I understand, there is the possibility of implement YAML into phpWCMS, but there are some (little?) problems still?
No, why ? I think when things are completed they (YAML.de) will do by themselves. Dirk Jesse did already look at my Site, he just failed in the {LEFT} ...{CONTENT} - Tags, http://www.highresolution.info/webdesig ... opic=817.0 for those who know phpwcms a minor problemsustia wrote: And the version for phpWCMS, in addition to Joomla etc., must have released from YAML, correct?
mein suchbegriff war allerdings: lightbox -DF6IH wrote:An dem Krams den du suchst wird gerade gebastelt...
Code: Select all
<link href="yaml/css/layout_3col_abb.css" rel="stylesheet" type="text/css"/>
<!--[if lte IE 7]>
<link href="yaml/css/explorer/iehacks_3col_abb.css" rel="stylesheet" type="text/css" />
<![endif]-->
Code: Select all
<div id="page_margins">
<div id="page" class="hold_floats">
<div id="header">
<div id="topnav">
<a class="skip" href="#content" title="Direkt zum Inhalt springen">Zum Inhalt springen</a>
<!-- Ende: Skiplink-Navigation -->
<a href="index.php?impressum">Impressum</a> </div>
<img src="picture/Logo.jpg"> // ähm, das muß man selbst haben :-)
<div id="nav">
<a id="navigation" name="navigation"></a>
<div id="nav_main">
{NAV_LIST_UL:F,,1,,current,}
</div>
</div>
</div>
<!-- Anfang 3-Spalten-Hauptteil -->
<div id="main">
<!-- Linke Spalte -->
<div id="col1">
<div id="col1_content" class="clearfix">
<ul id="submenu">
[PHP]
if(isset($GLOBALS['LEVEL_ID'][1])) {
$level_id = $GLOBALS['LEVEL_ID'][1];
$name= $GLOBALS['LEVEL_STRUCT'][$GLOBALS['LEVEL_KEY'][$level_id]];
echo '<li id="active"><b>'.$name. ' -></b> </li><br />';
echo '{NAV_LIST_UL:F,'.$level_id.',2,,active,,,}';
/* die 2 in der Nav_list_Ul sorgt für einen weiteren Untermenu Eintrag entspricht Unter-Ebene 3 */
}
[/PHP]
</ul>
{LEFT}
</div>
</div>
<!-- Rechte Spalte -->
<div id="col2">
<div id="col2_content" class="clearfix">
{CONTENT}
</div>
</div>
<!-- Mittlere Spalte -->
<div id="col3">
<div id="col3_content" class="clearfix">
{RIGHT}
</div>
<!-- IE Column Clearing -->
<div id="ie_clearing"> </div>
<!-- Ende: IE Column Clearing -->
</div>
<!-- Ende 3-Spalten-Hauptteil -->
</div>
<!-- Fußzeile -->
<div id="footer">
Dieses Layout basiert auf <a href="http://www.yaml.de/">YAML</a>
© 2005-2006 by <a href="http://www.highresolution.info">Dirk Jesse</a> Gesteuert von PHPWCMS
{FOOTER} </div>
</div>
</div>