move theme files to theme folder (fixes #52)
This commit is contained in:
parent
f61853700d
commit
8c6d98c0b4
6 changed files with 3 additions and 90 deletions
BIN
themes/default_horizontal/images/aro-lft.png
Normal file
BIN
themes/default_horizontal/images/aro-lft.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 147 B |
BIN
themes/default_horizontal/images/aro-rt.png
Normal file
BIN
themes/default_horizontal/images/aro-rt.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 148 B |
BIN
themes/default_horizontal/images/back.png
Normal file
BIN
themes/default_horizontal/images/back.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 128 B |
BIN
themes/default_horizontal/images/next.png
Normal file
BIN
themes/default_horizontal/images/next.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 119 B |
|
@ -47,13 +47,13 @@ a:active {
|
|||
} ?></ul>
|
||||
<div id="content_container">
|
||||
<div id="slider">
|
||||
<div id="arrleft"><img src="css/grafiken/aro-lft.png" alt="nach links" width="10" height="65" /></div>
|
||||
<div id="arrleft"><img src="<?php echo $content['themepath']; ?>/images/aro-lft.png" alt="nach links" width="10" height="65" /></div>
|
||||
<div id="imgscroller"><div id="scrollable"><?php
|
||||
// show Thumnails an
|
||||
foreach ($content['thumbnails'] as $thumbdata) {
|
||||
?><div class="thumbnail"><img src="<?php echo $thumbdata['src']; ?>" alt="<?php echo $thumbdata['alt']; ?>" <?php echo $thumbdata['sizes']; ?> /></div><?php
|
||||
} ?></div></div>
|
||||
<div id="arrright"><img src="css/grafiken/aro-rt.png" alt="nach rechts" width="10" height="65" /></div>
|
||||
<div id="arrright"><img src="<?php echo $content['themepath']; ?>/images/aro-rt.png" alt="nach rechts" width="10" height="65" /></div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="content_sub">
|
||||
|
@ -68,7 +68,7 @@ a:active {
|
|||
?></div>
|
||||
</div>
|
||||
<div id="content_nav">
|
||||
<img id="backbtn" src="css/grafiken/back.png" alt="back" class="back" width="10" height="10" /><img id="fwdbtn" src="css/grafiken/next.png" alt="next" class="next" width="10" height="10" />
|
||||
<img id="backbtn" src="<?php echo $content['themepath']; ?>/images/back.png" alt="back" class="back" width="10" height="10" /><img id="fwdbtn" src="<?php echo $content['themepath']; ?>/images/next.png" alt="next" class="next" width="10" height="10" />
|
||||
</div>
|
||||
<div class="imgdescription" id="imagedescription"><?php
|
||||
echo $content['firstdescription'];
|
||||
|
|
Reference in a new issue