File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
BlogEngine/BlogEngine.NET/Custom/Themes/Standard Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ <% @ Control Language= " C#" AutoEventWireup= " true" EnableViewState= " false" Inherits= " BlogEngine.Core.Web.Controls.PostNavigationBase" %>
2
+ <div id =" postnavigation" class =" navigation-posts well-global clearfix" >
3
+ <div class =" text-left next-post" >
4
+ <% if (!string .IsNullOrEmpty(NextPostUrl))
5
+ { %>
6
+ <a href =" <%=NextPostUrl %>" class =" nav-next" >&larr ; <%= NextPostTitle %> </a >
7
+ <% } %>
8
+ </div >
9
+ <div class =" text-right prev-post " >
10
+ <% if (!string .IsNullOrEmpty(PreviousPostUrl))
11
+ { %>
12
+ <a href =" <%=PreviousPostUrl %>" class =" nav-prev" ><%= PreviousPostTitle %> &rarr ; </a >
13
+ <% } %>
14
+ </div >
15
+ </div >
Original file line number Diff line number Diff line change
1
+ <% @ Control Language= " C#" AutoEventWireup= " true" EnableViewState= " false" Inherits= " BlogEngine.Core.Web.Controls.RelatedPostsBase" %>
2
+ <div id =" relatedPosts" class =" related-posts well-global" >
3
+ <h3 class =" well-global-title" ><%= Resources.labels.relatedPosts %> </h3 >
4
+ <ul class =" list-unstyled" >
5
+ <% foreach (var item in RelatedPostList)
6
+ {%>
7
+ <li ><a href =" <%=item.Link %>" ><%= item .Title %> </a >
8
+ <div ><small class =" text-muted" ><%= item .Description %> </small ></div >
9
+ </li >
10
+ <% } %>
11
+ </ul >
12
+ </div >
You can’t perform that action at this time.
0 commit comments