Chapter 2. HTML Files

Table of Contents

2.1. theme.html
2.1.1. Diagram of the Default Theme
2.1.2. DOCTYPE
2.1.3. Meta Tags
2.1.4. Title
2.1.5. Links
2.1.6. JavaScript
2.1.7. Header Table
2.1.8. Content Table - Left Column
2.1.9. Content Table - Center Blocks
2.1.10. Content Table - Center-Center Blocks
2.1.11. Content Table - Center-Left Blocks
2.1.12. Content Table - Center-Right Blocks
2.1.13. Content Table - Module Contents
2.1.14. Content Table - Right Column
2.1.15. Footer Table
2.2. theme_blockleft.html
2.3. theme_blockcenter_c.html
2.4. theme_blockcenter_l.html
2.5. theme_blockcenter_r.html
2.6. theme_blockright.html

The XOOPS default theme contains 6 HTML files: theme.html, theme_blockleft.html, theme_blockcenter_c.html, theme_blockcenter_l.html, theme_blockcenter_r.html and theme_blockright.html.

Each file will be discussed in detail.

2.1. theme.html

Undoubtedly, the theme.html is the most important HTML file in all XOOPS themes. This file dictates the overall design, structure and layout of your site.

2.1.1. Diagram of the Default Theme

Below is a diagrammatic representation of the basic layout of the theme.html of the Default theme. It has 3 main tables for the header, content and footer and 1 nested table for the center blocks. Take note that there are actually no spaces in between the tables once displayed on the browser.

With a basic understanding of HTML, it is possible to manipulate the Header table, the Content table and the Footer table independent from each other.

Basic Layout

Figure 2.1. Basic Layout

2.1.2. DOCTYPE

Line 1-2:

<!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="<{$xoops_langcode}><meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">" lang="<{$xoops_langcode}>">

Each HTML document should have a Document Type Definition. XOOPS themes adhere to XHTML 1.0 Transitional. XHTML is a family of current and future document types and modules that reproduce, subset, and extend HTML 4

[Tip]Theme-Building Tips
  • The DOCTYPE format adheres to recommended standards. There are very few reasons to change this.

  • Keep it in mind when custom-coding or editing themes and templates. This is important for HTML validation.

2.1.3. Meta Tags

Line 3-12:

<head>
<meta http-equiv="content-type" content="text/html;
charset=<{$xoops_charset}>" />
<meta http-equiv="content-language" content="<{$xoops_langcode}>" />
<meta name="robots" content="<{$xoops_meta_robots}>" />
<meta name="keywords" content="<{$xoops_meta_keywords}>" />
<meta name="description" content="<{$xoops_meta_description}>" />
<meta name="rating" content="<{$xoops_meta_rating}>" />
<meta name="author" content="<{$xoops_meta_author}>" />
<meta name="copyright" content="<{$xoops_meta_copyright}>" />
<meta name="generator" content="XOOPS" />

The Meta tags form the first part of the head of the HTML and are mostly generated from Smarty tags. It should not be edited directly within the theme.html file. Meta information should be changed from the System Admin > Preferences > Meta Tags and Footer.

[Tip]Theme-Building Tips
  • Initial XOOPS installation automatically populates the database with XOOPS-specific Meta Tags. Revise the Meta Tags before the site goes public.

  • Choose Meta Tags wisely. With the current XOOPS theme system, meta tags are implemented site wide. Meta-tags cannot be implemented per page.

2.1.4. Title

Line 13:

<title><{$xoops_sitename}> - <{$xoops_pagetitle}></title>

There are 2 Smarty tags in the title:

  • <{$xoops_sitename}> - This is the Site name entered in the System Admin > Preferences > General Settings. This Smarty tag can be used anywhere in the theme.html or template files where the name of the site is needed.

  • <{$xoops_pagetitle}> - This is a dynamically derived Smarty tag that will change as the page changes. The default content of the Smarty tag is the Site Slogan from System Admin > Preferences > General Settings. If a module is specified as the front page, or when browsing the site within a module, the module name will be used and displayed instead of the Site Slogan.

[Tip]Theme-Building Tips
  • <{$xoops_sitename}> is an important Smarty tag to remember when building custom themes and editing templates. They can be used where the Site Name is needed and can be embedded within HTML tags for formatting.

2.1.5. Links

Line 14-18:

<link href="<{$xoops_url}>/favicon.ico" rel="SHORTCUT ICON" />
<link rel="stylesheet" type="text/css" media="all"
href="<{$xoops_url}>/xoops.css" />
<link rel="stylesheet" type="text/css" media="all"
href="<{$xoops_themecss}>" />
<!-- RMV: added module header -->
<{$xoops_module_header}>

This is the part where the favicon.ico and Cascading Style Sheets are linked. This is the first instance where the important <{$xoops_url}> Smarty tag is used.

  • <{$xoops_url}> - This is the site URL as defined in the mainfile.php. This Smarty tag can be used anywhere in the theme.html or template files where the site URL is needed.

  • <{$xoops_themecss}> - This Smarty tag defines the location of the specific style.css of the theme chosen as default. It has little use within the body part of the theme.html.

[Tip]Theme-Building Tips
  • <{$xoops_url}> is an important Smarty tag to remember when building custom themes and editing templates. They can be used where the Site URL is needed and can be embedded within HTML tags for absolute path calls (images and links) and formatting.

2.1.6. JavaScript

Line 19-23:

<script type="text/javascript">
<!--
<{$xoops_js}>
//-->
</script>
</head>

This part loads the XOOPS JavaScript functions.

2.1.7. Header Table

Line 24-34:

<body>
  <table cellspacing="0">
    <tr id="header">
      <td id="headerlogo"><a href="<{$xoops_url}>/"><img
src="<{$xoops_imageurl}>logo.gif" width="150" height="80" alt="" /></a></td>
      <td id="headerbanner"><{$xoops_banner}></td>
    </tr>
    <tr>
      <td id="headerbar" colspan="2"> </td>
    </tr>
  </table>

The header table forms the first part of the body of the HTML. It contains the site logo, space for banners and the image bar separating the header from the content. The formatting of the table and each table cell is handled by the style.css of the default theme.

Aside from <{$xoops_url}>, two Smarty tags are found:

  • <{$xoops_imageurl}> - This Smarty tag represents the path to your default theme directory, e.g. http://www.yoursite.com/theme/default/. This Smarty tag can be used anywhere in the theme.html or template files where the path to the theme directory is needed.

  • <$xoops_banner}> - This Smarty tag retrieves the banners from System Admin > Banners

[Tip]Theme-Building Tips
  • <{$xoops_imageurl}> can be used to define paths for images and files found within your theme directory. It is not exclusive for images. Also remember that it already has the trailing slash in it.

2.1.8. Content Table - Left Column

Line 36-45:

<table cellspacing="0">
    <tr>
      <td id="leftcolumn">
        <!-- Start left blocks loop -->
        <{foreach item=block from=$xoops_lblocks}>
          <{include file="default/theme_blockleft.html"}>
        <{/foreach}>
        <!-- End left blocks loop -->

      </td>

This piece of code starts the all-important Content Table. This is where all block and module contents are displayed. The Content Table tag opens at Line 36 and closes at Line 106. There are many codes in between that will dictate the look of the site.

The Content Table has only 1 row with 3 cells. The first cell contains the left column contents. The layout is controlled by the style.css using the id “leftcolumn”.

Within that table cell are Smarty tags that calls a loop and displays the different blocks for the Left Column. The layout and structue of each left column block is handled by the theme_blockleft.html file and the style.css.

Specific details on the left column blocks is provided in the theme_blockleft.html section.

[Tip]Theme-Building Tips
  • You can totally eliminate the use of a different HTML file for the left blocks by copying the code inside the theme_blockleft.html file and pasting them inside the <{foreach}> Smarty loop.

  • If you plan to continue using the theme_blockleft.html file using the <{include}> Smarty tag, remember to change the directory to suit your theme folder. The default directory in the tag is the “default” folder, i.e. default/theme_blockleft.html. If your theme folder is “mynewtheme”, then the include function should state mynewtheme/theme_blockleft.html.

2.1.9. Content Table - Center Blocks

Line 47-50:

<td id="centercolumn">

        <!-- Display center blocks if any -->
        <{if $xoops_showcblock == 1}>

The second cell within the Content Table is the Center Column. The layout and format settings are controlled by the style.css using the id “centercolumn”.

The Smarty tag <{if $xoops_showcblock == 1}> checks if there are center blocks to be displayed. If there are, the HTML and Smarty code in between the conditionals will be called, i.e. the center blocks will be be displayed.

Line 85:

<{/if}>
        <!-- End display center blocks -->

The <{if}> Smarty tag is closed at Line 85 with an <{/if}> Smarty tag. This part ends all calls made to the different center blocks.

Remember that there are 3 types of center blocks: center-center, center-left and center-right. Specific details on these types are provided below.

2.1.10. Content Table - Center-Center Blocks

Line 52-63:

<table cellspacing="0">
          <tr>
            <td id="centerCcolumn" colspan="2">

            <!-- Start center-center blocks loop -->
            <{foreach item=block from=$xoops_ccblocks}>
              <{include file="default/theme_blockcenter_c.html"}>
            <{/foreach}>
            <!-- End center-center blocks loop -->

            </td>
          </tr>

The center blocks are all contained in a nested table inside the Center Column (<td id="centercolumn">). The nested table, let’s call it the Center Blocks table as opposed to the Center Column table, has 2 rows.

The first row has one cell (<td id="centerCcolumn" colspan="2">) whose layout is done through the style.css. This row contains the Smarty tags that call the Center-Center blocks through the <{foreach}> Smarty loop tag.

Notice that in include function calls the theme_blockcenter_c.html file. This file dictates the look and layout of the center-center block, specifically how the block title and content are displayed.

[Tip]Theme-Building Tips
  • You can totally eliminate the use of a different HTML file for the center-center blocks by copying the code inside the theme_blockcenter_c.html file and pasting them inside the <{foreach}> Smarty loop.

  • If you plan to continue using the theme_blockcenter_c.html file using the <{include}> Smarty tag, remember to change the directory to suit your theme folder, as mentioned before.

  • The td style id “centerCcolumn” acts on the cell that “houses” the center-center blocks, and not the center-center blocks themselves. For changes on the center-center block layout, edit the theme_blockcenter_c.html file.

2.1.11. Content Table - Center-Left Blocks

Line 64-71

<tr>
            <td id="centerLcolumn">

            <!-- Start center-left blocks loop -->
              <{foreach item=block from=$xoops_clblocks}>
                <{include file="default/theme_blockcenter_l.html"}>
              <{/foreach}>
            <!-- End center-left blocks loop -->

The second row of the Center Blocks table has 2 cells. The first cell contains the Smarty loop that calls on the Center-Left blocks. The cell layout is managed through td style id “centerLcolumn”. As with the center-center blocks, a Smarty include tag calls on a separate file, theme_blockcenter_l.html, for the layout of the center-left blocks.

[Tip]Theme-Building Tips
  • Check Theme-Building Tips (Theme-Building Tips) for the center-center blocks. They should be very similar.

2.1.12. Content Table - Center-Right Blocks

Line 73-83:

</td><td id="centerRcolumn">

            <!-- Start center-right blocks loop -->
              <{foreach item=block from=$xoops_crblocks}>
                <{include file="default/theme_blockcenter_r.html"}>
              <{/foreach}>
            <!-- End center-right blocks loop -->

            </td>
          </tr>
        </table>

The second cell of the second row of the Center Blocks table contains the Smarty loop that calls on the Center-Right blocks. The cell layout is managed through td style id “centerRcolumn”. As with the center-center blocks, a Smarty include tag calls on a separate file, theme_blockcenter_r.html, for the layout of the center-right blocks.

In summary, the Center Blocks table, which is a nested table, has this basic layout.

Center-Center Blocks
Center-LeftCenter-Right
[Tip]Theme-Building Tips
  • Check Theme-Building Tips for the center-center blocks. They should be very similar.

  • Understanding the layout of the Center Blocks table allows you to do some basic XOOPS theme customizations by manipulating the table layout.

2.1.13. Content Table - Module Contents

Line 88-91:

<div id="content">
          <{$xoops_contents}>
        </div>
      </td>

This short HTML code, a div, is a very important part of the theme. This dictates where your module contents are displayed in relation to the center blocks. The default placement is below the Center Blocks table.

Example of module contents are the news articles in the News Module, the Forum table of the NewBB module, and the Contact Form of the Contact Us Module.

[Tip]Theme-Building Tips
  • Just cut and paste this div on top of the Center Blocks table, or more specifically above the conditional that calls the Center Block table, if you want the blocks to be below the module contents.

2.1.14. Content Table - Right Column

Line 93-106:

<{if $xoops_showrblock == 1}>

      <td id="rightcolumn">
        <!-- Start right blocks loop -->
        <{foreach item=block from=$xoops_rblocks}>
          <{include file="default/theme_blockright.html"}>
        <{/foreach}>
        <!-- End right blocks loop -->
      </td>

      <{/if}>

    </tr>
  </table>

This HTML code displays the Right Blocks. It starts with a conditional: if you have right blocks to show ( <{if $xoops_showrblock == 1}> ), then create a cell for that ( <td id=”rightcolumn”> ), start the Smarty tag loop and include the theme_blockright.html file.

As with the Left Blocks, the included file dictates the layout of the Right Blocks.

[Tip]Theme-Building Tips
  • Check Theme-Building Tips for the Left and Center blocks. They should be very similar.

2.1.15. Footer Table

Line 108-114:

<table cellspacing="0">
    <tr id="footerbar">
      <td><a href="http://www.xoops.org/" target="_blank"><img
src="<{$xoops_imageurl}>poweredby.gif" alt="" /></a></td>
    </tr>
  </table>
</body>
</html>

The footer table ends the body of the HTML and the theme.html file

[Tip]Theme-Building Tips
  • Customize the table as you wish. Add more details (copyright information, contact details) that are relevant to your site.

  • Take note that the footer table contains an image (poweredby.gif) and not text. The default theme does not use the Footer information from the XOOPS Admin Control Panel. The Footer information can be called and placed in the theme by using the Smarty tag <{$xoops_footer}> within the Footer Table.