Advertisement
krasipetrovbg

Untitled

Jan 27th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.63 KB | None | 0 0
  1. @{
  2.     ViewBag.Title = "Начало";
  3.     Layout = "~/Views/Shared/_Layout.cshtml";
  4. }
  5.  
  6. @foreach (var article in Model.articles)
  7. {
  8. <article>
  9.     <h2>@article.articleTitle</h2>
  10.     <p class="date">@article.articleDate</p>
  11.     <p>
  12.         @article.articleContent
  13.     </p>
  14.     <div class="article-footer">
  15.         <p>
  16.             <a href="@Url.Action("ViewArticle", "Articles", new {articleId = article.articleId })">Пълен текст към статията</a> <a href="@Url.Action("ViewArticle", "Articles", new {articleId = article.articleId })#comments">Коментари</a>
  17.         </p>
  18.     </div>
  19. </article>
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement