Fixes the latest merge
parent
2963e2c4a0
commit
d8a5ebd526
@ -1,10 +1,12 @@
|
|||||||
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<TagInfo>" %>
|
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<TagInfo>" %>
|
||||||
<div class="panel">
|
<div class="panel">
|
||||||
<i class="fa fa-tag"><%=Model.Name%></i>
|
<i class="fa fa-tag"><%=Html.Encode(Model.Name)%></i>
|
||||||
<ul>
|
<% foreach (var t in Model.Titles) { %>
|
||||||
<% foreach (BasePostInfo be in Model.Titles) { %>
|
<a href="<%= Url.RouteUrl("Titles", new { title = t.Title }) %>">
|
||||||
<li><%= be.Title %>
|
<img src="<%=Url.Encode(t.Photo)%>" alt="placard" class="photo">
|
||||||
<span><%= be.Intro %></span>
|
<%= Html.Markdown(t.Title,"/bfiles/"+t.Id+"/")%></a>
|
||||||
</li>
|
<div class="postpreview">
|
||||||
<% } %></ul>
|
<p><%= Html.Markdown(t.Intro,"/bfiles/"+t.Id+"/") %></p>
|
||||||
|
</div>
|
||||||
|
<% } %>
|
||||||
</div>
|
</div>
|
||||||
Loading…
Reference in New Issue