I'm one new user of this, I just install webEdition 8.0.5 on localhost and for now, I'm 0 knowledge.
have any English tutorial for beginners or something?
Here in the attachment is a screen of my dashboard how it looks clear

Code: Alles auswählen
<!DOCTYPE HTML>
<html dir="ltr" lang="<we:pageLanguage type="language" doc="top" />">
<head>
<we:title></we:title>
<we:description></we:description>
<we:keywords></we:keywords>
<we:charset defined="UTF-8">UTF-8</we:charset>
</head>
<body>
<!-- webEdition demo template (8.0.5.0) -->
<article style="width:400px">
<h1><we:input type="text" name="Headline" style="width:60em"/></h1>
<p><b><we:input type="date" name="Date" currentdate="true" format="d.m.Y"/></b></p>
<we:ifNotEmpty name="Image">
<p><we:img name="Image" showthumbcontrol="true"/></p>
</we:ifNotEmpty>
<we:textarea name="Content" width="400" height="400" wysiwyg="true" removefirstparagraph="false" inlineedit="true"/>
</article>
</body>
</html>
Code: Alles auswählen
<we:input .../>
<we:a ...>...</we:a>
Code: Alles auswählen
<!doctype html>
<html lang="<we:pageLanguage type="language" doc="top" />">
<head>
<we:charset defined="UTF-8">UTF-8</we:charset>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<we:title></we:title>
<we:description></we:description>
<we:keywords></we:keywords>
<we:css id="123" comment="inserts a css-stylesheet with the WE-ID 123" />
<we:js id="124" comment="inserts a javascript with the WE-ID 124" />
</head>
<body>
<we:ifEditmode comment="This is only visible for backend users">
<b>Headline:</b><br>
<we:input type="text" name="headline" size="50"/><br>
<b>Introduction (Text only)</b><br>
<b>Image:</b><br>
<we:img name="image" /><br>
<we:textarea wysiwyg="false" name="teaser" cols="20" rows="10" width="600" height="100" /><br>
<we:block name="content" comment="the block element repeats everything in it, like a loop">
<b>Subheading</b><br>
<we:input type="text" name="subheading" size="50"/><br>
<b>Another image:</b><br>
<we:img name="image_in_block" /><br>
<b>Formatted text:</b><br>
<we:textarea wysiwyg="true" name="text" cols="20" rows="10" width="800" height="400" removefirstparagraph="false" inlineedit="true" />
</we:block>
</we:ifEditmode>
<we:ifNotEditmode comment="This is visible for visitors">
<h1>
<we:input type="text" name="headline" comment="see how you can omit the size attribute? Only type and name are necessary!"/>
</h1>
<we:ifNotEmpty name="image" type="image">
<we:img name="image"/>
</we:ifNotEmpty>
<we:ifNotEmpty name="teaser" comment="if the teaser is empty, the p.teaser-element is not displayed">
<p class="teaser">
<we:textarea name="teaser" comment="This is only text"/>
</p>
</we:ifNotEmpty>
<we:block name="content">
<we:ifNotEmpty name="subheading" comment="if the subheading is empty, no h2 is displayed!">
<h2>
<we:input type="text" name="subheading"/>
</h2>
</we:ifNotEmpty>
<we:ifNotEmpty name="image_in_block" type="image">
<we:img name="image"/>
</we:ifNotEmpty>
<we:textarea wysiwyg="true" name="text" comment="Here comes a HTML textfield" />
</we:block>
</we:ifNotEditmode>
</body>
</html>
Code: Alles auswählen
<!doctype html>
<html lang="<we:pageLanguage type="language" doc="top" />">
<head>
<we:charset defined="UTF-8">UTF-8</we:charset>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<we:title></we:title>
<we:description></we:description>
<we:keywords></we:keywords>
<we:css id="123" comment="inserts a css-stylesheet with the WE-ID 123" />
<we:js id="124" comment="inserts a javascript with the WE-ID 124" />
</head>
<body>
<we:content />
</body>
</html>
Code: Alles auswählen
<we:content name="preheader"/><!doctype html>
<html lang="<we:pageLanguage type="language" doc="top" />">
<head>
<we:content name="html_header"/>
</head>
<body>
<we:content />
<we:content name="body_end"/>
</body>
</html>
Code: Alles auswählen
<!-- This is displayed in we:content -->
Whatever
<!-- // This is displayed in we:content -->
<!-- These are displayed in the we:content-sections with names -->
<we:master name="preheader"><?php // You could set a http-Header here! ?></we:master>
<we:master name="html_header">
<style>
/* Set individual CSS-Styles fpor this template only! */
</style>
</we:master>
<we:master name="body_end">
<script>
/* This JavaScript is only included in this template */
</script>
</we:master>
Code: Alles auswählen
<ul>
<we:listview type="document" order="we_published" desc="true" rows="10">
<we:repeat>
<li>
<b><we:field name="headline" alt="we_title" hyperlink="true"/></b><br>
<we:ifFieldNotEmpty name="image" type="img">
<we:field type="img" name="image" /><br>
</we:ifFieldNotEmpty>
<we:field type="text" name="teaser" hyperlink="true" alt="description" max="255" striphtml="true" />
</li>
</we:repeat>
<we:ifBack>
<we:back>Back</we:back>
</we:ifBack>
<we:ifNext>
<we:next>Next</we:next>
</we:ifNext>
</we:listview>
</ul>
Mitglieder in diesem Forum: 0 Mitglieder und 1 Gast