This is a free WordPress template released under the GPL v3. The colors used are (most) green (thus the Fistic name) and white and some variations of dark green nuance.
Structure
The header of the page page has 3 (three) areas: first: the title and the description of the blog which float to the right, second the menu: (supports custom menus) and third: a container with a search box floating to the right and a box with a link pointing to login page if user is not logged in and to admin panel if the user is logged in.
The front page has a different layout from single post and single page. It lists the existing post with the following format: on the left the title of the post (permalink to the post), in the middle a thumbnail and on the right the excerpt of the post. The image thumbnail is generated as follows: if the post doesn’t have a featured image, a function generates a random number between 1 and 6 and adds an image from the /template_directory/img/thumbs/ folder if is not a sticky post, and from the /template_directory/img/sticky/ folder if it is a sticky post. See the code bellow:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
//Random image for thumbs if don't exist
function random_thumb_post () {
$templ_dir = get_bloginfo('template_directory');
$ext = '.png';
if (!is_sticky()) {
$thumb_dir = '/img/thumbs/';
} else {
$thumb_dir = '/img/sticky/';
};
$i=rand(1,6);
$img[$i]= $templ_dir . $thumb_dir . $i. $ext;
print '<code><</code>img class="float-left thumb-img" src="'.$img[$i].'" alt=" " />';
}; |
Note that the images are PNGs and you can see how they are displayed on the second page of the front page of this presentation environment.
The single page has the main content floating on the left and a sidebar floating on right. The main content container is split in two, on the right side being the details for the post (time, tags, author) and a box with a list of random post titles (excluding the current one).
The footer area has just a few notes about the copyright notice and a small text about the template's author.
Gallery
Web browser compatibility
The template was tested on different environments and it displays well on Firefox v3.6, Opera v10.63, Safari v5.0, Chrome v8.0 and Internet Explorer v8.0. Looks good on Internet Explorer v7.0 and more than acceptable on Internet Explorer v6.0.
Known issues
Opera doesn't know how to render the italicized version of the used font (Neucha). Also, in "Reader made ... comments" section on front page, for Linux OSes is seems that the font used (sans-serif) doesn't fit the text in the container width, so I've place the "Nimbus Mono L" before sans serif-font, and it looks a little bit different.
Download
You can DOWNLOAD the template from WordPress site. A LIVE PREVIEW of the template is available also.












