Skip to content

Commit

Permalink
Added joomla template files
Browse files Browse the repository at this point in the history
  • Loading branch information
fordarnold committed Feb 18, 2012
1 parent ab54bf9 commit b9eb129
Show file tree
Hide file tree
Showing 62 changed files with 3,423 additions and 0 deletions.
38 changes: 38 additions & 0 deletions README
@@ -0,0 +1,38 @@
====================================================
NEW ATOMIC

A joomla 1.7 responsive template
====================================================

A responsive HTML5 redesign for the default Joomla 1.7 Atomic template.

Meridian Softech uses this as the starting point for all its Joomla templates.
Finally, responsive websites (not just web apps) can become mainstream! Thank you ( http://foundation.zurb.com )

More docs about this template at http://meridiansoftech.net/index.php/blog/new-atomic


----------------------------------------------------
COMPONENTS
----------------------------------------------------
1. Foundation CSS Framework
Gives it responsiveness and nice stable UI

2. HTML 5
The DOM is made up of HTML5 elements

3. JQuery
Everyone's favourite javascript framework

4. Open Sans Web Font
Imported with @font-face

5. Drop Down Menu
A 1-level drop down menu


----------------------------------------------------
INSTALLATION
----------------------------------------------------
Typical of Joomla! extensions , installation is easy, but there may be a bit more to it...
For installation instructions, visit http://meridiansoftech.net/index.php/blog/new-atomic
340 changes: 340 additions & 0 deletions new_atomic/LICENSE.txt

Large diffs are not rendered by default.

25 changes: 25 additions & 0 deletions new_atomic/component.php
@@ -0,0 +1,25 @@
<?php
/**
* @version $Id: component.php 20196 2011-01-09 02:40:25Z ian $
* @package Joomla.Site
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

defined('_JEXEC') or die;
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template.css" type="text/css" />

<?php if ($this->direction == 'rtl') : ?>
<link rel="stylesheet" href="<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/css/template_rtl.css" type="text/css" />
<?php endif; ?>
</head>
<body class="contentpane">
<jdoc:include type="message" />
<jdoc:include type="component" />
</body>
</html>
1 change: 1 addition & 0 deletions new_atomic/css/index.html
@@ -0,0 +1 @@
<!DOCTYPE html><title></title>
51 changes: 51 additions & 0 deletions new_atomic/css/style.css
@@ -0,0 +1,51 @@
/* ==|== primary styles ===================================================================================================================================
AUTHOR: Meridian Softech
========================================================================== */

/************************************************************
*************************************************************
CUSTOM FONT EMBED
*************************************************************
*************************************************************/

@font-face {
font-family: 'Open Sans';
src:
url('../fonts/opensans-regular-webfont.eot?') format('eot'),
url('../fonts/opensans-regular-webfont.woff') format('woff'),
url('../fonts/opensans-regular-webfont.ttf') format('truetype'),
url('../fonts/opensans-regular-webfont.svg#svgFontName') format('svg');
}

/************************************************************
*************************************************************
COMMON
*************************************************************
*************************************************************/

body{
font-family: 'Open Sans', 'Arial', sans-serif;
}
.row{max-width: 950px;}

/************************************************************
*************************************************************
HEADER
*************************************************************
*************************************************************/

header{padding-top: 30px;}
.nav-bar {background-color: #C3D9FF;}

/************************************************************
*************************************************************
MAIN CONTENT
*************************************************************
*************************************************************/


/************************************************************
*************************************************************
FOOTER
*************************************************************
*************************************************************/
58 changes: 58 additions & 0 deletions new_atomic/error.php
@@ -0,0 +1,58 @@
<?php
/**
* @version $Id: error.php 20981 2011-03-17 10:56:46Z chdemko $
* @package Joomla.Site
* @copyright Copyright (C) 2005 - 2011 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

defined('_JEXEC') or die;
if (!isset($this->error)) {
$this->error = JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR'));
$this->debug = false;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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>
<title><?php echo $this->error->getCode(); ?> - <?php echo $this->title; ?></title>
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/error.css" type="text/css" />
</head>
<body>
<div class="error">
<div id="outline">
<div id="errorboxoutline">
<div id="errorboxheader"><?php echo $this->error->getCode(); ?> - <?php echo $this->error->getMessage(); ?></div>
<div id="errorboxbody">
<p><strong><?php echo JText::_('JERROR_LAYOUT_NOT_ABLE_TO_VISIT'); ?></strong></p>
<ol>
<li><?php echo JText::_('JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE'); ?></li>
<li><?php echo JText::_('JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING'); ?></li>
<li><?php echo JText::_('JERROR_LAYOUT_MIS_TYPED_ADDRESS'); ?></li>
<li><?php echo JText::_('JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE'); ?></li>
<li><?php echo JText::_('JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND'); ?></li>
<li><?php echo JText::_('JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST'); ?></li>
</ol>
<p><strong><?php echo JText::_('JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES'); ?></strong></p>

<ul>
<li><a href="<?php echo $this->baseurl; ?>/index.php" title="<?php echo JText::_('JERROR_LAYOUT_GO_TO_THE_HOME_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_HOME_PAGE'); ?></a></li>
<li><a href="<?php echo $this->baseurl; ?>/index.php?option=com_search" title="<?php echo JText::_('JERROR_LAYOUT_SEARCH_PAGE'); ?>"><?php echo JText::_('JERROR_LAYOUT_SEARCH_PAGE'); ?></a></li>

</ul>

<p><?php echo JText::_('JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR'); ?>.</p>
<div id="techinfo">
<p><?php echo $this->error->getMessage(); ?></p>
<p>
<?php if ($this->debug) :
echo $this->renderBacktrace();
endif; ?>
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Binary file added new_atomic/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions new_atomic/fonts/index.html
@@ -0,0 +1 @@
<!DOCTYPE html><title></title>
Binary file added new_atomic/fonts/opensans-regular-webfont.eot
Binary file not shown.

0 comments on commit b9eb129

Please sign in to comment.