Please see: https://github.com/kevinSuttle/html-meta-tags, thanks for the idea @dandv!
Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Yapım Aşamasında!</title> | |
| <link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700%7CRoboto:400,700" rel="stylesheet"> | |
| <style> | |
| * { | |
| box-sizing: border-box; |
| public function recurse_copy($src,$dst) { | |
| $dir = opendir($src); | |
| @mkdir($dst); | |
| while(false !== ( $file = readdir($dir)) ) { | |
| if (( $file != '.' ) && ( $file != '..' )) { | |
| if ( is_dir($src . '/' . $file) ) { | |
| $this->recurse_copy($src . '/' . $file,$dst . '/' . $file); | |
| } | |
| else { | |
| copy($src . '/' . $file,$dst . '/' . $file); |
| if (! function_exists('json_deep_search')) | |
| { | |
| /** | |
| * Author : Savaş Dersim ÇELİK | |
| * Returns the value of an element with a key value in an json of uncertain depth. | |
| * | |
| * @param json $json | |
| * @param string $key | |
| * |
| if (! function_exists('array_deep_search')) | |
| { | |
| /** | |
| * Author : Savaş Dersim ÇELİK | |
| * Returns the value of an element with a key value in an array of uncertain depth. | |
| * | |
| * @param array $array | |
| * @param string $key | |
| * | |
| * @return mixed|false |
| /** | |
| * Metni url'de kullanılabilir hale çevirir. Boşluklar tireye çevrilir, | |
| * alfanumerik olmayan katakterler silinir. | |
| * | |
| * Transform text into a URL path slug(with Turkish support). | |
| * Spaces turned into dashes, remove non alnum | |
| * | |
| * @param string text | |
| */ | |
| slugify = function(text) { |
| <?php | |
| /** | |
| * RainTPL | |
| * ------- | |
| * Realized by Federico Ulfo & maintained by the Rain Team | |
| * Distributed under the MIT license http://www.opensource.org/licenses/mit-license.php | |
| * | |
| * @version 2.7.2 | |
| */ |