summaryrefslogtreecommitdiffstats
path: root/themes/remi/tpl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/remi/tpl')
-rw-r--r--themes/remi/tpl/.htaccess1
-rw-r--r--themes/remi/tpl/404.html63
-rw-r--r--themes/remi/tpl/_head.html13
-rw-r--r--themes/remi/tpl/_top.html14
-rw-r--r--themes/remi/tpl/archive.html81
-rw-r--r--themes/remi/tpl/archive_month.html98
-rw-r--r--themes/remi/tpl/category.html169
-rw-r--r--themes/remi/tpl/home.html196
-rw-r--r--themes/remi/tpl/page.html284
-rw-r--r--themes/remi/tpl/post.html314
-rw-r--r--themes/remi/tpl/search.html154
-rw-r--r--themes/remi/tpl/tag.html163
-rw-r--r--themes/remi/tpl/tags.html79
13 files changed, 1629 insertions, 0 deletions
diff --git a/themes/remi/tpl/.htaccess b/themes/remi/tpl/.htaccess
new file mode 100644
index 0000000..3a42882
--- /dev/null
+++ b/themes/remi/tpl/.htaccess
@@ -0,0 +1 @@
+Deny from all
diff --git a/themes/remi/tpl/404.html b/themes/remi/tpl/404.html
new file mode 100644
index 0000000..16e17dc
--- /dev/null
+++ b/themes/remi/tpl/404.html
@@ -0,0 +1,63 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" />
+
+ <title>{{tpl:lang Document not found}} - {{tpl:BlogName encode_html="1"}}</title>
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Document not found}} - {{tpl:BlogName encode_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" />
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-404">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="sidebar">
+ <div id="blognav">
+ {{tpl:Widgets type="nav"}}
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+<div id="main">
+ <div id="content">
+
+ <div id="content-info">
+ <h2>{{tpl:lang Document not found}}</h2>
+ </div>
+
+ <div class="content-inner">
+ <p>{{tpl:lang The document you are looking for does not exist.}}</p>
+ </div>
+
+ </div>
+</div>
+
+</div> <!-- End #wrapper -->
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/_head.html b/themes/remi/tpl/_head.html
new file mode 100644
index 0000000..5871e1f
--- /dev/null
+++ b/themes/remi/tpl/_head.html
@@ -0,0 +1,13 @@
+<style type="text/css" media="screen">
+@import url({{tpl:BlogThemeURL}}/style.css);
+</style>
+<style type="text/css" media="print">
+@import url({{tpl:BlogThemeURL}}/../default/print.css);
+</style>
+<link rel="shortcut icon" href="{{tpl:BlogThemeURL}}/favicon.ico" />
+
+<script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/jquery.js"></script>
+<script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/jquery.cookie.js"></script>
+
+{{tpl:include src="user_head.html"}}
+{{tpl:SysBehavior behavior="publicHeadContent"}}
diff --git a/themes/remi/tpl/_top.html b/themes/remi/tpl/_top.html
new file mode 100644
index 0000000..455dfc3
--- /dev/null
+++ b/themes/remi/tpl/_top.html
@@ -0,0 +1,14 @@
+<div id="top">
+ <h1><span><a href="{{tpl:BlogURL}}">{{tpl:BlogName encode_html="1"}}</a></span></h1>
+
+ <!-- # --BEHAVIOR-- publicTopAfterContent -->&nbsp;&nbsp;
+ {{tpl:SysBehavior behavior="publicTopAfterContent"}}
+</div>
+
+<p id="navlink"><a href="#main">{{tpl:lang To content}}</a>
+<a href="#blognav">{{tpl:lang To menu}}</a>
+<a href="#search">{{tpl:lang To search}}</a></p>
+
+<p id="prelude"><a href="https://blog.remirepo.net/">Blog</a> |
+<a href="https://forum.remirepo.net/">Forum</a> |
+<a href="https://rpms.remirepo.net/">Repository</a></p>
diff --git a/themes/remi/tpl/archive.html b/themes/remi/tpl/archive.html
new file mode 100644
index 0000000..0c91859
--- /dev/null
+++ b/themes/remi/tpl/archive.html
@@ -0,0 +1,81 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
+
+ <title>{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}</title>
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:BlogName encode_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+
+ <tpl:Archives>
+ <link rel="chapter" href="{{tpl:ArchiveURL}}" title="{{tpl:ArchiveDate encode_html="1"}}" />
+ </tpl:Archives>
+
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-archive">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="sidebar">
+ <div id="blognav">
+ {{tpl:Widgets type="nav"}}
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+<div id="main">
+ <div id="content">
+
+ <div id="content-info">
+ <h2>{{tpl:lang Archives}}</h2>
+ </div>
+
+ <div class="content-inner">
+ <tpl:Archives>
+ <tpl:ArchivesYearHeader>
+ <h3>{{tpl:ArchiveDate format="%Y"}}</h3>
+ <ul>
+ </tpl:ArchivesYearHeader>
+ <li><a href="{{tpl:ArchiveURL}}"
+ title="{{tpl:ArchiveDate encode_html="1"}}">{{tpl:ArchiveDate encode_html="1" format="%B"}}</a>
+ ({{tpl:ArchiveEntriesCount}})</li>
+ <tpl:ArchivesYearFooter>
+ </ul>
+ </tpl:ArchivesYearFooter>
+ </tpl:Archives>
+ </div>
+
+ </div>
+</div> <!-- End #main -->
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/archive_month.html b/themes/remi/tpl/archive_month.html
new file mode 100644
index 0000000..2054258
--- /dev/null
+++ b/themes/remi/tpl/archive_month.html
@@ -0,0 +1,98 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" />
+
+ <title>{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}</title>
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Archives}} - {{tpl:ArchiveDate}} - {{tpl:BlogName encode_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="up" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+ <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+
+
+ <tpl:ArchiveNext><link rel="next" href="{{tpl:ArchiveURL}}"
+ title="{{tpl:ArchiveDate encode_html="1"}}" /></tpl:ArchiveNext>
+ <tpl:ArchivePrevious><link rel="previous" href="{{tpl:ArchiveURL}}"
+ title="{{tpl:ArchiveDate encode_html="1"}}" /></tpl:ArchivePrevious>
+
+ <tpl:Entries no_content="1">
+ <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
+ </tpl:Entries>
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-archive-month">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="sidebar">
+ <div id="blognav">
+ {{tpl:Widgets type="nav"}}
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+<div id="main">
+ <div id="content">
+
+ <p id="navlinks">
+ <tpl:ArchivePrevious><a href="{{tpl:ArchiveURL}}" class="prev">&#171; {{tpl:ArchiveDate encode_html="1"}}</a>
+ - </tpl:ArchivePrevious>
+ <a href="{{tpl:BlogArchiveURL}}">{{tpl:lang Archives}}</a>
+ <tpl:ArchiveNext> - <a href="{{tpl:ArchiveURL}}" class="next">{{tpl:ArchiveDate encode_html="1"}} &#187;</a></tpl:ArchiveNext>
+ </p>
+
+ <div id="content-info">
+ <h2>{{tpl:ArchiveDate}}</h2>
+ </div>
+
+ <div class="content-inner">
+ <tpl:Entries no_content="1">
+ <!-- # New day date -->
+ <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
+
+ <h2 id="p{{tpl:EntryID}}" class="post-title" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}"><a
+ href="{{tpl:EntryURL}}" title="{{tpl:lang Read}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:EntryTitle encode_html="1"}}</a></h2>
+
+ <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
+ <tpl:EntryIf show_comments="1">
+ - <a href="{{tpl:EntryURL}}#comments">{{tpl:EntryCommentCount}}</a>
+ </tpl:EntryIf>
+ <tpl:EntryIf show_pings="1">
+ - <a href="{{tpl:EntryURL}}#pings">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf has_attachment="1">
+ - <a href="{{tpl:EntryURL}}#attachments">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
+ </p>
+ </tpl:Entries>
+ </div>
+ </div>
+</div> <!-- End #main -->
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/category.html b/themes/remi/tpl/category.html
new file mode 100644
index 0000000..b8c6eec
--- /dev/null
+++ b/themes/remi/tpl/category.html
@@ -0,0 +1,169 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" />
+
+ <title>{{tpl:CategoryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title>
+ <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:CategoryDescription cut_string="180" remove_html="1"}}" />
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:CategoryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
+ <meta name="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:CategoryDescription remove_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+
+ <tpl:Entries no_content="1">
+ <tpl:EntriesHeader>
+ <tpl:Pagination>
+ <tpl:PaginationIf end="0">
+ <link rel="previous" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
+ </tpl:PaginationIf>
+
+ <tpl:PaginationIf start="0">
+ <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
+ </tpl:PaginationIf>
+ </tpl:Pagination>
+ </tpl:EntriesHeader>
+
+ <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
+ </tpl:Entries>
+
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:CategoryFeedURL type="atom"}}" />
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-category">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="main">
+ <div id="content">
+
+ <div id="content-info">
+ <h2><tpl:CategoryParents><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a> &rsaquo; </tpl:CategoryParents>
+ {{tpl:CategoryTitle encode_html="1"}}</h2>
+ {{tpl:CategoryDescription}}
+
+ <tpl:CategoryIf has_entries="1">
+ <p><a type="application/atom+xml" href="{{tpl:CategoryFeedURL type="atom"}}"
+ title="{{tpl:lang This category's entries Atom feed}}" class="feed">{{tpl:lang Entries feed}}</a>
+
+ <tpl:SysIf operator="or" comments_active="1" pings_active="1">
+ - <a type="application/atom+xml" href="{{tpl:CategoryFeedURL type="atom"}}/comments"
+ title="{{tpl:lang This category's comments Atom feed}}" class="feed">{{tpl:lang Comments feed}}</a>
+ </tpl:SysIf>
+ </p>
+ </tpl:CategoryIf>
+ </div>
+
+ <tpl:CategoryFirstChildren>
+ <tpl:CategoriesHeader>
+ <div id="subcategories">
+ <h3>{{tpl:lang Subcategories}}</h3>
+ <ul>
+ </tpl:CategoriesHeader>
+ <li><a href="{{tpl:CategoryURL}}">{{tpl:CategoryTitle encode_html="1"}}</a></li>
+ <tpl:CategoriesFooter>
+ </ul>
+ </div>
+ </tpl:CategoriesFooter>
+ </tpl:CategoryFirstChildren>
+
+ <tpl:Entries>
+ <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}">
+ <!-- # New day date -->
+ <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
+
+ <h2 class="post-title"><a
+ href="{{tpl:EntryURL}}"><img src=/images/{{tpl:EntryLang}}.gif /> {{tpl:EntryTitle encode_html="1"}}</a></h2>
+
+ <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
+ {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}</p>
+
+ <tpl:EntryMetaData>
+ <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader>
+ <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li>
+ <tpl:MetaDataFooter></ul></tpl:MetaDataFooter>
+ </tpl:EntryMetaData>
+
+ <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
+ {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
+
+ <!-- # Entry with an excerpt -->
+ <tpl:EntryIf extended="1">
+ <div class="post-content">{{tpl:EntryExcerpt}}</div>
+ <p class="read-it"><a href="{{tpl:EntryURL}}"
+ title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
+ reading}}</a>...</p>
+ </tpl:EntryIf>
+
+ <!-- # Entry without excerpt -->
+ <tpl:EntryIf extended="0">
+ <div class="post-content">{{tpl:EntryContent}}</div>
+ </tpl:EntryIf>
+
+ <!-- # --BEHAVIOR-- publicEntryAfterContent -->
+ {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
+
+ <!-- # Number of comments, trackbacks and attachments -->
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ <p class="post-info-co">
+ </tpl:EntryIf>
+ <tpl:EntryIf show_comments="1">
+ <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
+ </tpl:EntryIf>
+ <tpl:EntryIf show_pings="1">
+ <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf has_attachment="1">
+ <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ </p>
+ </tpl:EntryIf>
+ </div>
+
+ <tpl:EntriesFooter>
+ <tpl:Pagination>
+ <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
+ {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
+ {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
+ <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
+ &#187;</a></tpl:PaginationIf></p>
+ </tpl:Pagination>
+ </tpl:EntriesFooter>
+ </tpl:Entries>
+ </div>
+</div> <!-- End #main -->
+
+<div id="sidebar">
+ <div id="blognav">
+ {{tpl:Widgets type="nav"}}
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/home.html b/themes/remi/tpl/home.html
new file mode 100644
index 0000000..bccfe1f
--- /dev/null
+++ b/themes/remi/tpl/home.html
@@ -0,0 +1,196 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
+
+ <title>{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title>
+ <meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription cut_string="180" encode_html="1"}}" />
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
+ <meta name="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" />
+ <tpl:Categories>
+ <link rel="section" href="{{tpl:CategoryURL}}" title="{{tpl:CategoryTitle encode_html="1"}}" />
+ </tpl:Categories>
+
+ <tpl:Entries no_content="1">
+ <tpl:EntriesHeader>
+ <tpl:Pagination>
+ <tpl:PaginationIf end="0">
+ <link rel="previous" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
+ </tpl:PaginationIf>
+
+ <tpl:PaginationIf start="0">
+ <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
+ </tpl:PaginationIf>
+ </tpl:Pagination>
+ </tpl:EntriesHeader>
+
+ <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
+ </tpl:Entries>
+
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
+ <link rel="EditURI" type="application/rsd+xml" title="RSD" href="{{tpl:BlogRSDURL}}" />
+ <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-home">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="main">
+ <div id="content">
+
+<!--
+ <div id="ptopbanner" class="post" land="fr" xml:lang="fr">
+ <h2 class="post-title" align="center">
+ <a href="http://www.afup.org/pages/forumphp2014/sessions.php#1172">
+ <img src="/public/forumphp2014.png" alt="Forum PHP 2014 Paris, j'y serais !" />
+ </a>
+ </h2>
+ </div>
+-->
+ <tpl:Entries>
+ <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}">
+ <!-- # New day date -->
+ <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
+
+ <h2 class="post-title"><a
+ href="{{tpl:EntryURL}}"><img src=/images/{{tpl:EntryLang}}.gif /> {{tpl:EntryTitle encode_html="1"}}</a></h2>
+
+ <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
+ {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
+ <tpl:EntryIf has_category="1">
+ - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a>
+ </tpl:EntryIf>
+ </p>
+
+ <tpl:EntryMetaData>
+ <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader>
+ <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li>
+ <tpl:MetaDataFooter></ul></tpl:MetaDataFooter>
+ </tpl:EntryMetaData>
+
+ <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
+ {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
+
+ <!-- # Entry with an excerpt -->
+ <tpl:EntryIf extended="1">
+ <div class="post-content">{{tpl:EntryExcerpt}}</div>
+ <p class="read-it"><a href="{{tpl:EntryURL}}"
+ title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
+ reading}}</a>...</p>
+ </tpl:EntryIf>
+
+ <!-- # Entry without excerpt -->
+ <tpl:EntryIf extended="0">
+ <div class="post-content">{{tpl:EntryContent}}</div>
+ </tpl:EntryIf>
+
+ <!-- # --BEHAVIOR-- publicEntryAfterContent -->
+ {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
+
+ <!-- # Number of comments, trackbacks and attachments -->
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ <p class="post-info-co">
+ </tpl:EntryIf>
+ <tpl:EntryIf show_comments="1">
+ <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
+ </tpl:EntryIf>
+ <tpl:EntryIf show_pings="1">
+ <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf has_attachment="1">
+ <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ </p>
+ </tpl:EntryIf>
+ </div>
+
+ <tpl:EntriesFooter>
+ <tpl:Pagination>
+ <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
+ {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
+ {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
+ <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
+ &#187;</a></tpl:PaginationIf></p>
+ </tpl:Pagination>
+ </tpl:EntriesFooter>
+ </tpl:Entries>
+ </div>
+</div> <!-- End #main -->
+
+<div id="sidebar">
+
+<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+<input type="hidden" name="cmd" value="_s-xclick">
+<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
+">
+<input align='right' type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
+<img align='right' alt="" border="0" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1">
+</form>
+
+ <div id="blognav">
+
+ <h2>Licence information</h2>
+
+ <ul><li>
+ This site content is licensed under a
+ <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">
+ Creative Commons Attribution-ShareAlike 4.0 International License</a>.
+ </li><li>
+ Le contenu de ce site est mis à disposition selon les termes de la
+ <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">
+ Licence Creative Commons Attribution - Partage dans les Mêmes Conditions 4.0 International</a>.
+ </li></ul>
+ <p><a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">
+ <img alt="Licence Creative Commons" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a></p>
+
+ {{tpl:Widgets type="nav"}}
+
+
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+
+ {{tpl:Widgets type="extra"}}
+<!--
+ <p><a href="http://www.amazon.com/wishlist/1AFH00IXFY6M0/ref=wl_web">
+ <img src="https://images-na.ssl-images-amazon.com/images/G/01/gifts/registries/wishlist/v2/web/wl-btn-129-b._V46776269_.gif"
+ width="129" alt="My Amazon.com Wish List" height="42" border="0" /></a></p>
+
+ <p><a href="http://www.amazon.fr/wishlist/33P6MW6KQC8GX">
+ <img src="http://blog.remirepo.net/public/Cadeaux/amazonfr.gif"
+ width="129" height="42" alt="Mes envies cadeaux chez Amazon.fr" border="0" /></a></p>
+-->
+ <p><a href='https://www.april.org/'><img src='https://www.april.org/files/association/documents/bannieres/membre-de-april.png' alt='Promouvoir et soutenir le logiciel libre'/></a></p>
+
+ <p align='center'><script id="fedora-banner" type="text/javascript" src="https://fedoraproject.org/static/js/release-counter-ext.js?lang=fr"></script></p>
+
+ </div> <!-- End #blogextra -->
+</div>
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/page.html b/themes/remi/tpl/page.html
new file mode 100644
index 0000000..4517879
--- /dev/null
+++ b/themes/remi/tpl/page.html
@@ -0,0 +1,284 @@
+<!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" xml:lang="{{tpl:EntryLang}}" lang="{{tpl:EntryLang}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
+
+ <title>{{tpl:EntryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}</title>
+ <meta name="description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" />
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:EntryDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" />
+ <meta name="dc.description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" />
+ <meta name="dc.creator" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:EntryLang}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:EntryDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
+
+ {{tpl:include src="_head.html"}}
+
+ <script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/post.js"></script>
+ <script type="text/javascript">
+ //<![CDATA[
+ var post_remember_str = '{{tpl:lang Remember me on this blog}}';
+ //]]>
+ </script>
+</head>
+
+<body class="dc-page">
+<div id="page">
+{{tpl:EntryPingData}}
+
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="main">
+ <div id="content">
+
+ <div id="p{{tpl:EntryID}}" class="post">
+ <h2 class="post-title"><img src=/images/{{tpl:EntryLang}}.gif /> {{tpl:EntryTitle encode_html="1"}}</h2>
+
+ <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
+ {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
+
+ <tpl:EntryIf extended="1">
+ <div class="post-excerpt">{{tpl:EntryExcerpt}}</div>
+ </tpl:EntryIf>
+ <div class="post-content">{{tpl:EntryContent}}</div>
+
+ <p class="page-info">{{tpl:lang Published on}} {{tpl:EntryDate}}
+ {{tpl:lang by}} {{tpl:EntryAuthorLink}}</p>
+
+ <!-- # --BEHAVIOR-- publicEntryAfterContent -->
+ {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
+ </div>
+
+ <!-- # Attachments -->
+ <tpl:Attachments>
+ <tpl:AttachmentsHeader>
+ <div id="attachments">
+ <h3>{{tpl:lang Attachments}}</h3>
+ <ul>
+ </tpl:AttachmentsHeader>
+ <li class="{{tpl:AttachmentType}}">
+ <tpl:AttachmentIf is_mp3="1">
+ {{tpl:include src="_mp3_player.html"/}} -
+ </tpl:AttachmentIf>
+ <tpl:AttachmentIf is_flv="1">
+ {{tpl:include src="_flv_player.html"/}}
+ </tpl:AttachmentIf>
+ <tpl:AttachmentIf is_flv="0">
+ <a href="{{tpl:AttachmentURL}}"
+ title="{{tpl:AttachmentFileName}} ({{tpl:AttachmentSize}})">{{tpl:AttachmentTitle}}</a>
+ </tpl:AttachmentIf>
+ </li>
+ <tpl:AttachmentsFooter>
+ </ul>
+ </div>
+ </tpl:AttachmentsFooter>
+ </tpl:Attachments>
+
+ <!-- # Comments -->
+ <tpl:EntryIf show_comments="1">
+ <tpl:Comments>
+ <tpl:CommentsHeader>
+ <div id="comments">
+ <h3>{{tpl:lang Comments}}</h3>
+ <dl>
+ </tpl:CommentsHeader>
+ <dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"><a
+ href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
+ {{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}}
+ {{tpl:lang by}} {{tpl:CommentAuthorLink}}</dt>
+
+ <dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
+ <!-- # --BEHAVIOR-- publicCommentBeforeContent -->
+ {{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
+
+ {{tpl:CommentContent}}
+
+ <!-- # --BEHAVIOR-- publicCommentAfterContent -->
+ {{tpl:SysBehavior behavior="publicCommentAfterContent"}}
+ </dd>
+ <tpl:CommentsFooter>
+ </dl>
+ </div>
+ </tpl:CommentsFooter>
+ </tpl:Comments>
+ </tpl:EntryIf>
+
+ <tpl:EntryIf comments_active="1">
+ <tpl:SysIfFormError>
+ <p class="error" id="pr">{{tpl:SysFormError}}</p>
+ </tpl:SysIfFormError>
+
+ <tpl:SysIfCommentPublished>
+ <p class="message" id="pr">{{tpl:lang Your comment has been published.}}</p>
+ </tpl:SysIfCommentPublished>
+
+ <tpl:SysIfCommentPending>
+ <p class="message" id="pr">{{tpl:lang Your comment has been submitted and
+ will be reviewed for publication.}}</p>
+ </tpl:SysIfCommentPending>
+
+ <!-- # Comment form -->
+ <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form">
+ <tpl:IfCommentPreview>
+ <div id="pr">
+ <h3>{{tpl:lang Your comment}}</h3>
+ <dl>
+ <dd class="comment-preview">{{tpl:CommentPreviewContent}}</dd>
+ </dl>
+ <p class="buttons"><input type="submit" class="submit" value="{{tpl:lang send}}" /></p>
+ </div>
+ </tpl:IfCommentPreview>
+
+ <h3>{{tpl:lang Add a comment}}</h3>
+ <fieldset>
+ <!-- # --BEHAVIOR-- publicCommentFormBeforeContent -->
+ {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}}
+
+ <p class="field"><label for="c_name">{{tpl:lang Name or nickname}}&nbsp;:</label>
+ <input name="c_name" id="c_name" type="text" size="30" maxlength="255"
+ value="{{tpl:CommentPreviewName encode_html="1"}}" />
+ </p>
+
+ <p class="field"><label for="c_mail">{{tpl:lang Email address}}&nbsp;:</label>
+ <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255"
+ value="{{tpl:CommentPreviewEmail encode_html="1"}}" />
+ </p>
+
+ <p class="field"><label for="c_site">{{tpl:lang Website}}
+ ({{tpl:lang optional}})&nbsp;:</label>
+ <input name="c_site" id="c_site" type="text" size="30" maxlength="255"
+ value="{{tpl:CommentPreviewSite encode_html="1"}}" />
+ </p>
+
+ <p style="display:none"><input name="f_mail" type="text" size="30"
+ maxlength="255" value="" /></p>
+
+ <p class="field"><label for="c_content">{{tpl:lang Comment}}&nbsp;:</label>
+ <textarea name="c_content" id="c_content" cols="35"
+ rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea>
+ </p>
+
+ <!-- # --BEHAVIOR-- publicCommentFormAfterContent -->
+ {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}}
+ </fieldset>
+
+ <p class="form-help">{{tpl:lang HTML code is displayed as text and web addresses are
+ automatically converted.}}</p>
+
+ <fieldset>
+ <p class="buttons"><input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" />
+ <tpl:IfCommentPreview><input type="submit" class="submit" value="{{tpl:lang send}}" /></tpl:IfCommentPreview></p>
+ </fieldset>
+ </form>
+ </tpl:EntryIf>
+
+ <!-- # Trackbacks -->
+ <tpl:EntryIf show_pings="1">
+ <div id="pings">
+ <h3>{{tpl:lang They posted on the same topic}}</h3>
+ <tpl:Pings>
+ <tpl:PingsHeader>
+ <dl>
+ </tpl:PingsHeader>
+ <dt id="c{{tpl:PingID}}" class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"><a href="#c{{tpl:PingID}}"
+ class="ping-number">{{tpl:PingOrderNumber}}.</a>
+ {{tpl:lang On}} {{tpl:PingDate}}, {{tpl:PingTime}}
+ {{tpl:lang by}} {{tpl:PingBlogName encode_html="1"}}</dt>
+
+ <dd class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}">
+ <!-- # --BEHAVIOR-- publicPingBeforeContent -->
+ {{tpl:SysBehavior behavior="publicPingBeforeContent"}}
+
+ <p><a href="{{tpl:PingAuthorURL}}"
+ {{tpl:PingNoFollow}}>{{tpl:PingTitle encode_html="1"}}</a></p>
+ {{tpl:PingContent}}
+
+ <!-- # --BEHAVIOR-- publicPingAfterContent -->
+ {{tpl:SysBehavior behavior="publicPingAfterContent"}}
+ </dd>
+ <tpl:PingsFooter>
+ </dl>
+ </tpl:PingsFooter>
+ </tpl:Pings>
+ </div>
+ </tpl:EntryIf>
+
+ <tpl:EntryIf pings_active="1">
+ <p id="ping-url">{{tpl:lang Trackback URL}}&nbsp;: {{tpl:EntryPingLink}}</p>
+ </tpl:EntryIf>
+
+ <tpl:EntryIf operator="or" comments_active="1" pings_active="1">
+ <p id="comments-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}"
+ title="{{tpl:lang This page's comments feed}}">{{tpl:lang This page's comments feed}}</a></p>
+ </tpl:EntryIf>
+ </div>
+</div> <!-- End #main -->
+
+<div id="sidebar">
+
+<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+<input type="hidden" name="cmd" value="_s-xclick">
+<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
+">
+<input align='right' type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
+<img align='right' alt="" border="0" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1">
+</form>
+ <div id="blognav">
+
+ {{tpl:Widgets type="nav"}}
+
+ <h2>Licence information</h2>
+
+ <ul><li>
+ This site content is licensed under a
+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
+ Creative Commons Attribution-ShareAlike 4.0 International License</a>.
+ </li><li>
+ Le contenu de ce site est mis à disposition selon les termes de la
+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
+ Licence Creative Commons Attribution - Partage dans les Mêmes Conditions 4.0 International</a>.
+ </li></ul>
+ <p><a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
+ <img alt="Licence Creative Commons" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a></p>
+
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+<!--
+ <p><a href="http://www.amazon.com/wishlist/1AFH00IXFY6M0/ref=wl_web">
+ <img src="https://images-na.ssl-images-amazon.com/images/G/01/gifts/registries/wishlist/v2/web/wl-btn-129-b._V46776269_.gif"
+ width="129" alt="My Amazon.com Wish List" height="42" border="0" /></a></p>
+
+ <p><a href="http://www.amazon.fr/wishlist/33P6MW6KQC8GX">
+ <img src="http://blog.remirepo.net/public/Cadeaux/amazonfr.gif"
+ width="129" height="42" alt="Mes envies cadeaux chez Amazon.fr" border="0" /></a></p>
+-->
+ </div> <!-- End #blogextra -->
+</div>
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/post.html b/themes/remi/tpl/post.html
new file mode 100644
index 0000000..74cfcc1
--- /dev/null
+++ b/themes/remi/tpl/post.html
@@ -0,0 +1,314 @@
+<!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" xml:lang="{{tpl:EntryLang}}" lang="{{tpl:EntryLang}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
+
+ <title>{{tpl:EntryTitle encode_html="1"}} - {{tpl:BlogName encode_html="1"}}</title>
+ <meta name="description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" />
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:EntryDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" content="{{tpl:EntryTitle encode_html="1"}}" />
+ <meta name="dc.description" lang="{{tpl:EntryLang}}" content="{{tpl:EntryContent full="1" encode_html="1" remove_html="1" cut_string="180"}}" />
+ <meta name="dc.creator" content="{{tpl:EntryAuthorCommonName encode_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:EntryLang}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:EntryDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+
+ <tpl:EntryNext><link rel="next" href="{{tpl:EntryURL}}"
+ title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryNext>
+
+ <tpl:EntryPrevious><link rel="previous" href="{{tpl:EntryURL}}"
+ title="{{tpl:EntryTitle encode_html="1"}}" /></tpl:EntryPrevious>
+
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
+
+ {{tpl:include src="_head.html"}}
+
+ <script type="text/javascript" src="{{tpl:BlogThemeURL}}/../default/js/post.js"></script>
+ <script type="text/javascript">
+ //<![CDATA[
+ var post_remember_str = '{{tpl:lang Remember me on this blog}}';
+ //]]>
+ </script>
+</head>
+
+<body class="dc-post">
+<div id="page">
+{{tpl:EntryPingData}}
+
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="main">
+ <div id="content">
+
+ <p id="navlinks">
+ <tpl:EntryPrevious><a href="{{tpl:EntryURL}}"
+ title="{{tpl:EntryTitle encode_html="1"}}" class="prev">&#171; ({{tpl:EntryLang}}) {{tpl:EntryTitle encode_html="1"
+ cut_string="50"}}</a></tpl:EntryPrevious>
+ <tpl:EntryNext> <span>-</span> <a href="{{tpl:EntryURL}}"
+ title="{{tpl:EntryTitle encode_html="1"}}" class="next">({{tpl:EntryLang}}) {{tpl:EntryTitle encode_html="1"
+ cut_string="50"}} &#187;</a></tpl:EntryNext>
+ </p>
+
+ <div id="p{{tpl:EntryID}}" class="post">
+ <h2 class="post-title"><img src=/images/{{tpl:EntryLang}}.gif /> {{tpl:EntryTitle encode_html="1"}}
+ <!-- Place this tag where you want the +1 button to render -->
+ <div style="display: inline-block; margin-left: 1em"><div class="g-plusone" data-size="medium">+</div></div>
+ </h2>
+
+ <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
+ {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
+ <tpl:EntryIf has_category="1">
+ - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a>
+ </tpl:EntryIf>
+ - <a href="{{tpl:EntryURL}}">{{tpl:lang Permalink}}</a>
+ </p>
+
+ <tpl:EntryMetaData>
+ <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader>
+ <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li>
+ <tpl:MetaDataFooter></ul></tpl:MetaDataFooter>
+ </tpl:EntryMetaData>
+
+ <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
+ {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
+
+ <!-- # Entry with an excerpt -->
+ <tpl:EntryIf extended="1">
+ <div class="post-excerpt">{{tpl:EntryExcerpt}}</div>
+ </tpl:EntryIf>
+
+ <div class="post-content">{{tpl:EntryContent}}</div>
+
+ <!-- # --BEHAVIOR-- publicEntryAfterContent -->
+ {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
+ </div>
+
+ <!-- # Attachments -->
+ <tpl:Attachments>
+ <tpl:AttachmentsHeader>
+ <div id="attachments">
+ <h3>{{tpl:lang Attachments}}</h3>
+ <ul>
+ </tpl:AttachmentsHeader>
+ <li class="{{tpl:AttachmentType}}">
+ <tpl:AttachmentIf is_mp3="1">
+ {{tpl:include src="_mp3_player.html"/}} -
+ </tpl:AttachmentIf>
+ <tpl:AttachmentIf is_flv="1">
+ {{tpl:include src="_flv_player.html"/}}
+ </tpl:AttachmentIf>
+ <tpl:AttachmentIf is_flv="0">
+ <a href="{{tpl:AttachmentURL}}"
+ title="{{tpl:AttachmentFileName}} ({{tpl:AttachmentSize}})">{{tpl:AttachmentTitle}}</a>
+ </tpl:AttachmentIf>
+ </li>
+ <tpl:AttachmentsFooter>
+ </ul>
+ </div>
+ </tpl:AttachmentsFooter>
+ </tpl:Attachments>
+
+ <!-- # Comments -->
+ <tpl:EntryIf show_comments="1">
+ <tpl:Comments>
+ <tpl:CommentsHeader>
+ <div id="comments">
+ <h3>{{tpl:lang Comments}}</h3>
+ <dl>
+ </tpl:CommentsHeader>
+ <dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}"><a
+ href="#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
+ {{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}}
+ {{tpl:lang by}} {{tpl:CommentAuthorLink}}</dt>
+
+ <dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
+ <!-- # --BEHAVIOR-- publicCommentBeforeContent -->
+ {{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
+
+ {{tpl:CommentContent}}
+
+ <!-- # --BEHAVIOR-- publicCommentAfterContent -->
+ {{tpl:SysBehavior behavior="publicCommentAfterContent"}}
+ </dd>
+ <tpl:CommentsFooter>
+ </dl>
+ </div>
+ </tpl:CommentsFooter>
+ </tpl:Comments>
+ </tpl:EntryIf>
+
+ <tpl:EntryIf comments_active="1">
+ <tpl:SysIfFormError>
+ <p class="error" id="pr">{{tpl:SysFormError}}</p>
+ </tpl:SysIfFormError>
+
+ <tpl:SysIfCommentPublished>
+ <p class="message" id="pr">{{tpl:lang Your comment has been published.}}</p>
+ </tpl:SysIfCommentPublished>
+
+ <tpl:SysIfCommentPending>
+ <p class="message" id="pr">{{tpl:lang Your comment has been submitted and
+ will be reviewed for publication.}}</p>
+ </tpl:SysIfCommentPending>
+
+ <!-- # Comment form -->
+ <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form">
+ <tpl:IfCommentPreview>
+ <div id="pr">
+ <h3>{{tpl:lang Your comment}}</h3>
+ <dl>
+ <dd class="comment-preview">{{tpl:CommentPreviewContent}}</dd>
+ </dl>
+ <p class="buttons"><input type="submit" class="submit" value="{{tpl:lang send}}" /></p>
+ </div>
+ </tpl:IfCommentPreview>
+
+ <h3>{{tpl:lang Add a comment}}</h3>
+ <fieldset>
+ <!-- # --BEHAVIOR-- publicCommentFormBeforeContent -->
+ {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}}
+
+ <p class="field"><label for="c_name">{{tpl:lang Name or nickname}}&nbsp;:</label>
+ <input name="c_name" id="c_name" type="text" size="30" maxlength="255"
+ value="{{tpl:CommentPreviewName encode_html="1"}}" />
+ </p>
+
+ <p class="field"><label for="c_mail">{{tpl:lang Email address}}&nbsp;:</label>
+ <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255"
+ value="{{tpl:CommentPreviewEmail encode_html="1"}}" />
+ </p>
+
+ <p class="field"><label for="c_site">{{tpl:lang Website}}
+ ({{tpl:lang optional}})&nbsp;:</label>
+ <input name="c_site" id="c_site" type="text" size="30" maxlength="255"
+ value="{{tpl:CommentPreviewSite encode_html="1"}}" />
+ </p>
+
+ <p style="display:none"><input name="f_mail" type="text" size="30"
+ maxlength="255" value="" /></p>
+
+ <p class="field"><label for="c_content">{{tpl:lang Comment}}&nbsp;:</label>
+ <textarea name="c_content" id="c_content" cols="35"
+ rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea>
+ </p>
+ <p class="form-help">{{tpl:lang HTML code is displayed as text and web addresses are
+ automatically converted.}}</p>
+
+ <!-- # --BEHAVIOR-- publicCommentFormAfterContent -->
+ {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}}
+ </fieldset>
+
+ <fieldset>
+ <p class="buttons"><input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" />
+ <tpl:IfCommentPreview><input type="submit" class="submit" value="{{tpl:lang send}}" /></tpl:IfCommentPreview></p>
+ </fieldset>
+ </form>
+ </tpl:EntryIf>
+
+ <!-- # Trackbacks -->
+ <tpl:EntryIf show_pings="1">
+ <div id="pings">
+ <h3>{{tpl:lang They posted on the same topic}}</h3>
+ <tpl:Pings>
+ <tpl:PingsHeader>
+ <dl>
+ </tpl:PingsHeader>
+ <dt id="c{{tpl:PingID}}" class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}"><a href="#c{{tpl:PingID}}"
+ class="ping-number">{{tpl:PingOrderNumber}}.</a>
+ {{tpl:lang On}} {{tpl:PingDate}}, {{tpl:PingTime}}
+ {{tpl:lang by}} {{tpl:PingBlogName encode_html="1"}}</dt>
+
+ <dd class="{{tpl:PingIfOdd}} {{tpl:PingIfFirst}}">
+ <!-- # --BEHAVIOR-- publicPingBeforeContent -->
+ {{tpl:SysBehavior behavior="publicPingBeforeContent"}}
+
+ <p><a href="{{tpl:PingAuthorURL}}"
+ {{tpl:PingNoFollow}}>{{tpl:PingTitle encode_html="1"}}</a></p>
+ {{tpl:PingContent}}
+
+ <!-- # --BEHAVIOR-- publicPingAfterContent -->
+ {{tpl:SysBehavior behavior="publicPingAfterContent"}}
+ </dd>
+ <tpl:PingsFooter>
+ </dl>
+ </tpl:PingsFooter>
+ </tpl:Pings>
+ </div>
+ </tpl:EntryIf>
+
+ <tpl:EntryIf pings_active="1">
+ <p id="ping-url">{{tpl:lang Trackback URL}}&nbsp;: {{tpl:EntryPingLink}}</p>
+ </tpl:EntryIf>
+
+ <tpl:EntryIf operator="or" comments_active="1" pings_active="1">
+ <p id="comments-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}"
+ title="{{tpl:lang This post's comments Atom feed}}">{{tpl:lang This post's comments feed}}</a></p>
+ </tpl:EntryIf>
+ </div>
+</div> <!-- End #main -->
+
+<div id="sidebar">
+
+<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+<input type="hidden" name="cmd" value="_s-xclick">
+<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
+">
+<input align='right' type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
+<img align='right' alt="" border="0" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1">
+</form>
+ <div id="blognav">
+
+ {{tpl:Widgets type="nav"}}
+
+ <h2>Licence information</h2>
+
+ <ul><li>
+ This site content is licensed under a
+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
+ Creative Commons Attribution-ShareAlike 4.0 International License</a>.
+ </li><li>
+ Le contenu de ce site est mis à disposition selon les termes de la
+ <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
+ Licence Creative Commons Attribution - Partage dans les Mêmes Conditions 4.0 International</a>.
+ </li></ul>
+ <p><a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">
+ <img alt="Licence Creative Commons" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a></p>
+
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+
+<!-- Place this render call where appropriate -->
+<script type="text/javascript">
+ (function() {
+ var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
+ po.src = 'https://apis.google.com/js/plusone.js';
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
+ })();
+</script>
+</body>
+</html>
diff --git a/themes/remi/tpl/search.html b/themes/remi/tpl/search.html
new file mode 100644
index 0000000..0c4ea6c
--- /dev/null
+++ b/themes/remi/tpl/search.html
@@ -0,0 +1,154 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" />
+
+ <title>{{tpl:lang Search}} - {{tpl:SysSearchString encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title>
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Search}} - {{tpl:SysSearchString encode_html="1"}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+
+ <tpl:Entries no_content="1">
+ <tpl:EntriesHeader>
+ <tpl:Pagination>
+ <tpl:PaginationIf end="0">
+ <link rel="previous" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
+ </tpl:PaginationIf>
+
+ <tpl:PaginationIf start="0">
+ <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
+ </tpl:PaginationIf>
+ </tpl:Pagination>
+ </tpl:EntriesHeader>
+
+ <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
+ </tpl:Entries>
+
+ <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-search">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="main">
+ <div id="content">
+
+ <div id="content-info">
+ <h2>{{tpl:lang Search}}</h2>
+ <tpl:SysIf search_count="==0">
+ <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned no result."}}</p>
+ </tpl:SysIf>
+ <tpl:SysIf search_count="==1">
+ <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> result."}}</p>
+ </tpl:SysIf>
+ <tpl:SysIf search_count="&gt;1">
+ <p>{{tpl:SysSearchString encode_html="1" string="Your search for <em>%1$s</em> returned <strong>%2$s</strong> results."}}</p>
+ </tpl:SysIf>
+ </div>
+
+ <tpl:Entries>
+ <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}">
+ <!-- # New day date -->
+ <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
+
+ <h2 class="post-title"><a
+ href="{{tpl:EntryURL}}"><img src=/images/{{tpl:EntryLang}}.gif /> {{tpl:EntryTitle encode_html="1"}}</a></h2>
+
+ <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
+ {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
+ <tpl:EntryIf has_category="1">
+ - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a>
+ </tpl:EntryIf>
+ </p>
+
+ <tpl:EntryMetaData>
+ <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader>
+ <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li>
+ <tpl:MetaDataFooter></ul></tpl:MetaDataFooter>
+ </tpl:EntryMetaData>
+
+ <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
+ {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
+
+ <!-- # Entry with an excerpt -->
+ <tpl:EntryIf extended="1">
+ <div class="post-content">{{tpl:EntryExcerpt}}</div>
+ <p class="read-it"><a href="{{tpl:EntryURL}}"
+ title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
+ reading}}</a>...</p>
+ </tpl:EntryIf>
+
+ <!-- # Entry without excerpt -->
+ <tpl:EntryIf extended="0">
+ <div class="post-content">{{tpl:EntryContent}}</div>
+ </tpl:EntryIf>
+
+ <!-- # --BEHAVIOR-- publicEntryAfterContent -->
+ {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
+
+ <!-- # Number of comments, trackbacks and attachments -->
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ <p class="post-info-co">
+ </tpl:EntryIf>
+ <tpl:EntryIf show_comments="1">
+ <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
+ </tpl:EntryIf>
+ <tpl:EntryIf show_pings="1">
+ <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf has_attachment="1">
+ <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ </p>
+ </tpl:EntryIf>
+ </div>
+
+ <tpl:EntriesFooter>
+ <tpl:Pagination>
+ <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
+ {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
+ {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
+ <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
+ &#187;</a></tpl:PaginationIf></p>
+ </tpl:Pagination>
+ </tpl:EntriesFooter>
+ </tpl:Entries>
+ </div>
+</div> <!-- End #main -->
+
+<div id="sidebar">
+ <div id="blognav">
+ {{tpl:Widgets type="nav"}}
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/tag.html b/themes/remi/tpl/tag.html
new file mode 100644
index 0000000..d5a06f7
--- /dev/null
+++ b/themes/remi/tpl/tag.html
@@ -0,0 +1,163 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
+
+ <title>{{tpl:lang Tag}} - {{tpl:MetaID}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf></title>
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Tag}} - {{tpl:MetaID}} - {{tpl:BlogName encode_html="1"}}<tpl:PaginationIf start="0"> - {{tpl:lang page}} {{tpl:PaginationCurrent}}</tpl:PaginationIf>" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+
+ <tpl:Entries no_content="1">
+ <tpl:EntriesHeader>
+ <tpl:Pagination>
+ <tpl:PaginationIf end="0">
+ <link rel="previous" title="{{tpl:lang previous entries}}" href="{{tpl:PaginationURL offset="1"}}" />
+ </tpl:PaginationIf>
+
+ <tpl:PaginationIf start="0">
+ <link rel="next" title="{{tpl:lang next entries}}" href="{{tpl:PaginationURL offset="-1"}}" />
+ </tpl:PaginationIf>
+ </tpl:Pagination>
+ </tpl:EntriesHeader>
+
+ <link rel="chapter" href="{{tpl:EntryURL}}" title="{{tpl:EntryTitle encode_html="1"}}" />
+ </tpl:Entries>
+
+ <link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:TagFeedURL type="atom"}}" />
+ <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-tag">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="main">
+ <div id="content">
+
+ <div id="content-info">
+ <h2>{{tpl:lang Tag}} - {{tpl:MetaID}}</h2>
+
+ <p><a type="application/atom+xml" href="{{tpl:TagFeedURL type="atom"}}"
+ title="{{tpl:lang This tag's entries Atom feed}}" class="feed">{{tpl:lang Entries feed}}</a>
+
+ <tpl:SysIf operator="or" comments_active="1" pings_active="1">
+ - <a type="application/atom+xml" href="{{tpl:TagFeedURL type="atom"}}/comments"
+ title="{{tpl:lang This tag's comments Atom feed}}" class="feed">{{tpl:lang Comments feed}}</a>
+ </tpl:SysIf>
+ </p>
+ </div>
+
+ <tpl:Entries>
+ <div id="p{{tpl:EntryID}}" class="post {{tpl:EntryIfOdd}} {{tpl:EntryIfFirst}}" lang="{{tpl:EntryLang}}" xml:lang="{{tpl:EntryLang}}">
+ <!-- # New day date -->
+ <tpl:DateHeader><p class="day-date">{{tpl:EntryDate}}</p></tpl:DateHeader>
+
+ <h2 class="post-title"><a
+ href="{{tpl:EntryURL}}"><img src=/images/{{tpl:EntryLang}}.gif /> {{tpl:EntryTitle encode_html="1"}}</a></h2>
+
+ <p class="post-info">{{tpl:lang By}} {{tpl:EntryAuthorLink}}
+ {{tpl:lang on}} {{tpl:EntryDate}}, {{tpl:EntryTime}}
+ <tpl:EntryIf has_category="1">
+ - <a href="{{tpl:EntryCategoryURL}}">{{tpl:EntryCategory encode_html="1"}}</a>
+ </tpl:EntryIf>
+ </p>
+
+ <tpl:EntryMetaData>
+ <tpl:MetaDataHeader><ul class="post-tags"></tpl:MetaDataHeader>
+ <li><a href="{{tpl:MetaURL}}">{{tpl:MetaID}}</a></li>
+ <tpl:MetaDataFooter></ul></tpl:MetaDataFooter>
+ </tpl:EntryMetaData>
+
+ <!-- # --BEHAVIOR-- publicEntryBeforeContent -->
+ {{tpl:SysBehavior behavior="publicEntryBeforeContent"}}
+
+ <!-- # Entry with an excerpt -->
+ <tpl:EntryIf extended="1">
+ <div class="post-content">{{tpl:EntryExcerpt}}</div>
+ <p class="read-it"><a href="{{tpl:EntryURL}}"
+ title="{{tpl:lang Continue reading}} {{tpl:EntryTitle encode_html="1"}}">{{tpl:lang Continue
+ reading}}</a>...</p>
+ </tpl:EntryIf>
+
+ <!-- # Entry without excerpt -->
+ <tpl:EntryIf extended="0">
+ <div class="post-content">{{tpl:EntryContent}}</div>
+ </tpl:EntryIf>
+
+ <!-- # --BEHAVIOR-- publicEntryAfterContent -->
+ {{tpl:SysBehavior behavior="publicEntryAfterContent"}}
+
+ <!-- # Number of comments, trackbacks and attachments -->
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ <p class="post-info-co">
+ </tpl:EntryIf>
+ <tpl:EntryIf show_comments="1">
+ <a href="{{tpl:EntryURL}}#comments" class="comment_count">{{tpl:EntryCommentCount}}</a>
+ </tpl:EntryIf>
+ <tpl:EntryIf show_pings="1">
+ <a href="{{tpl:EntryURL}}#pings" class="ping_count">{{tpl:EntryPingCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf has_attachment="1">
+ <a href="{{tpl:EntryURL}}#attachments" class="attach_count">{{tpl:EntryAttachmentCount}}</a></tpl:EntryIf>
+ <tpl:EntryIf operator="or" show_comments="1" show_pings="1" has_attachment="1">
+ </p>
+ </tpl:EntryIf>
+ </div>
+
+ <tpl:EntriesFooter>
+ <tpl:Pagination>
+ <p class="pagination"><tpl:PaginationIf end="0"><a href="{{tpl:PaginationURL offset="+1"}}" class="prev">&#171;
+ {{tpl:lang previous entries}}</a> - </tpl:PaginationIf>
+ {{tpl:lang page}} {{tpl:PaginationCurrent}} {{tpl:lang of}} {{tpl:PaginationCounter}}
+ <tpl:PaginationIf start="0"> - <a href="{{tpl:PaginationURL offset="-1"}}" class="next">{{tpl:lang next entries}}
+ &#187;</a></tpl:PaginationIf></p>
+ </tpl:Pagination>
+ </tpl:EntriesFooter>
+ </tpl:Entries>
+ </div>
+</div> <!-- End #main -->
+
+<div id="sidebar">
+
+<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+<input type="hidden" name="cmd" value="_s-xclick">
+<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
+">
+<input align='right' type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
+<img align='right' alt="" border="0" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1">
+</form>
+ <div id="blognav">
+ {{tpl:Widgets type="nav"}}
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>
diff --git a/themes/remi/tpl/tags.html b/themes/remi/tpl/tags.html
new file mode 100644
index 0000000..34150b1
--- /dev/null
+++ b/themes/remi/tpl/tags.html
@@ -0,0 +1,79 @@
+<!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" xml:lang="{{tpl:BlogLanguage}}" lang="{{tpl:BlogLanguage}}">
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <meta name="MSSmartTagsPreventParsing" content="TRUE" />
+ <meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX"}}" />
+
+ <title>{{tpl:lang Tags}} - {{tpl:BlogName encode_html="1"}}</title>
+ <meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+
+ <link rel="schema.dc" href="http://purl.org/dc/elements/1.1/" />
+ <meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang Tags}} - {{tpl:BlogName encode_html="1"}}" />
+ <meta name="dc.language" content="{{tpl:BlogLanguage}}" />
+ <meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
+ <meta name="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
+ <meta name="dc.date" scheme="W3CDTF" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
+ <meta name="dc.type" content="text" />
+ <meta name="dc.format" content="text/html" />
+
+ <link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
+ <link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
+
+ <link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
+
+ {{tpl:include src="_head.html"}}
+</head>
+
+<body class="dc-tags">
+<div id="page">
+{{tpl:include src="_top.html"}}
+
+<div id="wrapper">
+
+<div id="main">
+ <div id="content">
+
+ <div id="content-info">
+ <h2>{{tpl:lang Tags}}</h2>
+ </div>
+
+ <div class="content-inner">
+ <ul class="tags">
+ <tpl:MetaData type="tag">
+ <li><a href="{{tpl:MetaURL}}" class="tag{{tpl:MetaRoundPercent}}">{{tpl:MetaID}}</a></li>
+ </tpl:MetaData>
+ </ul>
+ </div>
+
+ </div>
+</div> <!-- End #main -->
+
+<div id="sidebar">
+
+<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
+<input type="hidden" name="cmd" value="_s-xclick">
+<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7-----
+">
+<input align='right' type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
+<img align='right' alt="" border="0" src="https://www.paypal.com/fr_FR/i/scr/pixel.gif" width="1" height="1">
+</form>
+ <div id="blognav">
+ {{tpl:Widgets type="nav"}}
+ </div> <!-- End #blognav -->
+
+ <div id="blogextra">
+ {{tpl:Widgets type="extra"}}
+ </div> <!-- End #blogextra -->
+</div>
+
+</div> <!-- End #wrapper -->
+
+<hr style="clear:both"/>
+</div> <!-- End #page -->
+{{tpl:include src="_footer.html"}}
+</body>
+</html>