Created
December 3, 2013 20:33
-
-
Save branquito/7777018 to your computer and use it in GitHub Desktop.
geopolitika
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.row.topmost { | |
background: none repeat scroll 0 0 #D71921; | |
} | |
.blubox-jck, .grebox-jck, .redbox-jck, .blabox-jck, .yelbox-jck { | |
border-top-left-radius: 0; | |
border-width: 2px; | |
border-bottom-left-radius: 15px; | |
border-style: solid; | |
color: #444444 !important; | |
margin: 10px 0 20px !important; | |
padding: 8px 8px 8px 20px !important; | |
text-shadow: 1px 1px 1px #FFFFFF; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @copyright Copyright (C) 2005 - 2010 Barrie North. | |
* @license GPL | |
*/ | |
defined('_JEXEC') or die; | |
$app = JFactory::getApplication(); | |
?> | |
<!DOCTYPE html> | |
<!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]--> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" > | |
<head> | |
<jdoc:include type="head" /> | |
<!-- blog columns --> | |
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/10-columns.css" type="text/css" /> | |
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/f_css/normalize.css"> | |
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/f_css/foundation.css"> | |
<!-- TOP MENU --> | |
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/09-top-menu.css" type="text/css" /> | |
<!-- custom css --> | |
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/dirty.css" type="text/css" /> | |
<?php // get template params | |
$siteheightmin = $this->params->get( 'siteheightmin', 200 ); | |
$sitebottommargin = $this->params->get( 'sitebottommargin', 0 ); | |
?> | |
</head> | |
<body> | |
<!-- Nav Bar --> | |
<div class="row topmost"> | |
<div class="large-7 columns"> | |
<div id="headlogo"> | |
<a name="top-of-page" href="<?php echo $this->baseurl;?>"><img width="488" height="78" border="0" alt="Geopolitika logo" src="<?php echo $this->baseurl;?>/templates/<?php echo $this->template;?>/images/geopolitika-logo-head.gif" /></a> | |
</div> | |
</div> | |
<div class="large-4 columns"> | |
<div id="languagemenu"> | |
<jdoc:include type="modules" name="languagemenu" style="none" /> | |
</div> | |
</div> | |
<div class="large-1 columns"> | |
<div id="donate-link">Donate</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="large-12 columns"> | |
<div id="subtitle"> | |
лист за политичка и друштвена питања, геополитичка и стратешка истраживања | |
</div> | |
</div> | |
<div class="large-12 columns"> | |
<jdoc:include type="modules" name="main-header" style="xhtml" /> | |
<hr /> | |
</div> | |
</div> | |
<!-- End Nav --> | |
<!-- Main Page Content and Sidebars --> | |
<div class="row"> | |
<?php if ($this->countModules( 'leftcol or leftcol-footer' )) : ?> | |
<div class="large-2 columns"> | |
<jdoc:include type="modules" name="leftcol" style="xhtml" /> | |
<jdoc:include type="modules" name="leftcol-footer" style="xhtml" /> | |
</div> | |
<?php endif; ?> | |
<!-- Main Blog Content --> | |
<div class="large-7 columns" role="content"> | |
<jdoc:include type="component" /> | |
</div> | |
<!-- End Main Content --> | |
<!-- Right sidebar --> | |
<?php if ($this->countModules( 'leftcol or leftcol-footer' )) : ?> | |
<aside class="large-3 columns"> | |
<jdoc:include type="modules" name="right-header" style="xhtml" /> | |
<jdoc:include type="modules" name="right-footer" style="xhtml" /> | |
<div class="panel"> | |
<h5>Featured</h5> | |
<p>Pork drumstick turkey fugiat. Tri-tip elit turducken pork chop in. Swine short ribs meatball irure bacon nulla pork belly cupidatat meatloaf cow.</p> | |
<a href="#">Read More →</a> | |
</div> | |
</aside> | |
<?php endif; ?> | |
<!-- End Sidebar --> | |
</div> | |
<!-- End Main Content and Sidebar --> | |
<!-- Footer --> | |
<footer class="row"> | |
<div class="large-12 columns"> | |
<hr /> | |
<div class="row"> | |
<div class="large-6 columns"> | |
<p>© Copyright no one at all. Go to town.</p> | |
</div> | |
<div class="large-6 columns"> | |
<ul class="inline-list right"> | |
<li><a href="#">Link 1</a></li> | |
<li><a href="#">Link 2</a></li> | |
<li><a href="#">Link 3</a></li> | |
<li><a href="#">Link 4</a></li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</footer> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment