diff --git a/Yavsc/Views/Blogspot/Index.cshtml b/Yavsc/Views/Blogspot/Index.cshtml
index c20d6460..dfe7eeb0 100644
--- a/Yavsc/Views/Blogspot/Index.cshtml
+++ b/Yavsc/Views/Blogspot/Index.cshtml
@@ -39,8 +39,9 @@
@item.Title
- @item.Content.Substring(0,120)
- @((item.Content.Length>120)?"...":"")
+
+ @((item.Content.Length > 120) ? item.Content.Substring(0, 120) + "..." : item.Content.Substring(0, 120))
+
(@item.Author.UserName ,
posté le @item.DateCreated.ToString("dddd d MMM yyyy à H:mm")
|