![]() Полезное:
Как сделать разговор полезным и приятным
Как сделать объемную звезду своими руками
Как сделать то, что делать не хочется?
Как сделать погремушку
Как сделать так чтобы женщины сами знакомились с вами
Как сделать идею коммерческой
Как сделать хорошую растяжку ног?
Как сделать наш разум здоровым?
Как сделать, чтобы люди обманывали меньше
Вопрос 4. Как сделать так, чтобы вас уважали и ценили?
Как сделать лучше себе и другим людям
Как сделать свидание интересным?
![]() Категории:
АрхитектураАстрономияБиологияГеографияГеологияИнформатикаИскусствоИсторияКулинарияКультураМаркетингМатематикаМедицинаМенеджментОхрана трудаПравоПроизводствоПсихологияРелигияСоциологияСпортТехникаФизикаФилософияХимияЭкологияЭкономикаЭлектроника
![]() |
На дипломную работу⇐ ПредыдущаяСтр 19 из 19
БАРНАУЛ
1 Исходные данные Исходными данными является техническое задание на разработку сайта услуги «Такском».
2 Содержание разделов работы
3 Научно-библиографический поиск
3.1 По научно-технической литературе просмотреть книги по сайтостроению. 3.2 По нормативной литературе просмотреть указатели государственных и отраслевых стандартов за последний год. ё
Приложение Б. Листинг программы <?php /** * @package Joomla.Site * @subpackage Templates.protostar * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */
defined('_JEXEC') or die;
$app = JFactory::getApplication(); $doc = JFactory::getDocument(); $user = JFactory::getUser(); $this->language = $doc->language; $this->direction = $doc->direction;
// Getting params from template $params = $app->getTemplate(true)->params;
// Detecting Active Variables $option = $app->input->getCmd('option', ''); $view = $app->input->getCmd('view', ''); $layout = $app->input->getCmd('layout', ''); $task = $app->input->getCmd('task', ''); $itemid = $app->input->getCmd('Itemid', ''); $sitename = $app->get('sitename'); if($task == "edit" || $layout == "form") { $fullWidth = 1; } else { $fullWidth = 0; }
// Add JavaScript Frameworks //$doc->addScript('templates/'. $this->template. '/js/jquery.js'); //$doc->addScript('templates/'. $this->template. '/js/bootstrap.js');
//$doc->addScript('templates/'. $this->template. '/js/jquery.min.js'); //$doc->addScript('templates/'. $this->template. '/js/jquery.webui-popover.min.js'); $doc->addScript('templates/'. $this->template. '/js/bootstrap.min.js'); $doc->addScript('templates/'. $this->template. '/js/drop.js'); //$doc->addScript('templates/'. $this->template. '/js/jquery.mixitup.js'); //$doc->addScript('templates/'. $this->template. '/js/wow.min.js'); //$doc->addScript('templates/'. $this->template. '/js/slidebars.js'); //$doc->addScript('templates/'. $this->template. '/js/jquery.bxslider.min.js'); //$doc->addScript('templates/'. $this->template. '/js/holder.js'); //$doc->addScript('templates/'. $this->template. '/js/buttons.js'); //$doc->addScript('templates/'. $this->template. '/js/styleswitcher.js'); //$doc->addScript('templates/'. $this->template. '/js/jquery.mixitup.min.js'); //$doc->addScript('templates/'. $this->template. '/js/circles.min.js'); //$doc->addScript('templates/'. $this->template. '/js/shCore.js'); //$doc->addScript('templates/'. $this->template. '/js/shBrushXml.js'); //$doc->addScript('templates/'. $this->template. '/js/shBrushJScript.js'); //$doc->addScript('templates/'. $this->template. '/js/app.js'); //$doc->addScript('templates/'. $this->template. '/js/commerce.js');
// Add Stylesheets //$doc->addStyleSheet('templates/'. $this->template. '/css/bootstrap.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/style-violet.css'); $doc->addStyleSheet('templates/'. $this->template. '/css/style.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/template.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/bootstrap.min.css');
//новые стили шаблона //$doc->addStyleSheet('templates/'. $this->template. '/css/preload.css'); $doc->addStyleSheet('templates/'. $this->template. '/css/bootstrap.min.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/yamm.css.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/bootstrap-switch.min.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/font-awesome.min.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/animate.min.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/slidebars.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/lightbox.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/jquery.bxslider.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/shCore.css'); $doc->addStyleSheet('templates/'. $this->template. '/css/style-blue.css'); //$doc->addStyleSheet('templates/'. $this->template. '/css/width-full.css');
// Load optional RTL Bootstrap CSS JHtml::_('bootstrap.loadCss', false, $this->direction);
// Adjusting content width if ($this->countModules('position-7') && $this->countModules('position-8')) { $span = "col-md-6"; } elseif ($this->countModules('position-7') &&!$this->countModules('position-8')) { $span = "col-md-9"; } elseif (!$this->countModules('position-7') && $this->countModules('position-8')) { $span = "col-md-9"; } else { $span = "col-md-12"; }
// Logo file or site title param if ($this->params->get('logoFile')) { $logo = '<img src="'. JUri::root(). $this->params->get('logoFile'). '" alt="'. $sitename. '" />'; } elseif ($this->params->get('sitetitle')) { $logo = '<span class="site-title" title="'. $sitename. '">'. htmlspecialchars($this->params->get('sitetitle')). '</span>'; } else { $logo = '<span class="site-title" title="'. $sitename. '">'. $sitename. '</span>'; } ?> <!doctype html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language;?>" lang="<?php echo $this->language;?>" dir="<?php echo $this->direction;?>"> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> <jdoc:include type="head" /> </head> <body> <div id="sb-site"> <div class="boxed">
<header class="hidden-xs header-full row"> <div class="container "> <div class="header-full-title col-xs-3"> <img src="images/logo.png" > </div> <div class="col-xs-4"> <h3 class="telef"> +7 (385-2) 28-26-10 <br> info-service@ctr-it.ru</h3> </div> <div class="col-xs-4"> <nav class="poisk"> <jdoc:include type="modules" name="position-0" style="none"/> </nav> </div> </div> <!-- container --> </header> <!-- header-full --> <nav class="navbar navbar-static-top navbar-default navbar-header-full navbar-dark" role="navigation" id="header"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> Меню </button> <a class="navbar-brand hidden-lg hidden-md hidden-sm" >Tax<span class="zaglavnaia">Com</span></a> </div> <!-- navbar-header -->
<!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <jdoc:include type="modules" name="position-1" style"none" /> </div><!-- navbar-collapse --> </div><!-- container --> </nav>
<header class="navbar-default navbar-dark + main-header row width-hed"> <div class="container"> <div class="pull-right "> <jdoc:include type="modules" name="position-3" style"none" /> </div> </div> </header> <div class="container"> <div class="row"> <div class="col-md-3 hidden-sm hidden-xs"> <div class="ec-filters-menu floating"><jdoc:include type="modules" name="position-4" style"none" /></div> <div class="ec-filters-menu floating" ><jdoc:include type="modules" name="position-8" style"none" /></div> </div> <div class="col-md-9 padingss"> <jdoc:include type="message"/><jdoc:include type="component"/> </div> </div> <?php if ($this->countModules('position-5')):?> <!-- Begin Sidebar --> <div class="margin-bottom"> <jdoc:include type="modules" name="position-5" style="xhtml" /> </div> <!-- End Sidebar --> <?php endif;?> <?php if ($this->countModules('position-6')):?> <!-- Begin Sidebar --> <div class="col-sm-6"> <jdoc:include type="modules" name="position-6" style="xhtml" /> </div> <!-- End Sidebar --> <?php endif;?> <?php if ($this->countModules('position-10')):?> <!-- Begin Sidebar --> <div class="col-sm-6"> <jdoc:include type="modules" name="position-10" style="xhtml" /> </div> <!-- End Sidebar --> <?php endif;?> <?php if ($this->countModules('position-9')):?> <!-- Begin Sidebar --> <div class="col-xs-12"> <jdoc:include type="modules" name="position-9" style="none" /> </div> <!-- End Sidebar --> <?php endif;?> </div> <!-- container --> <aside id="footer-widgets"> <div class="container"> <div class="row"> </div> <!-- container --> </aside> <!-- footer-widgets --> <footer id="footer" > <p> <?php echo (date("Y "));?> <a href="#">© ЦТР ИТ </a></p> </footer> </div> <!-- boxed --> </div> <!-- sb-site --> <div class="sb-slidebar sb-right"> </div> <!-- sb-slidebar sb-right --> <div id="back-top"> <a id='Go_Top' href="#header">наверх</a> </div> <!-- Scripts --> </body> </html> Date: 2015-10-18; view: 415; Нарушение авторских прав |