Skip to content
This repository was archived by the owner on Oct 30, 2021. It is now read-only.

Commit 963d5a0

Browse files
committed
Initial commit
0 parents  commit 963d5a0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+6999
-0
lines changed

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
22+
# Logs and databases #
23+
######################
24+
*.log
25+
*.sql
26+
*.sqlite
27+
28+
# OS generated files #
29+
######################
30+
.DS_Store
31+
.DS_Store?
32+
ehthumbs.db
33+
Icon?
34+
Thumbs.db
35+
.project
36+
.idea/
37+
38+
# File List #
39+
#############
40+
build.sh

CREDITS.php

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?php defined('_JEXEC') or die;
2+
/**
3+
* @package Template Framework for Joomla!
4+
* @author Matt Thomas http://construct-framework.com | http://betweenbrain.com
5+
* @copyright Copyright (C) 2009 - 2012 Matt Thomas. All rights reserved.
6+
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
7+
*/
8+
?>
9+
10+
This framework would not exist without the inspiration and ingenuity of countless
11+
individuals and other projects. Following is a inconclusive list of those individuals,
12+
projects and other resources that helped shape this framework. If you feel that you should
13+
be included in this list, we offer you our sincerest apologies for omitting you and ask
14+
that you contact us at [email protected]
15+
16+
The Ladies of Molajo - Amy Stephen, Babs Gösgens, and Cristina Solana. Your continued
17+
support and inspiration make me a better person and developer.
18+
19+
Waseem Sadiq for putting together the Blank Skeleton Template - available at
20+
http://www.bulletprooftemplates.com/ - a great learning tool and has helped many.
21+
22+
Mobile device detection script by Anthony Hand http://www.mobileesp.com
23+
24+
Icons and Joomla Engineering logo by Planet12 http://planet12.com/
25+
26+
Setting the generator tag, and other cool tricks, from http://www.theartofjoomla.com/
27+
28+
Module width calculating technique from Andrew Eddie at
29+
http://groups.google.com/group/joomla-dev-general/browse_thread/thread/b54f3f131dd173d
30+
31+
Setting body-width style technique from Waseem Sadiq and the Blank Skeleton Template
32+
http://www.bulletprooftemplates.com/
33+
34+
Article Id output from jeffchannell at http://forum.joomla.org/viewtopic.php?p=2046136#p2046136
35+
36+
Section Id from psantamaria based on work by DoRullings at
37+
http://forum.joomla.org/viewtopic.php?p=1425983
38+
39+
Category Id by ranwilli http://forum.joomla.org/viewtopic.php?p=1837233#p1837233
40+
41+
Current Alias based on work by vredeling at http://forum.joomla.org/viewtopic.php?p=1280400#p1280400
42+
43+
Defining the alternate index and CSS files inspired by suchitis at
44+
http://forum.joomla.org/viewtopic.php?p=1861458#p1861458
45+
46+
Automatic detection and loading of alternate index and CSS files greatly inspired by
47+
mod_sectioncss.php written by Alex de Winne - www.therefore.ca
48+
49+
Prevention of loading mootools.js and caption.js based on work by Joe at
50+
http://www.eboga.org/cms/joomla/how-to-remove-mootoolsjs-and-captionjs-from-joomla15.html

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bootstruct
2+
==========

apple-touch-icon.png

663 Bytes
Loading

component.php

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<?php defined('_JEXEC') or die;
2+
/**
3+
* @package Template Framework for Joomla!+
4+
* @author Cristina Solana http://nightshiftcreative.com
5+
* @author Matt Thomas http://construct-framework.com | http://betweenbrain.com
6+
* @copyright Copyright (C) 2009 - 2012 Matt Thomas. All rights reserved.
7+
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
8+
*/
9+
10+
// Load Joomla filesystem package
11+
jimport('joomla.filesystem.file');
12+
13+
// Returns a reference to the global document object
14+
$doc = JFactory::getDocument();
15+
// Define relative shortcut for current template directory
16+
$template = 'templates/' . $this->template;
17+
18+
// Check for layout override
19+
if (JFile::exists($template . '/layouts/component.php')) {
20+
include_once $template . '/layouts/component.php';
21+
}
22+
else {
23+
?>
24+
25+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
26+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language ?>" lang="<?php echo $this->language ?>" dir="<?php echo $this->direction ?>">
27+
<head>
28+
<jdoc:include type="head" />
29+
<?php
30+
$doc->addStyleSheet($template . '/css/print.css', 'text/css', 'print');
31+
if ($this->direction == 'rtl')
32+
$doc->addStyleSheet($template . '/css/rtl.css', 'screen');
33+
?>
34+
</head>
35+
<body class="contentpane">
36+
<?php if ($this->countModules('print-popup')) : ?>
37+
<jdoc:include type="modules" name="print-popup" style="raw" />
38+
<?php endif ?>
39+
<jdoc:include type="message" />
40+
<jdoc:include type="component" />
41+
</body>
42+
</html>
43+
<?php }

css/article/index.html

Whitespace-only changes.

css/category/index.html

Whitespace-only changes.

css/component/com_wrapper.php

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?php defined('_JEXEC') or die;
2+
/**
3+
* @package Template Framework for Joomla!+
4+
* @author Cristina Solana http://nightshiftcreative.com
5+
* @author Matt Thomas http://construct-framework.com | http://betweenbrain.com
6+
* @copyright Copyright (C) 2009 - 2012 Matt Thomas. All rights reserved.
7+
* @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html
8+
*/
9+
10+
// To get an application object
11+
$app = JFactory::getApplication();
12+
?>
13+
14+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
15+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language ?>" lang="<?php echo $this->language ?>" dir="<?php echo $this->direction ?>">
16+
<head>
17+
<jdoc:include type="head" />
18+
<style type="text/css">
19+
#wrapper-header {
20+
padding : 5px 0 5px 15px;
21+
border-bottom : 3px solid #ff0;
22+
border-top : 3px solid #ccc;
23+
background : #000;
24+
color : #fff;
25+
text-align : center;
26+
text-transform : capitalize;
27+
font-family : "Lucida Grande", Lucida, Verdana, sans-serif
28+
}
29+
30+
#wrapper-header a {
31+
color : #fff;
32+
text-decoration : none
33+
}
34+
35+
#wrapper-header a:hover {
36+
text-decoration : underline
37+
}
38+
</style>
39+
</head>
40+
41+
<body>
42+
<div id="wrapper-header">
43+
Return To
44+
<a href="<?php echo $this->baseurl ?>/" title="<?php echo htmlspecialchars($app->getCfg('sitename')) ?>"><?php echo htmlspecialchars($app->getCfg('sitename')) ?></a>
45+
</div>
46+
<jdoc:include type="component" />
47+
</body>
48+
</html>

css/component/index.html

Whitespace-only changes.

0 commit comments

Comments
 (0)