-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed default main layout to match new branding
- Loading branch information
David McReynolds
committed
Dec 13, 2013
1 parent
15d415c
commit 0826387
Showing
6 changed files
with
101 additions
and
208 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,34 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang="en-US"> | ||
<head> | ||
<meta charset="utf-8"> | ||
|
||
<title> | ||
<title> | ||
<?php | ||
if (!empty($is_blog)) | ||
{ | ||
if (!empty($is_blog)) : | ||
echo $CI->fuel_blog->page_title($page_title, ' : ', 'right'); | ||
} | ||
else | ||
{ | ||
else: | ||
echo fuel_var('page_title', ''); | ||
} | ||
endif; | ||
?> | ||
</title> | ||
|
||
<meta name="keywords" content="<?php echo fuel_var('meta_keywords')?>"> | ||
<meta name="description" content="<?php echo fuel_var('meta_description')?>"> | ||
|
||
<link href='http://fonts.googleapis.com/css?family=Raleway:400,700' rel='stylesheet' type='text/css'> | ||
<?php | ||
echo css('main').css($css); | ||
|
||
if (!empty($is_blog)) | ||
{ | ||
if (!empty($is_blog)): | ||
echo $CI->fuel_blog->header(); | ||
} | ||
endif; | ||
?> | ||
|
||
<?php echo jquery('1.8.3'); ?> | ||
</head> | ||
|
||
<body class="<?php echo fuel_var('body_class', ''); ?>"> | ||
<div id="container"> | ||
<div id="container_inner"> | ||
<div id="header"> | ||
<div id="topnav"> | ||
<ul> | ||
<li><a href="http://www.thedaylightstudio.com">About Daylight</a></li> | ||
<li class="last"><?php echo mailto('[email protected]', 'Contact'); ?></li> | ||
</ul> | ||
</div> | ||
<a href="http://www.thedaylightstudio.com" id="daylight_logo"></a> | ||
|
||
<a href="<?php echo site_url(); ?>" id="fuel_logo">FUEL CMS</a> | ||
|
||
<div id="fuel_intro"> | ||
<h1 id="fuel_cms">FUEL CMS</h1> | ||
<div id="fuel_tagline"></div> | ||
<div id="fuel_text"> | ||
<p class="intro"><strong>An easy, flexible, empowering Content Management System for rapid development</strong> | ||
that transforms your CodeIgniter projects into client manageable brilliance. | ||
</p> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
<div id="main"> | ||
<body> | ||
<div class="page"> | ||
<div class="wrapper"> | ||
<header class="page_header"> | ||
<div class="logo"><object type="image/svg+xml" width="160" height="145" data="<?= img_path('_template_icons.svg#fuel') ?>"></object></div> | ||
<h1><?=fuel_var('heading')?></h1> | ||
</header> |
Oops, something went wrong.