k3rama7

Index for http://slconservancy.org

May 25th, 2014
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.80 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9. /**
  10.  
  11.  
  12.  
  13. * Template for Joomla! CMS, created by sourav.
  14.  
  15.  
  16.  
  17. * See readme.txt for more details on how to use the template.
  18.  
  19.  
  20.  
  21. */
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29. defined('_JEXEC') or die;
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37. require_once dirname(__FILE__) . DIRECTORY_SEPARATOR . 'functions.php';
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. // Create alias for $this object reference.
  46.  
  47.  
  48.  
  49. $document = & $this;
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57. $templateUrl = $document->baseurl . '/templates/' . $document->template;
  58.  
  59.  
  60.  
  61. artxComponentWrapper($document);
  62.  
  63.  
  64.  
  65. ?>
  66.  
  67.  
  68.  
  69. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  70.  
  71.  
  72.  
  73. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $document->language; ?>" lang="<?php echo $document->language; ?>" >
  74.  
  75.  
  76.  
  77.  
  78. <head>
  79.  
  80. <meta http-equiv="x-ua-compatible" content="ie=8">
  81.  
  82. <jdoc:include type="head" />
  83.  
  84.  
  85.  
  86. <link rel="stylesheet" href="<?php echo $document->baseurl; ?>/templates/system/css/system.css" type="text/css" />
  87.  
  88.  
  89.  
  90. <link rel="stylesheet" href="<?php echo $document->baseurl; ?>/templates/system/css/general.css" type="text/css" />
  91.  
  92.  
  93.  
  94. <link rel="stylesheet" type="text/css" href="<?php echo $templateUrl; ?>/css/template.css" media="screen" />
  95.  
  96.  
  97.  
  98. <!--[if IE 6]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie6.css" type="text/css" media="screen" /><![endif]-->
  99.  
  100.  
  101.  
  102. <!--[if IE 7]><link rel="stylesheet" href="<?php echo $templateUrl; ?>/css/template.ie7.css" type="text/css" media="screen" /><![endif]-->
  103.  
  104.  
  105.  
  106. <script type="text/javascript" src="<?php echo $templateUrl; ?>/jquery.js"></script>
  107.  
  108.  
  109.  
  110. <script type="text/javascript">jQuery.noConflict();</script>
  111.  
  112.  
  113.  
  114. <script type="text/javascript" src="<?php echo $templateUrl; ?>/script.js"></script>
  115.  
  116.  
  117.  
  118. </head>
  119.  
  120.  
  121.  
  122. <body>
  123.  
  124.  
  125.  
  126. <div id="art-main">
  127.  
  128.  
  129. <div class="art-sheet">
  130.  
  131. <div id="fb-root"></div>
  132. <script>(function(d, s, id) {
  133. var js, fjs = d.getElementsByTagName(s)[0];
  134. if (d.getElementById(id)) {return;}
  135. js = d.createElement(s); js.id = id;
  136. js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
  137. fjs.parentNode.insertBefore(js, fjs);
  138. }(document, 'script', 'facebook-jssdk'));</script>
  139.  
  140.  
  141. <div class="art-sheet-cc"></div>
  142.  
  143.  
  144.  
  145. <div class="art-sheet-body">
  146.  
  147.  
  148.  
  149. <jdoc:include type="modules" name="user3" />
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157. </div>
  158.  
  159.  
  160.  
  161. <jdoc:include type="modules" name="banner1" style="artstyle" artstyle="art-nostyle" />
  162.  
  163. <?php echo artxPositions($document, array('top1', 'top2', 'top3'), 'art-block'); ?>
  164.  
  165. <div class="art-content-layout-bread">
  166. <div class="breadp"></div>
  167. </div>
  168.  
  169. <div class="art-content-layout">
  170.  
  171.  
  172.  
  173. <div class="art-content-layout-row">
  174.  
  175.  
  176.  
  177. <?php if (artxCountModules($document, 'left')) : ?>
  178.  
  179.  
  180.  
  181. <div class="art-layout-cell art-sidebar1">
  182.  
  183.  
  184.  
  185. <?php echo artxModules($document, 'left', 'art-block'); ?>
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193. <div class="cleared"></div>
  194.  
  195.  
  196.  
  197. </div>
  198.  
  199.  
  200.  
  201. <?php endif; ?>
  202.  
  203.  
  204.  
  205. <?php $contentCellStyle = artxGetContentCellStyle($document); ?>
  206.  
  207.  
  208.  
  209. <div class="art-layout-cell art-<?php echo $contentCellStyle; ?>">
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217. <?php
  218.  
  219.  
  220.  
  221. echo artxModules($document, 'banner2', 'art-nostyle');
  222.  
  223.  
  224.  
  225. if (artxCountModules($document, 'breadcrumb'))
  226.  
  227.  
  228.  
  229. echo artxPost(artxModules($document, 'breadcrumb'));
  230.  
  231.  
  232.  
  233. echo artxPositions($document, array('user1', 'user2'), 'art-article');
  234.  
  235.  
  236.  
  237. echo artxModules($document, 'banner3', 'art-nostyle');
  238.  
  239.  
  240.  
  241. ?>
  242.  
  243.  
  244.  
  245. <?php if (artxHasMessages()) : ?><div class="art-post">
  246.  
  247.  
  248.  
  249. <div class="art-post-tl"></div>
  250.  
  251.  
  252.  
  253. <div class="art-post-tr"></div>
  254.  
  255.  
  256.  
  257. <div class="art-post-bl"></div>
  258.  
  259.  
  260.  
  261. <div class="art-post-br"></div>
  262.  
  263.  
  264.  
  265. <div class="art-post-tc"></div>
  266.  
  267.  
  268.  
  269. <div class="art-post-bc"></div>
  270.  
  271.  
  272.  
  273. <div class="art-post-cl"></div>
  274.  
  275.  
  276.  
  277. <div class="art-post-cr"></div>
  278.  
  279.  
  280.  
  281. <div class="art-post-cc"></div>
  282.  
  283.  
  284.  
  285. <div class="art-post-body">
  286.  
  287. <div class="art-post-inner">
  288.  
  289. <div class="art-postcontent">
  290.  
  291. <jdoc:include type="message" />
  292.  
  293. <div class="cleared"></div>
  294.  
  295. </div>
  296.  
  297. </div>
  298.  
  299. <div class="cleared"></div>
  300.  
  301. </div>
  302.  
  303. </div>
  304.  
  305.  
  306.  
  307. <?php endif; ?>
  308.  
  309.  
  310.  
  311. <jdoc:include type="component" />
  312.  
  313.  
  314.  
  315. <?php echo artxModules($document, 'banner4', 'art-nostyle'); ?>
  316.  
  317.  
  318.  
  319. <?php echo artxPositions($document, array('user4', 'user5'), 'art-article'); ?>
  320.  
  321.  
  322.  
  323. <?php echo artxModules($document, 'banner5', 'art-nostyle'); ?>
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331. <div class="cleared"></div>
  332.  
  333.  
  334.  
  335. </div>
  336.  
  337.  
  338.  
  339. <?php if (artxCountModules($document, 'right')) : ?>
  340.  
  341.  
  342.  
  343. <div class="art-layout-cell art-sidebar2">
  344.  
  345.  
  346.  
  347. <?php echo artxModules($document, 'right', 'art-block'); ?>
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355. <div class="cleared"></div>
  356.  
  357.  
  358.  
  359. </div>
  360.  
  361.  
  362.  
  363. <?php endif; ?>
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371. </div>
  372.  
  373.  
  374.  
  375. </div>
  376.  
  377.  
  378.  
  379. <div class="cleared"></div>
  380.  
  381.  
  382.  
  383. <?php echo artxPositions($document, array('bottom1', 'bottom2', 'bottom3'), 'art-block'); ?>
  384.  
  385.  
  386.  
  387. <jdoc:include type="modules" name="banner6" style="artstyle" artstyle="art-nostyle" />
  388.  
  389.  
  390.  
  391. <div class="art-footer">
  392.  
  393. <div class="art-footer-t"></div>
  394.  
  395. <div class="art-footer-body">
  396.  
  397.  
  398.  
  399.  
  400.  
  401. <?php echo artxModules($document, 'syndicate'); ?>
  402.  
  403.  
  404.  
  405. <div class="art-footer-text">
  406.  
  407.  
  408.  
  409. <?php if (artxCountModules($document, 'copyright') == 0): ?>
  410.  
  411.  
  412.  
  413. <?php ob_start(); ?>
  414.  
  415.  
  416.  
  417. <?php echo str_replace('%YEAR%', date('Y'), ob_get_clean()); ?>
  418.  
  419.  
  420.  
  421. <?php else: ?>
  422.  
  423.  
  424.  
  425. <?php echo artxModules($document, 'copyright', 'art-nostyle'); ?>
  426.  
  427.  
  428.  
  429. <?php endif; ?>
  430.  
  431.  
  432.  
  433. </div>
  434.  
  435.  
  436.  
  437. <div class="cleared"></div>
  438.  
  439.  
  440.  
  441. </div>
  442.  
  443.  
  444.  
  445. </div>
  446.  
  447.  
  448.  
  449. <div class="cleared"></div>
  450.  
  451.  
  452.  
  453. </div>
  454.  
  455.  
  456.  
  457. </div>
  458.  
  459.  
  460.  
  461. <div class="cleared"></div>
  462.  
  463.  
  464.  
  465. <p class="art-page-footer"></p>
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.  
  473. </div>
  474.  
  475.  
  476.  
  477. </body>
  478.  
  479.  
  480.  
  481. </html>
Add Comment
Please, Sign In to add comment