1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns:s="https://beratung-franzke.de/web-tpl">
<xsl:include href="common.xsl" />
<xsl:template match="s:html">
<html lang="de">
<head>
<title>
<xsl:if test="$filename != 'index.xml'">
<xsl:value-of select="$title"/>
<xsl:text> – </xsl:text>
</xsl:if>
<xsl:text><![CDATA[Unternehmensberatung & Controlling, Angelika Franzke]]></xsl:text>
</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width" />
<xsl:if test="/s:html/@robots">
<meta name="robots">
<xsl:attribute name="content">
<xsl:value-of select="/s:html/@robots" />
</xsl:attribute>
</meta>
</xsl:if>
<style><xsl:value-of select="$stylesheet"/></style>
<script>var gap='UA-103015031-1';if(navigator.userAgent.indexOf("Speed Insights")==-1){if(document.cookie.indexOf('ga-disable-'+gap+'=true')>-1)window['ga-disable-'+gap]=true;(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create',gap,'auto');ga('set','anonymizeIp',true);ga('send','pageview');}</script>
</head>
<body>
<header>
<xsl:apply-templates select="document('../checkmark.svg')" mode="inline-svg"/>
<div class="h1">Unternehmensberatung & Controlling</div>
<div class="h2">Angelika Franzke</div>
</header>
<nav>
<ul>
<xsl:call-template name="navigation" />
</ul>
</nav>
<main>
<article>
<xsl:apply-templates mode="html" />
<p class="small">
<xsl:text>* Meine Dienstleistung umfasst das Buchen der lfd. Geschäftsvorfälle und die lfd. Lohnabrechnung</xsl:text>
</p>
</article>
<aside>
<strong>Angelika Franzke</strong><br/>
<xsl:text>Tel: 038461/52053</xsl:text><br/>
<xsl:text>Fax: 038461/599811</xsl:text><br/>
<xsl:text>Mobil: 0172/9302774</xsl:text><br/>
<xsl:text>E-Mail: </xsl:text><a href="mailto:info@angelika-franzke.de">info@angelika-franzke.de</a>
<br/>
<br/>
<a href="https://plus.google.com/112211240794067152603">
<img src="img/gplus32{$versioned_png}" width="32" height="32" class="social-icon" alt="Google Plus" />
</a>
<br/>
<a href="contact{$suffix}" class="redbox">
<strong>Kostenlose Analyse Ihrer Gründungsidee.</strong>
<br/>
<xsl:text>Die Kostenlose Analyse schafft Klarheit darüber, welches Umsatzpotential Ihre Idee bietet.</xsl:text>
</a>
<a class="redbox" style="text-align:center"
href="https://beraterboerse.kfw.de/index.php?ac=consultant_projects&id=100021">
<xsl:text>Referenzen</xsl:text>
</a>
</aside>
</main>
<div class="logos">
<a href="http://www.idz-zertifikat.de/voraussetzung-fachberater-existenzgruender" target="_blank">
<img src="idz-siegel{$versioned_jpg}" width="190" height="79"
alt="Fachberaterin für Existenzgründer - Institut für Dienstleistungszertifizierung" />
</a>
<a href="http://www.mikrokredit.net/" target="_blank">
<img src="kapitalinstitut{$versioned_png}" width="180" height="32" alt="Kapitalinstitut" />
</a>
<a href="http://www.fuer-gruender.de/beratung/dienstleister-finden/firma/beratung-controlling/" target="_blank">
<img src="fuer-gruender.de-siegel{$versioned_png}" width="77" height="77" alt="Für-Gründer.de" />
</a>
</div>
<footer>
<xsl:text disable-output-escaping="yes"><![CDATA[© 2016 All Rights Reserved.]]></xsl:text>
<br/>
<a href="imprint{$suffix}">Impressum</a>
</footer>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|