blob: d3270d82c05b2f7c81d1a7929b10ac0223ff6b3e (
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
|
<?php
$title_suffix = isset($title_suffix) ? ' - ' . $title_suffix : '';
$css = 'microblog'; // the default
if(!empty($config['theme']) && file_exists(ROOT.DS.'css'.DS.$config['theme'].'.css')) {
$css = $config['theme'];
}
header('Content-Type: text/html; charset=utf-8');
?><!DOCTYPE html>
<html lang="<?= $config['language'] ?>" class="<?= $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" />
<link rel="alternate" type="application/json" title="JSON Feed" href="<?= $config['url'] ?>/feed/json" />
<link rel="alternate" type="application/atom+xml" title="Atom Feed" href="<?= $config['url'] ?>/feed/atom" />
<?php if($config['xmlrpc']): ?><link rel="EditURI" type="application/rsd+xml" title="RSD" href="<?= $config['url'] ?>/rsd" /><?php endif; ?>
<link rel="stylesheet" href="<?= $config['url'] ?>/css/<?= $css ?>.css" />
<script src="<?= $config['url'] ?>/microblog.js" type="module" defer></script>
</head>
|