diff --git a/assets/css/style.css b/assets/css/style.css
index b33e792..b6ac8bc 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -322,12 +322,12 @@ a[href]:hover {
.bloc-plus {
margin-top: 40px;
float: right;
- background-color: #190034;
padding: 10px 15px;
color: white;
-webkit-transition: 300ms;
-o-transition: 300ms;
transition: 300ms;
+ background-color: #190034;
}
.bloc-plus:hover {
diff --git a/assets/html/includes/head.html b/assets/html/includes/head.html
index b9edff3..ee0c4ce 100644
--- a/assets/html/includes/head.html
+++ b/assets/html/includes/head.html
@@ -7,6 +7,6 @@
-
-
+
+
diff --git a/assets/php/Tags/Loop.php b/assets/php/Tags/Loop.php
index e2de411..944b5d7 100644
--- a/assets/php/Tags/Loop.php
+++ b/assets/php/Tags/Loop.php
@@ -67,7 +67,7 @@ class Loop extends Tag {
foreach ($elements as $ele) {
if($ele->getAttribute("column") == "content") {
- Functions::appendHTML($ele->parentNode, substr($posts[$i]->getContent(), 0, 255));
+ Functions::appendHTML($ele->parentNode, $posts[$i]->getContent());
} elseif($ele->getAttribute("column") == "category") {
// var_dump($posts[$i]->getCategory()->getName());
if($posts[$i]->getCategory() != null) $txt = $doc->createTextNode($posts[$i]->getCategory()->getName());