Customising the JA Purity template/footer: Difference between revisions
From Joomla! Documentation
m New page: {{stub}} <noinclude> Category:Beginners Category:JA Purity template Category:Tutorials </noinclude> |
No edit summary |
||
| Line 1: | Line 1: | ||
{{stub}} | {{stub}} | ||
==Pliki HTML i PHP == | |||
===ja_purity/index.php.php=== | |||
<source lang="php" line start="245"> | |||
<!-- BEGIN: FOOTER --> | |||
<div id="ja-footerwrap"> | |||
<div id="ja-footer" class="clearfix"> | |||
<div id="ja-footnav"> | |||
<jdoc:include type="modules" name="user3" /> | |||
</div> | |||
<div class="copyright"> | |||
<jdoc:include type="modules" name="footer" /> | |||
</div> | |||
<div class="ja-cert"> | |||
<jdoc:include type="modules" name="syndicate" /> | |||
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="<?php echo JText::_("CSS Validity");?>" style="text-decoration: none;"> | |||
<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-css.gif" border="none" alt="<?php echo JText::_("CSS Validity");?>" /> | |||
</a> | |||
<a href="http://validator.w3.org/check/referer" target="_blank" title="<?php echo JText::_("XHTML Validity");?>" style="text-decoration: none;"> | |||
<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-xhtml10.gif" border="none" alt="<?php echo JText::_("XHTML Validity");?>" /> | |||
</a> | |||
</div> | |||
<br /> | |||
</div> | |||
</div> | |||
<!-- END: FOOTER --> | |||
</source> | |||
==Pliki CSS == | |||
===ja_purity/css/XXXXX.css=== | |||
<source lang="css" line start=""> | |||
</source> | |||
==Pliki obrazków== | |||
==Pliki Javascript == | |||
===ja_purity/js/XXXXX.js=== | |||
<source lang="javascript" line start=""> | |||
</source> | |||
<noinclude> | <noinclude> | ||
[[Category:Beginners]] | [[Category:Beginners]] | ||
Revision as of 10:36, 24 June 2009
| |
This article is a stub and needs to be expanded. If you can provide information or finish this article you're welcome to do so. Please remove this message afterwards or replace with {{inuse}} while making major edits. - Thank you. |
Pliki HTML i PHP
ja_purity/index.php.php
<!-- BEGIN: FOOTER -->
<div id="ja-footerwrap">
<div id="ja-footer" class="clearfix">
<div id="ja-footnav">
<jdoc:include type="modules" name="user3" />
</div>
<div class="copyright">
<jdoc:include type="modules" name="footer" />
</div>
<div class="ja-cert">
<jdoc:include type="modules" name="syndicate" />
<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank" title="<?php echo JText::_("CSS Validity");?>" style="text-decoration: none;">
<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-css.gif" border="none" alt="<?php echo JText::_("CSS Validity");?>" />
</a>
<a href="http://validator.w3.org/check/referer" target="_blank" title="<?php echo JText::_("XHTML Validity");?>" style="text-decoration: none;">
<img src="<?php echo $tmpTools->templateurl(); ?>/images/but-xhtml10.gif" border="none" alt="<?php echo JText::_("XHTML Validity");?>" />
</a>
</div>
<br />
</div>
</div>
<!-- END: FOOTER -->
