add html pages format
This commit is contained in:
28
default.html
Normal file
28
default.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user