remove \^M new line chars
This commit is contained in:
parent
43a6c602e2
commit
86b607cf4e
12 changed files with 169 additions and 169 deletions
28
admin.tpl
28
admin.tpl
|
@ -1,15 +1,15 @@
|
||||||
{include file="cpheader.tpl"}
|
{include file="cpheader.tpl"}
|
||||||
<div id="cpmain">
|
<div id="cpmain">
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<ul id="admin-small-nav">
|
<ul id="admin-small-nav">
|
||||||
<li><a href="index.php">Home</a></li>
|
<li><a href="index.php">Home</a></li>
|
||||||
<li><a href="login.php?do=logout">Logout</a></li>
|
<li><a href="login.php?do=logout">Logout</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{page}
|
{page}
|
||||||
<h1 class="title">{$subject}</h1>
|
<h1 class="title">{$subject}</h1>
|
||||||
<div class="body">{controlpanel}</div>
|
<div class="body">{controlpanel}</div>
|
||||||
{/page}
|
{/page}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{include file="footer.tpl"}
|
{include file="footer.tpl"}
|
72
comments.tpl
72
comments.tpl
|
@ -1,36 +1,36 @@
|
||||||
{include file="header.tpl"}
|
{include file="header.tpl"}
|
||||||
<div id="main">
|
<div id="main">
|
||||||
{entry_block}
|
{entry_block}
|
||||||
{entry}
|
{entry}
|
||||||
{include file="entry-default.tpl"}
|
{include file="entry-default.tpl"}
|
||||||
{comment_block}
|
{comment_block}
|
||||||
<ol id="comments">
|
<ol id="comments">
|
||||||
{comment}
|
{comment}
|
||||||
<li id="{$id}" {$loggedin|notempty:"class=\"comment-admin\""}>
|
<li id="{$id}" {$loggedin|notempty:"class=\"comment-admin\""}>
|
||||||
<strong class='comment-name'>
|
<strong class='comment-name'>
|
||||||
{$url|notempty:"<a href=\"$url\" title=\"Permalink to $name's comment\">$name"|default:$name}</a>
|
{$url|notempty:"<a href=\"$url\" title=\"Permalink to $name's comment\">$name"|default:$name}</a>
|
||||||
</strong>
|
</strong>
|
||||||
|
|
||||||
{include file="shared:commentadminctrls.tpl"} {* this shows edit/delete links*}
|
{include file="shared:commentadminctrls.tpl"} {* this shows edit/delete links*}
|
||||||
|
|
||||||
<div class="date">
|
<div class="date">
|
||||||
{$date|date_format:"%B %d, %Y - %H:%M"}
|
{$date|date_format:"%B %d, %Y - %H:%M"}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{$content|tag:comment_text}
|
{$content|tag:comment_text}
|
||||||
</li>
|
</li>
|
||||||
{/comment}
|
{/comment}
|
||||||
</ol>
|
</ol>
|
||||||
{/comment_block}
|
{/comment_block}
|
||||||
|
|
||||||
{/entry}
|
{/entry}
|
||||||
|
|
||||||
<div class="navigation">
|
<div class="navigation">
|
||||||
{nextpage}{prevpage}
|
{nextpage}{prevpage}
|
||||||
</div>
|
</div>
|
||||||
{/entry_block}
|
{/entry_block}
|
||||||
{include file=""shared:comments.tpl""}
|
{include file=""shared:comments.tpl""}
|
||||||
</div>
|
</div>
|
||||||
{include file="widgets.tpl"}
|
{include file="widgets.tpl"}
|
||||||
<hr />
|
<hr />
|
||||||
{include file="footer.tpl"}
|
{include file="footer.tpl"}
|
||||||
|
|
20
cpheader.tpl
20
cpheader.tpl
|
@ -1,11 +1,11 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<title>{$flatpress.TITLE}{$pagetitle}</title>
|
<title>{$flatpress.TITLE}{$pagetitle}</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset={$flatpress.CHARSET}" />
|
<meta http-equiv="Content-Type" content="text/html; charset={$flatpress.CHARSET}" />
|
||||||
{action hook=wp_head}
|
{action hook=wp_head}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="body-container">
|
<div id="body-container">
|
||||||
<div id="outer-container">
|
<div id="outer-container">
|
28
default.tpl
28
default.tpl
|
@ -1,15 +1,15 @@
|
||||||
{include file="header.tpl"}
|
{include file="header.tpl"}
|
||||||
<div id="main">
|
<div id="main">
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
{page}
|
{page}
|
||||||
<h3 class="title">{$subject}</h3>
|
<h3 class="title">{$subject}</h3>
|
||||||
<div class="body">
|
<div class="body">
|
||||||
{if $rawcontent} {$content}
|
{if $rawcontent} {$content}
|
||||||
{else} {include file="$content}{/if}
|
{else} {include file="$content}{/if}
|
||||||
</div>
|
</div>
|
||||||
{/page}
|
{/page}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{include file="widgets.tpl"}
|
{include file="widgets.tpl"}
|
||||||
{include file="footer.tpl"}
|
{include file="footer.tpl"}
|
|
@ -1,11 +1,11 @@
|
||||||
<div id="{$id}" class="entry">
|
<div id="{$id}" class="entry">
|
||||||
<h3 class="entrytitle"> <a href="{$id|link:post_link}">{$subject|tag:the_title}</a></h3>
|
<h3 class="entrytitle"> <a href="{$id|link:post_link}">{$subject|tag:the_title}</a></h3>
|
||||||
{$date|date_format:'<h2 class="date">%B %d, %Y @ %H:%M</h2>'}
|
{$date|date_format:'<h2 class="date">%B %d, %Y @ %H:%M</h2>'}
|
||||||
{include file="shared:entryadminctrls.tpl"}
|
{include file="shared:entryadminctrls.tpl"}
|
||||||
|
|
||||||
{$content|tag:the_content}
|
{$content|tag:the_content}
|
||||||
|
|
||||||
<ul class="entry-footer">
|
<ul class="entry-footer">
|
||||||
<a href="{$id|link:comments_link}#comments">{$comments|tag:comments_number} {if $views}(<strong>{$views}</strong> views)</a>{/if}
|
<a href="{$id|link:comments_link}#comments">{$comments|tag:comments_number} {if $views}(<strong>{$views}</strong> views)</a>{/if}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
20
footer.tpl
20
footer.tpl
|
@ -1,10 +1,10 @@
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
{action hook=wp_footer}
|
{action hook=wp_footer}
|
||||||
<a href="https://wiki.flatpress.org/res:themes:rainbow">Rainbow</a> Theme is a fork of <a href="https://wiki.flatpress.org/res:themes:snail">Snail</a> - Modified by <a href="https://deltalima.org">DeltaLima</a> - Snail designed by <a href="http://www.stealthsettings.com">Stealth Settings</a>,ported to FP and restyled by <a href="http://marcoverga86.netsons.org">Marco Vergagni</a>
|
<a href="https://wiki.flatpress.org/res:themes:rainbow">Rainbow</a> Theme is a fork of <a href="https://wiki.flatpress.org/res:themes:snail">Snail</a> - Modified by <a href="https://deltalima.org">DeltaLima</a> - Snail designed by <a href="http://www.stealthsettings.com">Stealth Settings</a>,ported to FP and restyled by <a href="http://marcoverga86.netsons.org">Marco Vergagni</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
52
header.tpl
52
header.tpl
|
@ -1,26 +1,26 @@
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
<head>
|
<head>
|
||||||
<title>{$flatpress.title|tag:wp_title:'«'}</title>
|
<title>{$flatpress.title|tag:wp_title:'«'}</title>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset={$flatpress.CHARSET}" />
|
<meta http-equiv="Content-Type" content="text/html; charset={$flatpress.CHARSET}" />
|
||||||
{action hook=wp_head}
|
{action hook=wp_head}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="body-container">
|
<div id="body-container">
|
||||||
<div id="head">
|
<div id="head">
|
||||||
<a href="{$flatpress.WWW}">
|
<a href="{$flatpress.WWW}">
|
||||||
<div id="head-bubble">
|
<div id="head-bubble">
|
||||||
<div id="title-container">
|
<div id="title-container">
|
||||||
<h1>{$flatpress.TITLE}</h1>
|
<h1>{$flatpress.TITLE}</h1>
|
||||||
<p class="subtitle">{$flatpress.SUBTITLE}</p>
|
<p class="subtitle">{$flatpress.SUBTITLE}</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="logo-container">
|
<div id="logo-container">
|
||||||
<img id="logo-img" src="{'rainbow'|theme_geturl}imgs/flatpress-logo-solo.svg">
|
<img id="logo-img" src="{'rainbow'|theme_geturl}imgs/flatpress-logo-solo.svg">
|
||||||
</div>
|
</div>
|
||||||
<div id="clear-container"></div>
|
<div id="clear-container"></div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<hr />
|
<hr />
|
||||||
<div id="outer-container">
|
<div id="outer-container">
|
||||||
|
|
28
index.tpl
28
index.tpl
|
@ -1,14 +1,14 @@
|
||||||
{include file="header.tpl"}
|
{include file="header.tpl"}
|
||||||
{include file="widgets.tpl"}
|
{include file="widgets.tpl"}
|
||||||
<div id="main">
|
<div id="main">
|
||||||
{entry_block}
|
{entry_block}
|
||||||
{entry}
|
{entry}
|
||||||
{include file="entry-default.tpl"}
|
{include file="entry-default.tpl"}
|
||||||
{/entry}
|
{/entry}
|
||||||
<div class="navigation">
|
<div class="navigation">
|
||||||
{nextpage}{prevpage}
|
{nextpage}{prevpage}
|
||||||
</div>
|
</div>
|
||||||
{/entry_block}
|
{/entry_block}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{include file="footer.tpl"}
|
{include file="footer.tpl"}
|
||||||
|
|
12
preview.tpl
12
preview.tpl
|
@ -1,7 +1,7 @@
|
||||||
{entry content=$entry}
|
{entry content=$entry}
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<h3>{$subject|tag:the_title}</h3>
|
<h3>{$subject|tag:the_title}</h3>
|
||||||
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"} </p>
|
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"} </p>
|
||||||
{$content|tag:the_content}
|
{$content|tag:the_content}
|
||||||
</div>
|
</div>
|
||||||
{/entry}
|
{/entry}
|
|
@ -1,7 +1,7 @@
|
||||||
{static content=$entry}
|
{static content=$entry}
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<h3>{$subject}</h3>
|
<h3>{$subject}</h3>
|
||||||
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"} </p>
|
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"} </p>
|
||||||
{$content}
|
{$content}
|
||||||
</div>
|
</div>
|
||||||
{/static}
|
{/static}
|
30
static.tpl
30
static.tpl
|
@ -1,15 +1,15 @@
|
||||||
{include file="header.tpl"}
|
{include file="header.tpl"}
|
||||||
<div id="main">
|
<div id="main">
|
||||||
{static_block}
|
{static_block}
|
||||||
{static}
|
{static}
|
||||||
<div id="{$id}" class="entry">
|
<div id="{$id}" class="entry">
|
||||||
<div class="entry-title"><h2>{$subject}</h2></div>
|
<div class="entry-title"><h2>{$subject}</h2></div>
|
||||||
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"}</p>
|
<p class="date">Published by {$author} on {$date|date_format:"%A, %B %e, %Y - %H:%M:%S"}</p>
|
||||||
{$content|tag:the_content}
|
{$content|tag:the_content}
|
||||||
</div>
|
</div>
|
||||||
{/static}
|
{/static}
|
||||||
{/static_block}
|
{/static_block}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{include file="widgets.tpl"}
|
{include file="widgets.tpl"}
|
||||||
{include file="footer.tpl"}
|
{include file="footer.tpl"}
|
||||||
|
|
14
widgets.tpl
14
widgets.tpl
|
@ -1,8 +1,8 @@
|
||||||
<div id="column">
|
<div id="column">
|
||||||
{widgets pos=right}
|
{widgets pos=right}
|
||||||
<div id="{$id}">
|
<div id="{$id}">
|
||||||
<h4>{$subject}</h4>
|
<h4>{$subject}</h4>
|
||||||
{$content}
|
{$content}
|
||||||
</div>
|
</div>
|
||||||
{/widgets}
|
{/widgets}
|
||||||
</div>
|
</div>
|
Loading…
Reference in a new issue