Source for file a_noskin.php
Documentation is available at a_noskin.php
* This file will display a blog, WITHOUT using skins.
* This file will set some display parameters and then display the blog in a template.
* Note: You only need to use this file for advanced use/customization of b2evolution.
* Most of the time, calling your blog through index.php with a skin will be enough.
* You should try to customize a skin before thrying to use this fle.
* Same display without using skins: a_stub.php
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
# First, select which blog you want to display here!
# You can find these numbers in the back-office under the Blogs section.
# You can also create new blogs over there. If you do, you may duplicate this file for the new blog.
$blog =
2; // 2 is for "demo blog A" or your upgraded blog (depends on your install)
# Tell b2evolution you don't want to use evoSkins for this template:
# This setting retricts posts to those published, thus hiding drafts.
# You should not have to change this.
$show_statuses =
array();
# You could *force* a specific link blog here with this setting: (otherwise, default will be used)
# This is the list of categories to restrict the linkblog to (cats will be displayed recursively)
# Example: $linkblog_cat = '4,6,7';
# This is the array if categories to restrict the linkblog to (non recursive)
# Example: $linkblog_catsel = array( 4, 6, 7 );
$linkblog_catsel =
array( );
# Here you can set a limit before which posts will be ignored
# You can use a unix timestamp value or 'now' which will hide all posts in the past
# Here you can set a limit after which posts will be ignored
# You can use a unix timestamp value or 'now' which will hide all posts in the future
# Additionnaly, you can set other values (see URL params in the manual)...
# $order = 'ASC'; // This for example would display the blog in chronological order...
* Let b2evolution handle the query string and load the blog data:
require
(dirname(__FILE__
).
'/b2evocore/_blog_main.php');
# Now, below you'll find the main template...
<!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="
<?php locale_lang() ?>" lang="
<?php locale_lang() ?>"><!-- InstanceBegin template="/Templates/Standard.dwt" codeOutsideHTMLIsLocked="false" -->
<!-- InstanceBeginEditable name="doctitle" -->
<meta http-equiv="Content-Type" content="text/html; charset=
<?php locale_charset() ?>" />
$Blog->disp('name', 'htmlhead');
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<base href="
<?php skinbase(); // You're not using any skin here but this won't hurt. However it will be very helpfull to have this here when you make the switch to a skin! ?>" />
<meta name="description" content="
<?php $Blog->disp( 'shortdesc', 'htmlattr' ); ?>" />
<meta name="keywords" content="
<?php $Blog->disp( 'keywords', 'htmlattr' ); ?>" />
<meta name="generator" content="b2evolution
<?php echo
$b2_version ?>" /> <!-- Please leave this for stats -->
<link rel="alternate" type="text/xml" title="RDF" href="
<?php $Blog->disp( 'rdf_url', 'raw' ) ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="
<?php $Blog->disp( 'rss_url', 'raw' ) ?>" />
<link rel="alternate" type="text/xml" title="RSS 2.0" href="
<?php $Blog->disp( 'rss2_url', 'raw' ) ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="
<?php $Blog->disp( 'atom_url', 'raw' ) ?>" />
<link rel="pingback" href="
<?php $Blog->disp( 'pingback_url', 'raw' ) ?>" />
<!-- InstanceEndEditable -->
<link rel="stylesheet" href="rsc/fp02.css" type="text/css" />
<div class="pageHeaderContent">
<!-- InstanceBeginEditable name="NavBar2" -->
<?php // --------------------------- BLOG LIST INCLUDED HERE -----------------------------
# this is what will start and end your blog links
$blog_list_start =
'<div class="NavBar">';
$blog_list_end =
'</div>';
# this is what will separate your blog links
# This is the class of for the selected blog link:
$blog_selected_link_class =
'NavButton2Curr';
# This is the class of for the other blog links:
$blog_other_link_class =
'NavButton2';
# This is additionnal markup before and after the selected blog name
$blog_selected_name_before =
'<span class="small"><img src="'.
$img_url.
'/down_small.gif" width="14" height="12" alt="['.
T_('Selected').
']" title="" class="top" />';
$blog_selected_name_after =
'</span>';
# This is additionnal markup before and after the other blog names
$blog_other_name_before =
'<span class="small">';
$blog_other_name_after =
'</span>';
require
( get_path('skins').
'/_bloglist.php');
// ---------------------------------- END OF BLOG LIST --------------------------------- ?>
<!-- InstanceEndEditable -->
<div id="Logo"> </div>
<h1 id="pageTitle"><!-- InstanceBeginEditable name="PageTitle" -->
<?php $Blog->disp( 'name', 'htmlbody' ) ?><!-- InstanceEndEditable --></h1>
<div class="pageHeaderEnd"></div>
<div class="pageSubTitle"><!-- InstanceBeginEditable name="SubTitle" -->
<?php $Blog->disp( 'tagline', 'htmlbody' ) ?><!-- InstanceEndEditable --></div>
<div class="main"><!-- InstanceBeginEditable name="Main" -->
<!-- =================================== START OF MAIN AREA =================================== -->
<?php // ------------------------------------ START OF POSTS ----------------------------------------
if( isset
($MainList) ) $MainList->display_if_empty(); // Display message if no post
if( isset
($MainList) ) while( $Item =
$MainList->get_item() )
$MainList->date_if_changed();
<div class="bPost" lang="
<?php $Item->lang() ?>">
<?php $Item->anchor(); ?>
<a href="
<?php $Item->permalink() ?>" title="Permanent link to full entry"><img src="img/icon_minipost.gif" alt="Permalink" width="12" height="9" class="middle" /></a>
<?php $Item->issue_time(); echo
', ', T_('Categories'), ': '; $Item->categories() ?>
<h3 class="bTitle">
<?php $Item->title(); ?></h3>
<?php $Item->content(); ?>
<div class="bSmallPrint">
<?php $Item->feedback_link( 'comments', '', ' • ' ) // Link to comments ?>
<?php $Item->feedback_link( 'trackbacks', '', ' • ' ) // Link to trackbacks ?>
<?php $Item->feedback_link( 'pingbacks', '', ' • ' ) // Link to trackbacks ?>
<?php $Item->trackback_rdf() // trackback autodiscovery information ?>
<a href="
<?php $Item->permalink() ?>" title="
<?php echo
T_('Permanent link to full entry') ?>">
<?php echo
T_('Permalink') ?></a>
<?php // ---------------- START OF INCLUDE FOR COMMENTS, TRACKBACK, PINGBACK, ETC. ----------------
$disp_comments =
1; // Display the comments if requested
$disp_comment_form =
1; // Display the comments form if comments requested
$disp_trackbacks =
1; // Display the trackbacks if requested
$disp_trackback_url =
1; // Display the trackbal URL if trackbacks requested
$disp_pingbacks =
1; // Display the pingbacks if requested
require
( get_path('skins').
'/_feedback.php');
// ------------------- END OF INCLUDE FOR COMMENTS, TRACKBACK, PINGBACK, ETC. ------------------- ?>
<?php } // ---------------------------------- END OF POSTS ------------------------------------ ?>
<?php // ---------------- START OF INCLUDES FOR LAST COMMENTS, STATS ETC. ----------------
// this includes the last comments if requested:
require
( get_path('skins').
'/_lastcomments.php' );
// this includes the archive directory if requested
require
( get_path('skins').
'/_arcdir.php');
// this includes the profile form if requested
require
( get_path('skins').
'/_profile.php');
// ------------------- END OF INCLUDES FOR LAST COMMENTS, STATS ETC. ------------------- ?>
<!-- =================================== START OF SIDEBAR =================================== -->
<h3>
<?php $Blog->disp( 'name', 'htmlbody' ) ?></h3>
<p>
<?php $Blog->disp( 'longdesc', 'htmlbody' ); ?></p>
<!--?php next_post(); // activate this if you want a link to the next post in single page mode ?-->
<!--?php previous_post(); // activate this if you want a link to the previous post in single page mode ?-->
<li><a href="
<?php $Blog->disp( 'staticurl', 'raw' ) ?>"><strong>
<?php echo
T_('Recently') ?></strong></a> <span class="dimmed">
<?php echo
T_('(cached)') ?></span></li>
<li><a href="
<?php $Blog->disp( 'dynurl', 'raw' ) ?>"><strong>
<?php echo
T_('Recently') ?></strong></a> <span class="dimmed">
<?php echo
T_('(no cache)') ?></span></li>
<?php // -------------------------- CALENDAR INCLUDED HERE -----------------------------
require
( get_path('skins').
'/_calendar.php');
// -------------------------------- END OF CALENDAR ---------------------------------- ?>
<li><a href="
<?php $Blog->disp( 'lastcommentsurl', 'raw' ) ?>"><strong>
<?php echo
T_('Last comments') ?></strong></a></li>
<h3 class="sideItemTitle">
<?php echo
T_('Search') ?></h3>
<?php form_formstart( $Blog->dget( 'blogurl', 'raw' ), 'search', 'searchform' ) ?>
<input type="text" name="s" size="30" value="
<?php echo
htmlspecialchars($s) ?>" class="s1" />
<input type="radio" name="sentence" value="AND" id="sentAND"
<?php if( $sentence==
'AND' ) echo
'checked="checked" ' ?>/><label for="sentAND">
<?php echo
T_('All Words') ?></label>
<input type="radio" name="sentence" value="OR" id="sentOR"
<?php if( $sentence==
'OR' ) echo
'checked="checked" ' ?>/><label for="sentOR">
<?php echo
T_('Some Word') ?></label>
<input type="radio" name="sentence" value="sentence" id="sentence"
<?php if( $sentence==
'sentence' ) echo
'checked="checked" ' ?>/><label for="sentence">
<?php echo
T_('Entire phrase') ?></label>
<input type="submit" name="submit" value="
<?php echo
T_('Search') ?>" />
<input type="reset" value="
<?php echo
T_('Reset form') ?>" />
<h3>
<?php echo
T_('Categories') ?></h3>
<?php // -------------------------- CATEGORIES INCLUDED HERE -----------------------------
require
( get_path('skins').
'/_categories.php');
// -------------------------------- END OF CATEGORIES ---------------------------------- ?>
<input type="submit" value="
<?php echo
T_('Get selection') ?>" />
<input type="reset" value="
<?php echo
T_('Reset form') ?>" />
<h3>
<?php echo
T_('Archives') ?></h3>
<?php // -------------------------- ARCHIVES INCLUDED HERE -----------------------------
require
( get_path('skins').
'/_archives.php');
// -------------------------------- END OF ARCHIVES ---------------------------------- ?>
<li><a href="
<?php $Blog->disp( 'arcdirurl', 'raw' ) ?>">
<?php echo
T_('more...') ?></a></li>
<?php // -------------------------- LINKBLOG INCLUDED HERE -----------------------------
require
( get_path('skins').
'/_linkblog.php' );
// -------------------------------- END OF LINKBLOG ---------------------------------- ?>
<h3>
<?php echo
T_('Misc') ?></h3>
<h3>
<?php echo
T_('Syndicate this blog') ?> <img src="
<?php echo
$img_url ?>/xml.gif" alt="XML" width="36" height="14" class="middle" /></h3>
<li><a href="
<?php $Blog->disp( 'rss_url', 'raw' ) ?>">RSS 0.92 (Userland)</a></li>
<li><a href="
<?php $Blog->disp( 'rdf_url', 'raw' ) ?>">RSS 1.0 (RDF)</a></li>
<li><a href="
<?php $Blog->disp( 'rss2_url', 'raw' ) ?>">RSS 2.0 (Userland)</a></li>
<li><a href="
<?php $Blog->disp( 'atom_url', 'raw' ) ?>">Atom 0.3</a></li>
<a href="http://fplanque.net/Blog/itTrends/2004/01/10/rss_rdf_and_atom_in_a_nutshell" title="External - English">What is RSS?</a>
<p class="center">powered by<br />
<a href="http://b2evolution.net/" title="b2evolution home"><img src="
<?php echo
$img_url ?>/b2evolution_button.png" alt="b2evolution" width="80" height="15" border="0" class="middle" /></a></p>
<!-- InstanceEndEditable --></div>
<table cellspacing="3" class="wide">
<td class="cartouche">Original page design by <a href="http://fplanque.net/">François PLANQUE</a> </td>
<td class="cartouche" align="right"> <a href="http://b2evolution.net/" title="b2evolution home"><img src="img/b2evolution_button.png" alt="b2evolution" width="80" height="15" border="0" class="middle" /></a></td>
<a href="http://validator.w3.org/check/referer"><img style="border:0;width:88px;height:31px" src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" class="middle" /></a>
<a href="http://jigsaw.w3.org/css-validator/"><img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!" class="middle" /></a>
<a href="http://feedvalidator.org/check.cgi?url=
<?php $Blog->disp( 'rss2_url', 'raw' ) ?>"><img src="img/valid-rss.png" alt="Valid RSS!" style="border:0;width:88px;height:31px" class="middle" /></a>
<a href="http://feedvalidator.org/check.cgi?url=
<?php $Blog->disp( 'atom_url', 'raw' ) ?>"><img src="img/valid-atom.png" alt="Valid Atom!" style="border:0;width:88px;height:31px" class="middle" /></a>
<!-- InstanceBeginEditable name="Baseline" -->
log_hit(); // log the hit on this page
<!-- InstanceEndEditable --></p>
<!-- InstanceEnd --></html>