Shopping Cart

Your cart is empty
Comments
Blog
Home : Blog : CMS - Content Management Systems : Drupal Markup - help with building your site

Drupal Markup - help with building your site

E-mail
User Rating: / 0
PoorBest 
CMS - Content Management Systems
Wednesday, 21 October 2009 11:28

I have written down some important info, that you might need when installing new Drupal site.

 

creating theme.info file
----------------------------------------------------------------------
name = reno
description = Tabled, multi-column theme in blue and orange tones.
version = VERSION
core = 6.x
engine = phptemplate

stylesheets[all][] = css.css

regions[sidebar]     = Sidebar
regions[page_title]  = Page title
regions[content_top] = Content top
regions[content]     = Content




TEMPLATE MARKUP
------------------------------
<?php print $content ?>


<?php if ($logged _in): ?>
<?php endif; ?>


<?php if ($links): ?>
<div class="links"><?php print $links; ?></div>
<?php endif; ?>




basic tpl.php FILES
----------------------------
page.tpl.php
block.tpl.php
node.tpl.php
box.tpl.php
comments.tpl.php

node-blog.tpl.php
node-story.tpl.php
page-front.tpl.php




default page.tpl.php  - where you can find default page.tpl.php and use the markup
---------------------------------
modules/system/page.tpl.php




MARKUP IN HTML
---------------------------------
<?php print $front_page; ?>    print the link to home page - usable for banner href
<?php print $site_name; ?>     print the site name, for example in title tag
<?php print $site_slogan; ?>     print the site name, for example in title tag       
<?php print $breadcrumb; ?>
<?php print $search_box; ?>
<?php print theme('links', $primary_links, array('class' => 'links primary-links')); ?>    - print primary links
<?php print theme('links', $secondary_links, array('class' => 'links secondary-links')); ?>  - print secondary links
<?php print $footer_message; ?>       
<?php print $closure; ?>        put before </body>   - needed by some modules




Comments
Add New Search RSS
+/-
Write comment
Name:
Email:
 
Website:
Title:
UBBCode:
[b] [i] [u] [url] [quote] [code] [img] 
 
 
Please input the anti-spam code that you can read in the image.