blob: 6c4f6ce8a499e217ac64373f678df300c767043b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
$title_suffix = isset($title_suffix) ? ' - ' . $title_suffix : '';
$css = 'microblog'; // the default
if(!empty($config['theme']) && file_exists(ROOT.DS.'css'.DS.$config['theme'].DS.$config['theme'].'.css')) {
$css = $config['theme'];
}
header('Content-Type: text/html; charset=utf-8');
?><!DOCTYPE html>
<html lang="<?= $config['language'] ?>" class="no-js <?= $template ?>">
<head>
<meta charset="utf-8" />
<title><?= empty($config['microblog_account']) ? "" : $config['microblog_account'] . "'s "; ?>micro.blog<?= $title_suffix ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon" href="<?= $config['url'] ?>/favicon-large.png" />
<!-- <link rel="apple-touch-startup-image" href="launch.png"> -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="<?= $config['site_title'] ?>">
<link rel="icon" href="<?= $config['url'] ?>/favicon.ico" />
<link rel="stylesheet" href="<?= $config['url'] ?>/css/<?= $css ?>/<?= $css ?>.css" />
<script src="<?= $config['url'] ?>/js/microblog.js" type="module" defer></script>
</head>
|