Browse Source

Add htmly logo and favicon

pull/189/head
Danang Probo Sayekti 10 years ago
parent
commit
f83e54e786
5 changed files with 3 additions and 3 deletions
  1. +1
    -1
      README.md
  2. BIN
      favicon.ico
  3. +2
    -2
      system/includes/functions.php
  4. BIN
      system/resources/images/logo-big.png
  5. BIN
      system/resources/images/logo-small.png

+ 1
- 1
README.md 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.


BIN
favicon.ico View File

Before After
Width: 16  |  Height: 16  |  Size: 1.3 KiB

+ 2
- 2
system/includes/functions.php 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;


BIN
system/resources/images/logo-big.png View File

Before After
Width: 333  |  Height: 100  |  Size: 3.3 KiB

BIN
system/resources/images/logo-small.png View File

Before After
Width: 100  |  Height: 100  |  Size: 1.3 KiB

Loading…
Cancel
Save