Joomla 1.6 Импорт шаблона в joomla 1.6

Тема в разделе "Создание шаблона", создана пользователем Diakon, 27.04.2012.

  1. Offline

    Diakon Недавно здесь

    Регистрация:
    27.04.2012
    Сообщения:
    2
    Симпатии:
    0
    Пол:
    Мужской
    Добрый день. Я только начал изучать Joomla, до этого писал свои cms. Решил сделать свой шаблон. Я взял один из своих старых сайтов с простейшим дизайном и решил сверстать под Joomla. Но после того как я подключил свой шаблон, мне выводится сообщение, что "Шаблон для данной страницы недоступен. Пожалуйста, сообщите об этом Администратору сайта.". Подскажите что я делаю не так.
    текст файла index.php:
    Код (PHP):
    1. <?php
    2. /**
    3.  * @version     $Id: index.php 20196 2011-01-09 02:40:25Z ian $
    4.  * @package     Joomla.Site
    5.  * @copyright   Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
    6.  * @license     GNU General Public License version 2 or later; see LICENSE.txt
    7.  */
    8.  
    9. defined('_JEXEC') or die;
    10.  
    11. /* The following line gets the application object for things like displaying the site name */
    12. $app = JFactory::getApplication();
    13. ?>
    14. <?php echo '<?'; ?>xml version="1.0" encoding="<?php echo $this->_charset ?>"?>
    15. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
    17. <head>
    18. <jdoc:include type="head" />
    19. <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/system.css" type="text/css" />
    20. <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/system/css/general.css" type="text/css" />
    21. <link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />
    22. </head>
    23. <!--[if IE 7]>
    24.     <link href="templates/<?php echo $this->
    25. template ?>/css/ie7only.css" rel="stylesheet" type="text/css" />
    26. <![endif]-->
    27. <!--[if lte IE 6]>
    28.     <link href="templates/<?php echo $this->
    29. template ?>/css/ie6only.css" rel="stylesheet" type="text/css" />
    30. <![endif]-->
    31.         <script type="text/javascript" src="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/js/template.js"></script>
    32.  
    33.        
    34.     </head>
    35.  
    36. <body>
    37.  
    38. <div id="wrapper">
    39.  
    40.     <div id="header">
    41.        
    42.  
    43.  
    44.             <table border="0" cellspacing="0" cellpadding="0">
    45.                 <td><img src="img/upheadimg.jpg" border=0 /></td>
    46.             </table>
    47.  
    48.             <table border="0" cellspacing="0" cellpadding="0">
    49.                 <td><img src="img/lftheadimg.jpg" border=0 /></td>
    50.                 <td><embed src="flsh/flshtv.swf" quality="high" bgcolor="#000000" width="272" height="147" name="flshtv" type="application/x-shockwave-flash"  wmode="opaque"/></td>
    51.                 <td><img src="img/rghtheadimg.jpg" border=0 /></td>
    52.             </table>
    53.  
    54.             <table border="0" cellspacing="0" cellpadding="0">
    55.                 <td><img src="img/dwnheadimg.jpg" border=0 /></td>
    56.             </table>
    57.  
    58.             <table border="0" cellspacing="0" cellpadding="0">
    59.                 <td><img src="img/lftbarmenu.jpg" border=0 /></td>
    60.                 <td><a href="index.php"><img src="img/mainbtn.jpg" border=0 /></a></td>
    61.                 <td><a href="portfolio.php"><img src="img/portfoliobtn.jpg" border=0 /></a></td>
    62.                 <td><a href="zakaz.php"><img src="img/zakazbtn.jpg" border=0 /></a></td>
    63.                 <td><a href="onas.php"><img src="img/onasbtn.jpg" border=0 /></a></td>
    64.                 <td><a href="okompanii.php"><img src="img/okompaniibtn.jpg" border=0 /></a></td>
    65.                 <td><img src="img/rghtbarmenu.jpg" border=0 /></td>
    66.             </table>
    67.            
    68.             <div align="center">
    69.  
    70.             <table border="0" cellspacing="0" cellpadding="0">
    71.                 <td><a href="zamer.php"><img src="img/zamercgikbtn.jpg" border=0 /></a></td>
    72.                 <td><a href="ceni.php"><img src="img/ceniskidkibtn.jpg" border=0 /></a></td>
    73.                 <td><a href="vopros.php"><img src="img/voprosbtn.jpg" border=0 /></a></td>
    74.                 <td><a href="okompanii.php"><img src="img/telefonibtn.jpg" border=0 /></a></td>
    75.             </table>
    76.  
    77.             </div>
    78.  
    79.         <jdoc:include type="modules" name="potolok-topmenu" style="xhtml" />
    80.     </div><!-- #header-->
    81.  
    82.  
    83.     <div id="content">     
    84.  
    85.         <p>Text Content</p>
    86.        
    87.     </div><!-- #content-->
    88.  
    89. </div><!-- #wrapper -->
    90.  
    91.  
    92. <div id="footer">
    93.  
    94.        
    95.         <img src="img/dwnbar.jpg" width="1286px" border=0 />
    96.        
    97. </div><!-- #footer -->
    98.  
    99.  
    100. </body>
    101. </html>


    текст файла templateDetails.xml
    Код (PHP):
    1. <?xml version="1.0" encoding="utf-8"?>
    2. <!DOCTYPE install PUBLIC "-//Joomla! 1.6//DTD template 1.0//EN" "http://www.joomla.org/xml/dtd/1.6/template-install.dtd">
    3. <extension version="1.6" type="template" client="site">
    4.     <name>Test</name>
    5.     <creationDate>27 апреля 2012</creationDate>
    6.     <author>Петр</author>
    7.     <authorEmail>sklyarov_petr@list.ru</authorEmail>
    8.     <authorUrl>http://www.nefree.ru</authorUrl>
    9.     <copyright>Copyright (C) 2012</copyright>
    10.     <license>GNU General Public License version 2</license>
    11.     <version>1.6.0</version>
    12.     <description>TPL_primer_XML_DESCRIPTION</description>
    13.  
    14.     <files>
    15.         <folder>css</folder>
    16.         <folder>html</folder>
    17.         <folder>img</folder>
    18.         <folder>flsh</folder>
    19.         <folder>js</folder>
    20.         <filename>index.html</filename>
    21.         <filename>index.php</filename>
    22.         <filename>templateDetails.xml</filename>
    23.         <filename>template_preview.png</filename>
    24.         <filename>template_thumbnail.png</filename>
    25.         <filename>favicon.ico</filename>
    26.         <filename>component.php</filename>
    27.     </files>
    28.  
    29.     <positions>
    30.         <position>potolok-topmenu</position>
    31.     </positions>
    32. </extension>


    код файла css/template.css
    Код (PHP):
    1. /* CSS Document */
    2. @import url(layouts.css);
    3. @import url(modules.css);
    4.  
    5. html, body, div, span, applet, object, iframe,
    6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    7. a, abbr, acronym, address, big, cite, code,
    8. del, dfn, em, font, img, ins, kbd, q, s, samp,
    9. small, strike, strong, sub, sup, tt, var,
    10. b, u, i, center,
    11. dl, dt, dd, ol, ul, li,
    12. fieldset, form, label, legend,
    13. table, caption, tbody, tfoot, thead, tr, th, td {
    14.     margin: 0;
    15.     padding: 0;
    16.     border: 0;
    17.     outline: 0;
    18.     font-size: 100%;
    19.     vertical-align: baseline;
    20.     background: transparent;
    21. }
    22.  
    23. html,body {
    24. background: #b9a990;
    25. font: 12px/18px Arial, Tahoma, Verdana, sans-serif;
    26. height: 100%; /* задаем высоту тела документа */
    27. }
    28.  
    29. ol, ul {
    30.     list-style: none;
    31. }
    32. blockquote, q {
    33.     quotes: none;
    34. }
    35. :focus {
    36.     outline: 0;
    37. }
    38. ins {
    39.     text-decoration: none;
    40. }
    41. del {
    42.     text-decoration: line-through;
    43. }
    44. table {
    45.     border-collapse: collapse;
    46.     border-spacing: 0;
    47. }
    48.  
    49. a {
    50.     color: blue;
    51.     outline: none;
    52.     text-decoration: underline;
    53. }
    54. a:hover {
    55.     text-decoration: none;
    56. }
    57. p {
    58.     margin: 0 0 18px
    59. }
    60. img {
    61.     border: none;
    62. }
    63. input {
    64.     vertical-align: middle;
    65. }


    Заранее спасибо!
     
  2.  

Поделиться этой страницей

Загрузка...