Add htmly logo and favicon

This commit is contained in:
Danang Probo Sayekti 2015-08-13 19:41:18 +07:00
commit f83e54e786
5 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
<a href="https://www.htmly.com" target="_blank">![Logo](https://www.htmly.com/content/images/20150812224335-htmly.png)</a>
<a href="https://www.htmly.com" target="_blank">![Logo](https://raw.githubusercontent.com/danpros/htmly/master/system/resources/images/logo-big.png)</a>
HTMLy is an open source databaseless web publishing platform that prioritizes simplicity and speed. HTMLy can be referred to as a Flat-File Blog or Flat-File CMS, since it will also manage your content.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

@ -1017,9 +1017,9 @@ function get_description($string, $char = null)
}
}
if (strlen(strip_tags($string)) < $char) {
return safe_html($string);
return safe_html(strip_tags($string));
} else {
$string = safe_html($string);
$string = safe_html(strip_tags($string));
$string = substr($string, 0, $char);
$string = substr($string, 0, strrpos($string, ' '));
return $string;

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB