diff options
Diffstat (limited to 'www.angelova.eu')
| -rw-r--r-- | www.angelova.eu/config.xml | 50 | ||||
| -rw-r--r-- | www.angelova.eu/content/home.xml | 27 | ||||
| -rw-r--r-- | www.angelova.eu/htdocs/styles/default.css | 109 | ||||
| -rw-r--r-- | www.angelova.eu/templates/xhtml.xml | 38 |
4 files changed, 224 insertions, 0 deletions
diff --git a/www.angelova.eu/config.xml b/www.angelova.eu/config.xml new file mode 100644 index 0000000..502eaa0 --- /dev/null +++ b/www.angelova.eu/config.xml @@ -0,0 +1,50 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?> +<config> + <!-- Static variables are written like %%varname%% --> + <!-- Dynamic variables are written like $$varname$$ --> + <!-- Special variables for XML-ing are written like @@varname@@ --> + <variables> + <title>%%host%% - %%site%%</title> + <piwik>web.buetow.org/stats</piwik> + <documentsurl>?document=</documentsurl> + <imagesurl>%%documentsurl%%images/</imagesurl> + <stylesurl>%%documentsurl%%styles/</stylesurl> + <whitespace> </whitespace> + <analytics>A-5916832-1</analytics> + </variables> + <rules> + <!-- Possible rules-params: --> + <!-- end=yes --> + <!-- start=yes --> + <!-- Possible special-vars: --> + <!-- @@text@@ = The content text of the current content-tag --> + <!-- @@paramname@@ = The value of the specified tag parameter --> + <xhtml> + <pagetitle>[h1]</pagetitle> + <textheader>[h2]</textheader> + <textsubheader>[h3]</textsubheader> + <news start="yes"></news> + <important>[div class="important"]</important> + <text>[p]</text> + <type>[span class="@@class@@"]</type> + <quote>[pre class="quote"]</quote> + <pretext>[p][pre]</pretext> + <link>[a href="@@text@@"]</link> + <namedlink>[a href="@@href@@"]</namedlink> + <picture>[a href="@@href@@"][img align="center" border="1" alt="@@desc@@" title="@@desc@@" src="@@src@@"]</picture> + <cimg start="yes">[img border="0" alt="@@title@@" title="@@title@@" src="@@href@@" /]</cimg> + <rimg start="yes">[img border="0" alt="@@title@@" title="@@title@@" class="rimg" src="@@href@@" align="right" /]</rimg> + <limg start="yes">[img border="0" alt="@@title@@" title="@@title@@" class="limg" src="@@href@@" align="left" /]</limg> + <newline start="yes">[br /]</newline> + <menu>[div class="menu"]</menu> + <menuitem>[a class="menuitem" href="@@link@@$$params$$"]</menuitem> + <activemenuitem>[a class="activemenuitem" href="@@link@@$$params$$"]</activemenuitem> + <enumeration>[ul]</enumeration> + <enumitem>[li]</enumitem> + <enumitemna>[li class="na"]</enumitemna> + <incsep>[div class="incsep"]</incsep> + <code>[pre class="code"]</code> + <javascript>[script type="text/javascript" language="JavaScript"]</javascript> + </xhtml> + </rules> +</config> diff --git a/www.angelova.eu/content/home.xml b/www.angelova.eu/content/home.xml new file mode 100644 index 0000000..a2ac2b0 --- /dev/null +++ b/www.angelova.eu/content/home.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?> +<content> + <pagetitle>www.angelova.eu</pagetitle> + <text> + <noop>Hier entsteht eine neue Webpräsenz von</noop> + </text> + <enumeration> + <enumitem>Albena Angelova</enumitem> + </enumeration> + <text> + <noop>Bei Fragen oder Anregungen wenden Sie sich bitte per E-Mail an </noop> + <javascript> + // Anti-Spam + function strrev(str) { + if (!str) return ''; + var revstr = ''; + for (var i = str.length-1; i>=0; i--) + revstr += str.charAt(i) + return revstr; + } + var array = new Array('ue', '.', 'avolegna', '@', 'anebla'); + for (var i = array.length - 1; i >= 0; --i) { + document.write(strrev(array[i])); + } + </javascript> + </text> +</content> diff --git a/www.angelova.eu/htdocs/styles/default.css b/www.angelova.eu/htdocs/styles/default.css new file mode 100644 index 0000000..5b837cd --- /dev/null +++ b/www.angelova.eu/htdocs/styles/default.css @@ -0,0 +1,109 @@ +body { + font-family: "Lucida Grande", "Lucida Sans", Verdana, sans-serif; + font-size: 12px; + background-color: #FFFFFF; + background-image: url(?document=images/bg.png); + background-repeat: repeat-x; + margin: 0px; +} + +p { + padding: 1px 0; +} + +div.header { + background-color: #01768f; + border-color: #000000; + border-width: 2px; + border-style: solid; + color: #FFFFFF; + padding: 20px; + margin: 0px; + margin-bottom: 20px; + text-align: center; +} + +span.italic { + font-style: italic; +} + +span.bold { + font-weight: bold; +} + +div.main { + align: center; + background-color: #FFFFFF; + border-width: 1px; + border-style: solid; + padding: 5px; + width: 690px; + margin: 15px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +div.important { + background-color: #FF8181; + border-width: 1px; + border-style: solid; +} + +h1 { + padding-left: 10px; + font-size: 30px; +} + +h2, h3, p { + padding-left: 10px; + padding-right: 10px; +} + + +pre, .quote, .code { + border:1px #000000 solid; + font-family: "Courier New", courier; + background: #FFFFFF; + color: #000000; + padding-top: -10px; + padding-right: 10px; + padding: 10px; + margin-bottom: 30px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +.footer { + background-color: #EEEEEE; + color: #000000; + text-align: center; + font-style: italic; + font-size: 12px; + margin-top: 10px; + padding: 10px; + -moz-border-radius: 7px; + -webkit-border-radius: 7px; +} + +a { + color: #000000; +} + +a:hover { + color: #FF0000; + text-decoration: none; +} + +img { + padding-left: 10px; + padding-bottom: 10px; +} + +img.limg { + padding-right: 10px; +} + +div.incsep { + background-color: #FEFEFE; + padding-bottom: 50px; +} diff --git a/www.angelova.eu/templates/xhtml.xml b/www.angelova.eu/templates/xhtml.xml new file mode 100644 index 0000000..8e9f418 --- /dev/null +++ b/www.angelova.eu/templates/xhtml.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?> +<content type="text/html"> +<tag>!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</tag> +<html xmlns="http://www.w3.org/1999/xhtml"> + <head> + <title>%%title%%</title> + <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" /> + <meta name="author" content="Albena Angelova" /> + <meta name="publisher" content="Xerl Template Engine (xerl.buetow.org)" /> + <meta name="distribution" content="global" /> + <meta name="robots" content="index, follow" /> + <meta name="language" content="en, english" /> + <meta name="revisit-after" content="1 days" /> + <=link rel="stylesheet" type="text/css" href="%%stylesurl%%$$style$$" /> + <script type="text/javascript"> + var pkBaseURL = (("https:" == document.location.protocol) ? "http://%%piwik%%/" : "http://%%piwik%%/"); + document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E")); + </script> + <script type="text/javascript"> + try { + var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 1); + piwikTracker.trackPageView(); + piwikTracker.enableLinkTracking(); + } catch( err ) {} + </script> + <noscript> + <img src="http://web.buetow.org/stats/piwik.php?idsite=1" style="border:0" alt="" /> + </noscript> + </head> + <body> + <div class="main"> + <navigation /> + <noop>%%content%%</noop> + </div> + </body> +</html> +</content> + |
