Add html lang

This commit is contained in:
danpros 2021-03-31 22:05:17 +07:00
commit 1848c024cd
7 changed files with 14 additions and 14 deletions

View file

@ -1,6 +1,6 @@
<?php if (!defined('HTMLY')) die('HTMLy'); ?>
<!DOCTYPE html>
<html>
<html lang="<?php echo str_replace('_', '-', config('language'));?>">
<head>
<?php echo head_contents() ?>
<title><?php echo $title;?></title>
@ -15,7 +15,7 @@
<body class="<?php echo $bodyclass; ?>" itemscope="itemscope" itemtype="http://schema.org/Blog">
<div class="hide">
<meta content="<?php echo blog_title() ?>" itemprop="name"/>
<meta content="<?php echo blog_description() ?>" itemprop="description"/>
<meta content="<?php echo strip_tags(blog_description()); ?>" itemprop="description"/>
</div>
<?php if (facebook()) { echo facebook(); } ?>
<?php if (login()) { toolbar(); } ?>