zen based theming

20
Zen-based theming

Upload: drupal-camp-kyiv

Post on 04-Jun-2015

908 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Zen based theming

Zen-based theming

Page 2: Zen based theming

Ecobusiness(http://www.opensourcetemplates.org/templates/preview/1312612761/)

Page 3: Zen based theming

Zen is.../** header **/ #header { }

#header-inner { }

#logo-title /* Wrapper for logo, website name, and slogan */ { }

Page 4: Zen based theming

Zen is... and more..../** header **/ #header { }

#header-inner { }

#logo-title /* Wrapper for logo, website name, and slogan */ { }

#logo /* Wrapper for logo */ { margin: 0 10px 0 0; padding: 0; }

#logo-image /* The actual logo image */ { }

h1#site-name, div#site-name /* The name of the website */ { margin: 0; font-size: 2em; line-height: 1.3em; }

#site-name a:link, #site-name a:visited { color: #000; text-decoration: none; }

#site-name a:hover { text-decoration: underline; }

#site-slogan /* The slogan (or tagline) of a website */ { }

#header-blocks /* Wrapper for any blocks placed in the header region */ { }

/** main (container for everything else) **/ #main { }

#main-inner { }

/** content **/ #content { }

#content-inner { }

#mission /* The mission statement of the site (displayed on homepage) */ { }

Page 5: Zen based theming

Zen is... and more.... and f....g more

/** header **/ #header { }

#header-inner { }

#logo-title /* Wrapper for logo, website name, and slogan */ { }

#logo /* Wrapper for logo */ { margin: 0 10px 0 0; padding: 0; }

#logo-image /* The actual logo image */ { }

h1#site-name, div#site-name /* The name of the website */ { margin: 0; font-size: 2em; line-height: 1.3em; }

#site-name a:link, #site-name a:visited { color: #000; text-decoration: none; }

#site-name a:hover { text-decoration: underline; }

#site-slogan /* The slogan (or tagline) of a website */ { }

#header-blocks /* Wrapper for any blocks placed in the header region */ { }

/** main (container for everything else) **/ #main { }

#main-inner { }

/** content **/ #content { }

#content-inner { }

#mission /* The mission statement of the site (displayed on homepage) */ { }

#content-top /* Wrapper for any blocks placed in the "content top" region */ { }

#content-header /* Wrapper for breadcrumb, title, messages, tabs, and help */ { }

Page 6: Zen based theming

name = MyThemedescription = A blank base themeversion = .02core = 6.xengine = phptemplate

stylesheets[all][] = reset-min.cssstylesheets[all][] = common.css

Mytheme info

Page 7: Zen based theming
Page 8: Zen based theming

$styles: Style tags necessary to import all CSS files for the page. - это нам и нужно. Заодно скопируем весь <head> от zen'а:

<head> <title><?php print $head_title; ?></title> <?php print $head; ?> <?php print $styles; ?> <?php print $scripts; ?></head>

Page 9: Zen based theming
Page 10: Zen based theming

<div class="article_wrapper"><h2>Weekly News Updates</h2><p>Lorem ipsum dolor sit amet, consectetuer adipis cing

elit, sed diam nonummy nibh euismod tinci dunt ut laorenim ad minim veniam, quis nostrud exerci tation ullam corper suscipit lobortis nisl ut aliq eet dolore magna aliquam erat volut pat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet.</p></div>

<div class="article_wrapper"><h2>Current Employment News</h2><p>Lorem ipsum dolor sit amet, consectetuer adipis cing

elit, sed diam nonummy nibh euismod tinci dunt ut laorenim ad minim veniam, quis nostrud exerci tation ullam corper suscipit lobortis nisl ut aliq eet dolore magna aliquam erat volut pat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Lorem ipsum dolor sit amet, consectetuer adipis cing elit.</p>

</div>

Page 11: Zen based theming

<!-- main content area --><div id="center">

<?php print $content ?><hr />

</div>

Page 12: Zen based theming
Page 13: Zen based theming

<?php print theme('links', $primary_links); ?>

Page 14: Zen based theming

<!-- top navigation --><ul id="navigation">

<li class="active"><a href="#" title="Home">Home</a></li><li><a href="#" title="About">About</a></li><li><a href="#" title="Services">Services</a></li><li><a href="#" title="Portofolio">Portofolio</a></li><li><a href="#" title="Contact">Contact</a></li>

</ul><hr />

Page 15: Zen based theming

<!-- top navigation --><?php print theme('links', $primary_links); ?>

<hr />

Page 16: Zen based theming

<?php print theme('links', $primary_links, array('id'=>'navigation')); ?>

Page 17: Zen based theming

Александр Дубовской[email protected]

Icq: 398052Jabber: [email protected]

Page 18: Zen based theming

+VIEWS

Page 19: Zen based theming
Page 20: Zen based theming