root/trunk/iPhoneTemplateSet/plugins/iPhoneTemplateSet/templates/entry.mtml @ 1100

Revision 1100, 2.0 kB (checked in by kaminogoya, 15 months ago)

added separator modifier to mt:ArchiveFile tag.

Line 
1<?xml version="1.0" encoding="<mt:PublishCharset>"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4    <head>
5        <meta http-equiv="content-type" content="text/html; charset=<mt:PublishCharset>" />
6        <meta id="viewport" name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
7        <title><$mt:EntryTitle$></title>
8        <link rel="stylesheet" href="<$mt:BlogURL$>m/styles.css" />
9    </head>
10    <body>
11
12        <div id="header">
13        <mt:SetVarBlock name="prev_entry"><mt:EntryPrevious>1</mt:EntryPrevious></mt:SetVarBlock>
14        <mt:SetVarBlock name="next_entry"><mt:EntryNext>1</mt:EntryNext></mt:SetVarBlock>
15            <a rel="home" href="<$mt:BlogURL$>m/" class="navigation">Home</a>
16        <mt:If name="prev_entry">
17            <mt:EntryPrevious><a rel="prev" href="<$mt:BlogArchiveURL$>m/<$mt:EntryDate format="%Y/%m/"$><$mt:ArchiveFile separator="-"$>" class="navigation">Prev</a></mt:EntryPrevious>
18        <mt:Else>
19            <span rel="prev" class="navigation prev disable">Prev</span>
20        </mt:If>
21        <mt:If name="next_entry">
22            <mt:EntryNext><a rel="next" href="<$mt:BlogArchiveURL$>m/<$mt:EntryDate format="%Y/%m/"$><$mt:ArchiveFile separator="-"$>" class="navigation">Next</a></mt:EntryNext>
23        <mt:Else>
24            <span rel="next" class="navigation next disable">Next</span>
25        </mt:If>
26        </div>
27        <div id="content" class="entry">
28            <h1><$mt:EntryTitle$></h1>
29            <$mt:EntryBody$>
30            <$mt:EntryMore$>
31        </div>
32        <div id="footer">
33            <p>Powered by <a href="http://www.movabletype.com/" rel="generator"><$MTProductName$></a></p>
34        <mt:BlogIfCCLicense>
35            <p>This blog is licensed under a <a href="<$mt:BlogCCLicenseURL$>">Creative Commons License</a>.</p>
36        </mt:BlogIfCCLicense>
37        </div>
38    </body>
39</html>
40
Note: See TracBrowser for help on using the browser.