Skip to content

Instantly share code, notes, and snippets.

@ashour
Created February 12, 2020 13:05
Show Gist options
  • Save ashour/823ed7cf66cf8ba284c1a9d29ecd90fc to your computer and use it in GitHub Desktop.
Save ashour/823ed7cf66cf8ba284c1a9d29ecd90fc to your computer and use it in GitHub Desktop.
<?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