0.3.1
voir changelog
This commit is contained in:
parent
98df6c99bf
commit
c692e2b00b
@ -1,3 +1,8 @@
|
||||
comListe 0.3.1 - 06-06-2015 - Pierre Van Glabeke
|
||||
===========================================================
|
||||
* modifs html5
|
||||
* mise à jour adapt-themes
|
||||
|
||||
comListe 0.3 - 03-03-2015 - Pierre Van Glabeke
|
||||
===========================================================
|
||||
* correction localisation
|
||||
|
@ -16,7 +16,7 @@ $this->registerModule(
|
||||
/* Name */ "ComListe",
|
||||
/* Description*/ "Display a list of all comments and trackbacks of a blog in a public page",
|
||||
/* Author */ "Benoit de Marne, Pierre Van Glabeke",
|
||||
/* Version */ '0.3',
|
||||
/* Version */ '0.3.1',
|
||||
/* Properties */
|
||||
array(
|
||||
'permissions' => 'admin',
|
||||
|
@ -3,14 +3,12 @@
|
||||
<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:ComListePageTitle encode_html="1"}} - {{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:ComListePageTitle}} - {{tpl:BlogName encode_html="1"}}" />
|
||||
<meta name="dc.language" content="{{tpl:BlogLanguage}}" />
|
||||
<meta name="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
|
||||
@ -18,7 +16,6 @@
|
||||
<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}}" />
|
||||
|
||||
{{tpl:include src="_head.html"}}
|
||||
@ -40,37 +37,34 @@
|
||||
<tpl:ComListeCommentsEntries>
|
||||
<tpl:CommentsHeader>
|
||||
<dl>
|
||||
</tpl:CommentsHeader>
|
||||
<dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
|
||||
{{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}}
|
||||
{{tpl:lang by}} {{tpl:CommentAuthorLink}}
|
||||
<br />({{tpl:lang source}}: {{tpl:CommentEntryTitle}})
|
||||
</dt>
|
||||
<dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<!-- # --BEHAVIOR-- publicCommentBeforeContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
|
||||
{{tpl:CommentContent}}
|
||||
<a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}">{{tpl:ComListeOpenPostTitle}} ...</a>
|
||||
<br /><br />
|
||||
<!-- # --BEHAVIOR-- publicCommentAfterContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentAfterContent"}}
|
||||
</dd>
|
||||
</tpl:CommentsHeader>
|
||||
<dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
|
||||
{{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}},
|
||||
{{tpl:lang by}} {{tpl:CommentAuthorLink}}
|
||||
<br />({{tpl:lang source:}} <a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}">{{tpl:CommentEntryTitle}}</a>)
|
||||
</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>
|
||||
</tpl:CommentsFooter>
|
||||
</tpl:ComListeCommentsEntries>
|
||||
|
||||
</div> <!-- End #post -->
|
||||
<p class="pagination">
|
||||
{{tpl:ComListePaginationLinks}}
|
||||
</p>
|
||||
|
||||
<p class="pagination">
|
||||
{{tpl:ComListePaginationLinks}}
|
||||
</p>
|
||||
<p class="post-info">
|
||||
{{tpl:lang Number of comments per page}} :: {{tpl:ComListeNbCommentsPerPage}}<br />
|
||||
{{tpl:lang Current page}} :: {{tpl:ComListeCurrentPage}}
|
||||
</p>
|
||||
|
||||
<p class="post-info">
|
||||
{{tpl:lang Number of comments per page:}} {{tpl:ComListeNbCommentsPerPage}}<br />
|
||||
{{tpl:lang Number of comments:}} {{tpl:ComListeNbComments}}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@ -85,7 +79,6 @@
|
||||
|
||||
{{tpl:Widgets type="nav"}}
|
||||
|
||||
|
||||
<div class="categories-btm"></div>
|
||||
|
||||
<div class="side-meta"></div>
|
||||
@ -96,5 +89,4 @@
|
||||
{{tpl:include src="_footer.html"}}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</html>
|
@ -1,103 +0,0 @@
|
||||
<!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:ComListePageTitle encode_html="1"}} - {{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:ComListePageTitle}} - {{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}}" />
|
||||
|
||||
{{tpl:include src="_head.html"}}
|
||||
</head>
|
||||
|
||||
<body class="dc-comliste">
|
||||
<div id="page">
|
||||
{{tpl:include src="_top.html"}}
|
||||
|
||||
<div id="wrapper">
|
||||
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
|
||||
<div class="grid">
|
||||
<!-- # lead -->
|
||||
<div id="lead" class="grid-l">
|
||||
<h2>{{tpl:ComListePageTitle encode_html="1"}}</h2>
|
||||
</div>
|
||||
|
||||
<!-- # meta -->
|
||||
<div id="meta" class="grid-s">
|
||||
{{tpl:include src="inc_meta.html"}}
|
||||
</div>
|
||||
|
||||
<div class="grid-l">
|
||||
|
||||
<div class="post">
|
||||
|
||||
<tpl:ComListeCommentsEntries>
|
||||
<tpl:CommentsHeader>
|
||||
<dl>
|
||||
</tpl:CommentsHeader>
|
||||
<dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
|
||||
{{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}}
|
||||
{{tpl:lang by}} {{tpl:CommentAuthorLink}}
|
||||
<br />({{tpl:lang source}}: {{tpl:CommentEntryTitle}})
|
||||
</dt>
|
||||
<dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<!-- # --BEHAVIOR-- publicCommentBeforeContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
|
||||
{{tpl:CommentContent}}
|
||||
<a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}">{{tpl:ComListeOpenPostTitle}} ...</a>
|
||||
<br /><br />
|
||||
<!-- # --BEHAVIOR-- publicCommentAfterContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentAfterContent"}}
|
||||
</dd>
|
||||
<tpl:CommentsFooter>
|
||||
</dl>
|
||||
</tpl:CommentsFooter>
|
||||
</tpl:ComListeCommentsEntries>
|
||||
|
||||
|
||||
</div> <!-- End #post -->
|
||||
<p class="pagination">
|
||||
{{tpl:ComListePaginationLinks}}
|
||||
</p>
|
||||
<p class="post-info">
|
||||
{{tpl:lang Number of comments per page}} :: {{tpl:ComListeNbCommentsPerPage}}<br />
|
||||
{{tpl:lang Current page}} :: {{tpl:ComListeCurrentPage}}
|
||||
</p>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- # extra -->
|
||||
<div id="extra" class="grid-s widgets">
|
||||
{{tpl:include src="inc_extra.html"}}
|
||||
{{tpl:Widgets type="nav"}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div> <!-- End #wrapper -->
|
||||
|
||||
{{tpl:include src="_footer.html"}}
|
||||
</div> <!-- End #page -->
|
||||
</body>
|
||||
</html>
|
91
adapt-themes/Noviny2.comListe.html
Normal file
91
adapt-themes/Noviny2.comListe.html
Normal file
@ -0,0 +1,91 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{tpl:BlogLanguage}}">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" />
|
||||
|
||||
<title>{{tpl:ComListePageTitle 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" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
|
||||
|
||||
<meta name="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:ComListePageTitle}} - {{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" 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:include src="_head.html"}}
|
||||
</head>
|
||||
|
||||
<body class="dc-comliste">
|
||||
<div id="page">
|
||||
{{tpl:include src="_top.html"}}
|
||||
|
||||
<div id="wrapper">
|
||||
|
||||
<div id="main" role="main">
|
||||
<div id="content">
|
||||
<div id="content-info">
|
||||
<h2>{{tpl:ComListePageTitle encode_html="1"}}</h2>
|
||||
</div>
|
||||
<div class="content-inner">
|
||||
<div id="comments">
|
||||
<tpl:ComListeCommentsEntries>
|
||||
<tpl:CommentsHeader>
|
||||
<dl>
|
||||
</tpl:CommentsHeader>
|
||||
<dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<span class="comment-date"><span class="date-d">{{tpl:CommentDate format="%e"}}</span>
|
||||
<span class="date-m">{{tpl:CommentDate format="%b"}}</span>
|
||||
<span class="date-y">{{tpl:CommentDate format="%Y"}}</span>
|
||||
<span class="date-h"><a href="#c{{tpl:CommentID}}">{{tpl:CommentDate format="%H:%M"}}</a></span>
|
||||
</span>
|
||||
</dt>
|
||||
|
||||
<dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<!-- # --BEHAVIOR-- publicCommentBeforeContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
|
||||
{{tpl:CommentContent}}
|
||||
<!-- # --BEHAVIOR-- publicCommentAfterContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentAfterContent"}}
|
||||
<cite>{{tpl:CommentAuthorLink}}</cite>
|
||||
({{tpl:lang source:}} <a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}">{{tpl:CommentEntryTitle}}</a>)
|
||||
</dd>
|
||||
<tpl:CommentsFooter>
|
||||
</dl>
|
||||
</tpl:CommentsFooter>
|
||||
</tpl:ComListeCommentsEntries>
|
||||
</div>
|
||||
</div>
|
||||
<p class="pagination">
|
||||
{{tpl:ComListePaginationLinks}}
|
||||
</p>
|
||||
|
||||
<p class="post-info">
|
||||
{{tpl:lang Number of comments per page:}} {{tpl:ComListeNbCommentsPerPage}}<br />
|
||||
{{tpl:lang Number of comments:}} {{tpl:ComListeNbComments}}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="sidebar" role="complementary">
|
||||
<div id="blognav">
|
||||
{{tpl:Widgets type="nav"}}
|
||||
</div> <!-- End #blognav -->
|
||||
|
||||
<div id="blogextra">
|
||||
{{tpl:Widgets type="extra"}}
|
||||
</div> <!-- End #blogextra -->
|
||||
</div>
|
||||
|
||||
</div> <!-- End #wrapper -->
|
||||
|
||||
{{tpl:include src="_footer.html"}}
|
||||
</div> <!-- End #page -->
|
||||
</body>
|
||||
</html>
|
@ -1,83 +0,0 @@
|
||||
<!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:ComListePageTitle encode_html="1"}} - {{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:ComListePageTitle}} - {{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}}" />
|
||||
|
||||
{{tpl:include src="_head.html"}}
|
||||
</head>
|
||||
|
||||
<body class="dc-comliste">
|
||||
<div id="body">
|
||||
{{tpl:include src="_top.html"}}
|
||||
|
||||
<div id="page" class="{{tpl:Freshy2LayoutClass}}">
|
||||
<div class="container">
|
||||
<div id="frame">
|
||||
<div id="content">
|
||||
|
||||
<h2>{{tpl:ComListePageTitle encode_html="1"}}</h2>
|
||||
<div class="post">
|
||||
|
||||
<tpl:ComListeCommentsEntries>
|
||||
<tpl:CommentsHeader>
|
||||
<dl>
|
||||
</tpl:CommentsHeader>
|
||||
<dt id="c{{tpl:CommentID}}" class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}" class="comment-number">{{tpl:CommentOrderNumber}}.</a>
|
||||
{{tpl:lang On}} {{tpl:CommentDate}}, {{tpl:CommentTime}}
|
||||
{{tpl:lang by}} {{tpl:CommentAuthorLink}}
|
||||
<br />({{tpl:lang source}}: {{tpl:CommentEntryTitle}})
|
||||
</dt>
|
||||
<dd class="{{tpl:CommentIfMe}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}">
|
||||
<!-- # --BEHAVIOR-- publicCommentBeforeContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
|
||||
{{tpl:CommentContent}}
|
||||
<a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}">{{tpl:ComListeOpenPostTitle}} ...</a>
|
||||
<br /><br />
|
||||
<!-- # --BEHAVIOR-- publicCommentAfterContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentAfterContent"}}
|
||||
</dd>
|
||||
<tpl:CommentsFooter>
|
||||
</dl>
|
||||
</tpl:CommentsFooter>
|
||||
</tpl:ComListeCommentsEntries>
|
||||
|
||||
</div> <!-- End #post -->
|
||||
|
||||
<p class="pagination">
|
||||
{{tpl:ComListePaginationLinks}}
|
||||
</p>
|
||||
<p class="post-info">
|
||||
{{tpl:lang Number of comments per page}} :: {{tpl:ComListeNbCommentsPerPage}}<br />
|
||||
{{tpl:lang Current page}} :: {{tpl:ComListeCurrentPage}}
|
||||
</p>
|
||||
|
||||
</div> <!-- End #content -->
|
||||
|
||||
{{tpl:include src="_sidebar.html"}}
|
||||
</div> <!-- End #frame -->
|
||||
</div> <!-- End #container -->
|
||||
</div> <!-- End #page -->
|
||||
|
||||
{{tpl:include src="_footer.html"}}
|
||||
</div> <!-- End #body -->
|
||||
</body>
|
||||
</html>
|
75
adapt-themes/freshy2-1.8.comListe.html
Normal file
75
adapt-themes/freshy2-1.8.comListe.html
Normal file
@ -0,0 +1,75 @@
|
||||
<!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="ROBOTS" content="{{tpl:BlogMetaRobots robots="NOINDEX,NOARCHIVE"}}" />
|
||||
|
||||
<title>{{tpl:ComListePageTitle encode_html="1"}} - {{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="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:ComListePageTitle}} - {{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="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" />
|
||||
|
||||
{{tpl:include src="_head.html"}}
|
||||
</head>
|
||||
|
||||
<body class="dc-comliste">
|
||||
<div id="body">
|
||||
{{tpl:include src="_top.html"}}
|
||||
|
||||
<div id="page" class="{{tpl:Freshy2LayoutClass}}">
|
||||
<div class="container">
|
||||
<div id="frame">
|
||||
<div id="content">
|
||||
|
||||
<h2>{{tpl:ComListePageTitle encode_html="1"}}</h2>
|
||||
<div class="post">
|
||||
<tpl:ComListeCommentsEntries>
|
||||
<tpl:CommentsHeader>
|
||||
<div class="commentlist">
|
||||
</tpl:CommentsHeader>
|
||||
<div class="comment {{tpl:CommentIfMe return="comment_author"}} {{tpl:CommentIfOdd}} {{tpl:CommentIfFirst}}" id="c{{tpl:CommentID}}">
|
||||
{{tpl:gravatar class="avatar" size="40" alt="Gravatar de %s"}} <h4>{{tpl:CommentContent cut_string="50" remove_html="1"}}</h4>
|
||||
<small><span class="author">{{tpl:CommentAuthorLink}}</span> | {{tpl:CommentDate}} | {{tpl:CommentTime}}
|
||||
<br />({{tpl:lang source:}} <a href="{{tpl:CommentPostURL}}#c{{tpl:CommentID}}">{{tpl:CommentEntryTitle}}</a>)</small>
|
||||
<div class="comment_content">
|
||||
<!-- # --BEHAVIOR-- publicCommentBeforeContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentBeforeContent"}}
|
||||
{{tpl:CommentContent}}
|
||||
<!-- # --BEHAVIOR-- publicCommentAfterContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentAfterContent"}}
|
||||
</div>
|
||||
</div>
|
||||
<tpl:CommentsFooter>
|
||||
</div>
|
||||
</tpl:CommentsFooter>
|
||||
</tpl:ComListeCommentsEntries>
|
||||
</div> <!-- End #post -->
|
||||
<p class="pagination">
|
||||
{{tpl:ComListePaginationLinks}}
|
||||
</p>
|
||||
|
||||
<p class="post-info">
|
||||
{{tpl:lang Number of comments per page:}} {{tpl:ComListeNbCommentsPerPage}}<br />
|
||||
{{tpl:lang Number of comments:}} {{tpl:ComListeNbComments}}
|
||||
</p>
|
||||
|
||||
</div> <!-- End #content -->
|
||||
|
||||
{{tpl:include src="_sidebar.html"}}
|
||||
</div> <!-- End #frame -->
|
||||
</div> <!-- End #container -->
|
||||
</div> <!-- End #page -->
|
||||
|
||||
{{tpl:include src="_footer.html"}}
|
||||
</div> <!-- End #body -->
|
||||
</body>
|
||||
</html>
|
@ -14,7 +14,6 @@
|
||||
</tpl:Block>
|
||||
|
||||
<tpl:Block name="head-linkrel">
|
||||
<link rel="top" href="{{tpl:BlogURL}}" title="{{tpl:lang Home}}" />
|
||||
<link rel="contents" title="{{tpl:lang Archives}}" href="{{tpl:BlogArchiveURL}}" />
|
||||
</tpl:Block>
|
||||
|
||||
|
@ -9,7 +9,6 @@
|
||||
<meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
|
||||
<meta name="date" 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:ComListePageTitle}} - {{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"}}" />
|
||||
@ -18,7 +17,6 @@
|
||||
<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}}" />
|
||||
|
||||
{{tpl:include src="_head.html"}}
|
||||
@ -49,11 +47,11 @@
|
||||
</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:SysBehavior behavior="publicCommentBeforeContent"}}
|
||||
{{tpl:CommentContent}}
|
||||
<!-- # --BEHAVIOR-- publicCommentAfterContent -->
|
||||
{{tpl:SysBehavior behavior="publicCommentAfterContent"}}
|
||||
</dd>
|
||||
<tpl:CommentsFooter>
|
||||
</dl>
|
||||
</tpl:CommentsFooter>
|
||||
|
Loading…
Reference in New Issue
Block a user