Hallo zusammen,
ich hab vor einigen Tagen ein Template für cms2day erstellt. Es wird auch alles mit verlinkter CSS Datei richtig angezeigt, aber sobald ich
|
Quellcode
|
1
|
<?php page_header(); ?>
|
eingefügt habe, wird das Template komplett ohne Formatierungen und Grafiken angezeigt,
Ich habe die Formatierung in der CSS Datei main.css abgespeichert.
So wird das Template im Browser dargestellt:
http://praxis-franziska-schneider.de/cms2day/
Hier ist der Code der HTML Datei: index.hmtl
|
Quellcode
|
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<?php page_header(); ?>
</head>
<body>
<center>
<div id="container">
<div id="top_bar">Home | Kontakt | Impressum</div>
<div id="header"></div>
<div id="page"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="30"><img src="<?php template_dir(); ?>/images/index_05.jpg" width="30" height="30" /></td>
<td valign="middle"><?php page_showpage(); ?></td>
</tr>
</table>
</div>
<div id="content">
<div id="main_box">
<img src="<?php template_dir(); ?>/images/index_07.jpg" />
<div id="main"><?php page_content(); ?></div>
<img src="<?php template_dir(); ?>/images/index_12.jpg" />
</div>
<div id="news_box">
<img src="<?php template_dir(); ?>/images/index_09.jpg" />
<div id="news"><?php page_(); ?></div>
<img src="<?php template_dir(); ?>/images/index_13.jpg" />
</div>
</div>
</div>
<?php page_footer(); ?>
</center>
</body>
</html>
|
Ich hoffe ihr könnt mir helfen.
Mit freundlich Grüßen
Frogtime