WordPress - index.php
<?php
require_once "./wp-blog-header.php";
?>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja">
<head profile="http://gmpg.org/xfn/1">
<title>Re:harmonize - <?php bloginfo('name'); ?><?php wp_title('-'); ?></title>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=<?php bloginfo('charset'); ?>" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<style type="text/css" media="screen" title="Default">
@import url( ../style.css );
</style>
<link rel="stylesheet" type="text/css" media="print" href="<?php echo get_settings('siteurl'); ?>/print.css" />
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_get_archives('type=monthly&format=link'); ?>
<?php //comments_popup_script(); // off by default ?>
<?php wp_head(); ?>
</head>
<body>
<?php include_once "../div.header.php"; ?>
<?php include_once "../div.main-menu.php"; ?>
<?php include_once "../div.side-menu.php"; ?>
<div class="content">
<h2 class="content-title">= <?php bloginfo('name'); ?> =</h2>
<p class="weblog-description">
<?php bloginfo('description'); ?>
</p>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<div class="post">
<h3 class="content-sub-title" id="post_<?php the_ID(); ?>"><?php the_title(":: "); ?></h3>
<?php the_content(); ?>
<div class="posted">
Posted at <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_time("M. d, Y (D)") ?> <?php the_time() ?></a> | <?php the_category("/") ?> | <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
<?php include(ABSPATH . 'wp-comments.php'); ?>
</div>
<?php endforeach; else: ?>
<?php endif; ?>
</div>
<?php include_once "../div.footer.php"; ?>
<?php include_once "../footer.php"; ?>
WordPress - div.side-menu.php
<div class="side-menu">
<h2 class="side-title">Categories</h2>
<ul class="side-list">
<?php wp_list_cats("sort_column=name&optioncount=1"); ?>
</ul>
<h2 class="side-title">Archives</h2>
<ul class="side-list">
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h2 class="side-title">Recent Entries</h2>
<ul class="side-list">
<?php wp_get_archives('type=postbypost&limit=10'); ?>
</ul>
<h2 class="side-title">Recent Comments</h2>
<ul class="side-list">
<?php get_recent_comments(10); ?>
</ul>
<h2 class="side-title">Links</h2>
<ul class="side-list">
<?php get_links_list(); ?>
</ul>
<h2>Syndicate</h2>
<ul class="side-list">
<li><a href="<?php bloginfo('rss2_url'); ?>">RSS 2.0</a></li>
<li><a href="<?php bloginfo('atom_url'); ?>">Atom 0.3</a></li>
</ul>
<h2>Powered by</h2>
<ul class="side-list">
<li><a href="http://wordpress.org/">WordPress <?php print $wp_version; ?></a></li>
</ul>
</div>
MovableType - index.tpl
<?php $pagetitle="<$MTBlogName$>"; ?>
<$MTInclude module="Header"$>
<div class="content">
<h2 class="content-title">= <$MTBlogName$> =</h2>
<p class="weblog-description">
<$MTBlogDescription$>
</p>
<MTEntries lastn="8">
<$MTEntryTrackbackData$>
<h3 class="content-sub-title" id="id<$MTEntryID pad="1"$>">:: <$MTEntryTitle$></h3>
<$MTEntryBody$>
<MTEntryIfExtended>
<p class="weblog-extended">
<a href="<$MTEntryPermalink$>#more">...continue...</a>
</p>
</MTEntryIfExtended>
<div class="posted">Posted at <a href="<$MTEntryPermalink$>"><$MTEntryDate format="%b. %d, %Y (%a) %H:%M"$></a>
<MTEntryCategories>
| <a href="<$MTCategoryArchiveLink$>">/<$MTEntryCategory$></a>
</MTEntryCategories>
<MTEntryIfAllowComments>
| <a href="<$MTCGIPath$><$MTCommentScript$>?entry_id=<$MTEntryID$>" onclick="OpenComments(this.href); return false" onkeypress="OpenComments(this.href); return false">Comments (<$MTEntryCommentCount$>)</a>
</MTEntryIfAllowComments>
<MTEntryIfAllowPings>
| <a href="<$MTCGIPath$><$MTTrackbackScript$>?__mode=view&entry_id=<$MTEntryID$>" onclick="OpenTrackback(this.href); return false" onkeypress="OpenTrackback(this.href); return false">TrackBack (<$MTEntryTrackbackCount$>)</a>
</MTEntryIfAllowPings>
</div>
</MTEntries>
</div>
<$MTInclude module="Footer"$>