Hallo zusammen,
ich will in meine Internetseite einen Contentslider einbauen. Dabei wollte ich diesen hier benutzen:
Create Beautiful jQuery slider tutorial
Also muss ich eine html datei in eine html datei einbinden. Per iframe finde ich das Ergebnis nicht gut.
Und wenn ich per PHP das ganze einbinde ist das Ergebnis gleich null.
Gibt es noch andere Möglichkeiten eine externe html/php seite einzubauen?
Die seite:
http://frogtime.byethost33.com/cms2day/
Das htmll/CSS gerüst
|
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
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
|
<head>
<?php page_header(); ?>
</head>
<body>
<center>
<div id="box">
<div id="header">
<div id="logo"></div>
<div id="menu">
<div id="impressum"><a href="#"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/menu_08.png" width="94" height="25" border="0" /></a></div>
<div id="kontakt"><a href="#"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/menu_07.png" border="0" /></a></div>
<div id="route"><a href="#"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/menu_06.png" border="0" /></a></div>
<div id="galerie"><a href="#"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/menu_05.png" border="0"/></a></div>
<div id="blog_m"><a href="#"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/menu_04.png" border="0" /></a></div>
<div id="home"><a href="#"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/menu_03.png" border="0"/></a></div>
</div>
</div>
<div id="info">
<div id="info_box">
<ul>
<li>Eindrücken im Blog</li>
<li>Die neusten Fotos in der Galerie</li>
<li>Verfolgt meine Route</li>
<li>Schreibt mir doch mal eine Nachricht</li>
</ul>
</div>
<div id="slider"><?php include ('<?php template_dir(); ?>/<?php echo $takeTPL; ?>/slider/index.php'); ?></div>
</div>
<div id="bottom">
<div id="content_box">
<div id="content_top"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/index_12.jpg" /></div>
<div id="content">
<div id="text"><?php page_content(); ?></div>
</div>
<div id="content_bottom"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/index_21.jpg" /></div>
</div>
<div id="blog_box">
<div id="blog_top"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/index_14.jpg" /></div>
<div id="blog"><?php page_load_addon("lastnews"); ?></div>
<div id="blog_bottom"><img src="<?php template_dir(); ?>/<?php echo $takeTPL; ?>/images/index_19.jpg" /></div>
</div>
</div>
</div>
<div id="footer"><?php page_footer(); ?></div>
</center>
</body>
</html>
|
MfG Frogtime