Legend:
- Unmodified
- Added
- Removed
-
inc/public/default-templates/currywurst/_simple-entry.html
r2603 r2619 1 <div id="p{{tpl:EntryID}}" class="post simple" role="article">1 <div class="post simple" id="p{{tpl:EntryID}}" role="article"> 2 2 <h2 class="post-title">{{tpl:EntryTitle encode_html="1"}}</h2> 3 3 4 <div class="post- attr">4 <div class="post-meta"> 5 5 <p class="post-info"> 6 6 <span class="post-author">{{tpl:lang By}} {{tpl:EntryAuthorLink}}, </span> 7 7 <span class="post-date">{{tpl:EntryDate}}. </span> 8 <span class="p ermalink"><a href="{{tpl:EntryURL}}">{{tpl:lang Permalink}}</a></span>8 <span class="post-permalink"><a href="{{tpl:EntryURL}}">{{tpl:lang Permalink}}</a></span> 9 9 <tpl:EntryIf has_category="1"> 10 10 <span class="post-cat"><tpl:EntryCategoriesBreadcrumb><a … … 16 16 <tpl:EntryTags> 17 17 <tpl:TagsHeader> 18 <ul class="post-tags ">18 <ul class="post-tags-list"> 19 19 </tpl:TagsHeader> 20 <li ><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li>20 <li class="post-tags-item"><a href="{{tpl:TagURL}}">{{tpl:TagID}}</a></li> 21 21 <tpl:TagsFooter> 22 22 </ul> … … 37 37 <!-- # --BEHAVIOR-- publicEntryAfterContent --> 38 38 {{tpl:SysBehavior behavior="publicEntryAfterContent"}} 39 </div>40 39 41 40 <!-- # Attachments --> 42 41 <tpl:Attachments> 43 42 <tpl:AttachmentsHeader> 44 <divid="attachments">45 <h3>{{tpl:lang Attachments}}</h3>46 <ul>43 <div class="post-attachments" id="attachments"> 44 <h3 class="post-attachments-title">{{tpl:lang Attachments}}</h3> 45 <ul class="post-attachments-list"> 47 46 </tpl:AttachmentsHeader> 48 <li class=" {{tpl:AttachmentType}}">47 <li class="post-attachments-list__item {{tpl:AttachmentType}}"> 49 48 <tpl:AttachmentIf is_mp3="1"> 50 49 {{tpl:include src="_mp3_player.html"/}} - … … 63 62 </tpl:AttachmentsFooter> 64 63 </tpl:Attachments> 64 </div> 65 66 <tpl:EntryIf operator="or" show_comments="1" show_pings="1"> 67 <div class="post-feedback"> 68 </tpl:EntryIf> 65 69 66 70 <!-- # Comments --> … … 68 72 <tpl:Comments with_pings="1"> 69 73 <tpl:CommentsHeader> 70 <div id="comments">74 <div class="feedback__comments" id="comments"> 71 75 <h3>{{tpl:EntryCommentCount count_all="1" none="no reactions" one="one reaction" more="%s reactions"}}</h3> 72 <ul> 76 <tpl:EntryIf operator="or" comments_active="1" pings_active="1"> 77 <p id="comments-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}" 78 title="{{tpl:lang This post's comments Atom feed}}">{{tpl:lang This post's comments feed}}</a></p> 79 </tpl:EntryIf> 80 <ul class="comments-list"> 73 81 </tpl:CommentsHeader> 74 82 <tpl:CommentIf is_ping="0"> … … 98 106 </tpl:EntryIf> 99 107 100 <tpl:EntryIf operator="or" comments_active="1" pings_active="1">101 <p id="comments-feed"><a class="feed" href="{{tpl:BlogFeedURL type="atom"}}/comments/{{tpl:EntryID}}"102 title="{{tpl:lang This post's comments Atom feed}}">{{tpl:lang This post's comments feed}}</a></p>103 </tpl:EntryIf>104 105 108 <tpl:EntryIf comments_active="1"> 106 109 <tpl:SysIfFormError> … … 117 120 118 121 <!-- # Comment form --> 119 <form action="{{tpl:EntryURL}}#pr" method="post" id="comment-form" role="form">122 <form class="send-comment" action="{{tpl:EntryURL}}#pr" method="post" id="comment-form" role="form"> 120 123 <tpl:IfCommentPreview> 121 124 <div id="pr"> … … 127 130 128 131 <h3>{{tpl:lang Add a comment}}</h3> 129 <fieldset>130 132 <!-- # --BEHAVIOR-- publicCommentFormBeforeContent --> 131 133 {{tpl:SysBehavior behavior="publicCommentFormBeforeContent"}} 132 134 133 <p class="field "><label for="c_name">{{tpl:lang Name or nickname}} :</label>135 <p class="field name-field"><label for="c_name">{{tpl:lang Name or nickname}} :</label> 134 136 <input name="c_name" id="c_name" type="text" size="30" maxlength="255" 135 137 value="{{tpl:CommentPreviewName encode_html="1"}}" /> 136 138 </p> 137 139 138 <p class="field "><label for="c_mail">{{tpl:lang Email address}} :</label>140 <p class="field mail-field"><label for="c_mail">{{tpl:lang Email address}} :</label> 139 141 <input name="c_mail" id="c_mail" type="text" size="30" maxlength="255" 140 142 value="{{tpl:CommentPreviewEmail encode_html="1"}}" /> 141 143 </p> 142 144 143 <p class="field "><label for="c_site">{{tpl:lang Website}} ({{tpl:lang optional}}) :</label>145 <p class="field site-field"><label for="c_site">{{tpl:lang Website}} ({{tpl:lang optional}}) :</label> 144 146 <input name="c_site" id="c_site" type="text" size="30" maxlength="255" 145 147 value="{{tpl:CommentPreviewSite encode_html="1"}}" /> … … 150 152 </p> 151 153 152 <p class="field "><label for="c_content">{{tpl:lang Comment}} :</label>154 <p class="field field-content"><label for="c_content">{{tpl:lang Comment}} :</label> 153 155 <textarea name="c_content" id="c_content" cols="35" 154 156 rows="7">{{tpl:CommentPreviewContent raw="1" encode_html="1"}}</textarea> … … 159 161 <!-- # --BEHAVIOR-- publicCommentFormAfterContent --> 160 162 {{tpl:SysBehavior behavior="publicCommentFormAfterContent"}} 161 </fieldset>162 163 163 <fieldset>164 164 <p class="buttons"> 165 165 <input type="submit" class="preview" name="preview" value="{{tpl:lang preview}}" /> … … 173 173 174 174 <tpl:EntryIf pings_active="1"> 175 <div id="ping-url">175 <div class="send-ping"> 176 176 <h3>{{tpl:lang Add ping}}</h3> 177 <p >{{tpl:lang Trackback URL}} : {{tpl:EntryPingLink}}</p>177 <p id="ping-url">{{tpl:lang Trackback URL}} : {{tpl:EntryPingLink}}</p> 178 178 </div> 179 179 </tpl:EntryIf> 180 181 <tpl:EntryIf operator="or" show_comments="1" show_pings="1"> 182 </div> 183 </tpl:EntryIf>
Note: See TracChangeset
for help on using the changeset viewer.