Created
February 12, 2020 13:05
-
-
Save ashour/823ed7cf66cf8ba284c1a9d29ecd90fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once dirname(__FILE__) . '/../i18n/I18n.php'; | |
function html_header($titleKey) | |
{ | |
?> | |
<!DOCTYPE html> | |
<html lang="<?php echo I18n::lang(); ?>" dir="<?php echo I18n::dir() ?>"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title><?php echo I18n::__($titleKey); ?></title> | |
<?php if (I18n::dir() == 'rtl') : ?> | |
<link rel="stylesheet" href="/styles/bulma-rtl.min.css"> | |
<style> | |
.field.has-addons { | |
flex-direction: row; | |
} | |
</style> | |
<?php else : ?> | |
<link rel="stylesheet" href="/styles/bulma.min.css"> | |
<?php endif; ?> | |
</head> | |
<?php | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment