Skip to content

Commit

Permalink
Add htmly logo and favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
danpros committed Aug 13, 2015
1 parent 1793eea commit f83e54e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
Binary file modified favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions system/includes/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Binary file added system/resources/images/logo-big.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added system/resources/images/logo-small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f83e54e

Please sign in to comment.