.comment-section { margin-top: -3px; } .comment-section h5 { line-height: 1; padding-bottom: 15px; } .comment-section ul l : Notes">

NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

@model BlogDetailVM
@{
ViewData["Title"] = "Detail";
}
<style>
.comment-section {
margin-top: -3px;
}

.comment-section h5 {
line-height: 1;
padding-bottom: 15px;
}

.comment-section ul li {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 10px 20px;
margin-bottom: 30px;
border: 1px solid #e5e5e5;
}

.comment-section ul li:last-child {
margin-bottom: 5px;
}

.comment-section ul li .author-avatar {
-ms-flex-preferred-size: 66px;
flex-basis: 66px;
max-height: 62px;
margin-right: 10px;
}

.comment-section ul li.comment-children {
margin-left: 40px;
}

.comment-section ul li .comment-body {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}

.comment-section ul li .comment-body h5 {
font-size: 14px;
padding-bottom: 5px;
font-family: "Open Sans", sans-serif;
}

.comment-section ul li .comment-body .comment-post-date {
font-size: 13px;
padding-bottom: 10px;
}

.comment-section ul li .comment-body .reply-btn {
float: right;
}

.comment-section ul li .comment-body .reply-btn a {
color: #333333;
font-size: 12px;
display: inline-block;
padding: 4px 15px;
border-radius: 20px;
text-transform: capitalize;
border: 1px solid #e5e5e5;
}

.comment-section ul li .comment-body .reply-btn a:hover {
color: #fff;
border-color: #e3a51e;
background-color: #e3a51e;
}
</style>

<!-- Banner Area Start -->
<div class="banner-area-wrapper">
<div class="banner-area text-center">
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="banner-content-wrapper">
<div class="banner-content">
<h2>blog details</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Banner Area End -->
<!-- Blog Start -->
<div class="blog-details-area pt-150 pb-140">
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="blog-details">
<div class="blog-details-img">
<img src="~/img/blog/@Model.Blog.ImageUrl" width="100%" alt="blog-details">
</div>
<div class="blog-details-content">
<h2>@Model.Blog.Title </h2>
<h6>@Model.Blog.AuthorName / @Model.Blog.CreatedDate.ToString("MMMM d, yyyy") / <i class="fa fa-comments-o"></i> 4</h6>
<p>@Model.Blog.Desc</p>
</div>


<div class="comment-section section-padding">
<h5>@Model.Blog.Comments.Count Comment</h5>


<ul>
@foreach (var item in Model.Blog.Comments)
{
<li>

<div class="comment-body">
@if (item.AppUserId == ViewBag.UserId)
{
<span class="reply-btn"><a asp-action="deleteComment" asp-route-id="@item.Id">Delete</a></span>
}
<h5 class="comment-author">@item.AppUser.Fullname</h5>
<div class="comment-post-date">
@item.CreatedDate.ToString("MM/dd/yyyy")
</div>
<p>
@item.Message
</p>
</div>
</li>
}
</ul>
</div>






<div class="reply-area">
<h3>LEAVE A REPLY</h3>
<p>Email address will not be published</p>
<form id="contact-form" asp-controller="blog" asp-action="addComment" method="post">
<div class="row">
<div class="col-md-12">
<input type="hidden" name="blogId" value="@Model.Blog.Id" />
<p>Comment</p>
<textarea name="commentMessage" id="message" cols="15" rows="6" placeholder="Write a Comment"></textarea>
</div>
</div>
<input class="reply-btn" type="submit" name="submit" value="POST COMMENT">
</form>


</div>
</div>
</div>
<div class="col-md-4">
<div class="blog-sidebar right">
<div class="single-blog-widget mb-47">
<h3>search</h3>
<div class="blog-search">
<form id="search" action="#">
<input type="search" placeholder="Search..." name="search" />
<button type="submit">
<span><i class="fa fa-search"></i></span>
</button>
</form>
</div>
</div>
<div class="single-blog-widget mb-47">
<h3>categories</h3>
<ul>
@foreach (var item in Model.Categories)
{
<li><a asp-controller="courses" asp-action="index">@item.Name (@item.Courses.Count)</a></li>
}
</ul>
</div>
<div class="single-blog-widget mb-47">
<div class="single-blog-banner">
<a asp-controller="blog" asp-action="index" id="blog"><img src="~/img/blog/blog-img.jpg" alt="blog"></a>
<h2>best<br> eductaion<br> theme</h2>
</div>
</div>
<div class="single-blog-widget mb-47">
<h3>latest post</h3>
@foreach (var item in Model.SideBlogs)
{
<div class="single-post mb-30">
<div class="single-post-img">
<a asp-controller="blog" asp-action="detail" asp-route-id="@item.Id">
<img src="~/img/blog/@item.ImageUrl" alt="post" width="95" height="84">
<div class="blog-hover">
<i class="fa fa-link"></i>
</div>
</a>
</div>
<div class="single-post-content">
<h4><a asp-controller="course" asp-action="detail" asp-route-id="@item.Id">English Language Course for you</a></h4>
<p>@item.AuthorName / @item.CreatedDate.ToString("MMMM d, YYYY")</p>
</div>
</div>
}
</div>
<div class="single-blog-widget">
<h3>tags</h3>
<div class="single-tag">
<a asp-controller="courses" asp-action="index" class="mr-10 mb-10">course</a>
<a asp-controller="home" asp-action="index" class="mr-10 mb-10">education</a>
<a asp-controller="teacher" asp-action="index" class="mb-10">teachers</a>
<a asp-controller="courses" asp-action="index" class="mr-10">learning</a>
<a asp-controller="home" asp-action="index" class="mr-10">university</a>
<a asp-controller="event" asp-action="index">events</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Blog End -->
<!-- Subscribe Start -->
<div class="subscribe-area pt-60 pb-70">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="subscribe-content section-title text-center">
<h2>subscribe our newsletter</h2>
<p>I must explain to you how all this mistaken idea </p>
</div>
<div class="newsletter-form mc_embed_signup">
<form action="http://devitems.us11.list-manage.com/subscribe/post?u=6bbb9b6f5827bd842d9640c82&amp;id=05d85f18ef" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll" class="mc-form">
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="Enter your e-mail address" required>
<!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div class="mc-news" aria-hidden="true"><input type="text" name="b_6bbb9b6f5827bd842d9640c82_05d85f18ef" tabindex="-1" value=""></div>
<button id="mc-embedded-subscribe" class="default-btn" type="submit" name="subscribe"><span>subscribe</span></button>
</div>
</form>
<!-- mailchimp-alerts Start -->
<div class="mailchimp-alerts">
<div class="mailchimp-submitting"></div><!-- mailchimp-submitting end -->
<div class="mailchimp-success"></div><!-- mailchimp-success end -->
<div class="mailchimp-error"></div><!-- mailchimp-error end -->
</div>
<!-- mailchimp-alerts end -->
</div>
</div>
</div>
</div>
</div>
<!-- Subscribe End -->
     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.