29 lines
791 B
HTML
29 lines
791 B
HTML
<!DOCTYPE html>
|
|
<html$ifdef(lang)$ lang="$lang$"$endif$>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
$for(author.split)$
|
|
<meta name="author" content="$this.escapehtmlattr$" />
|
|
$endfor$
|
|
$ifdef(date)$
|
|
<meta name="date" content="$date.escapehtmlattr$" />
|
|
$endif$
|
|
$for(css.split)$
|
|
<link rel="stylesheet" href="$this.escapehtmlurl$" />
|
|
$endfor$
|
|
$for(javascript.split)$
|
|
<script src="$this.escapehtmlurl$"></script>
|
|
$endfor$
|
|
<title>$ifdef(title)$$title.escapehtml$$endif$</title>
|
|
$htmlheader$
|
|
</head>
|
|
<body>
|
|
$ifdef(title)$<h1>$title.escapehtml$</h1>$endif$
|
|
$body$
|
|
$ifdef(filename)$
|
|
<a href="https://gitea.dmz.rs/Decentrala/wiki/_edit/dev/$filename$" />Edit this page</a>
|
|
$endif$
|
|
</body>
|
|
</html>
|