Skip to content

Commit

Permalink
Add default HTML template.
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsdz committed Dec 1, 2024
1 parent 15c8d3d commit 7d40a23
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions share/html/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html$ifdef(lang)$ lang="$lang$"$endif$>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
$for(affiliation.split)$
<meta name="creator" content="$this.escapehtmlattr$" />
$endfor$
$for(author.split)$
<meta name="author" content="$this.escapehtmlattr$" />
$endfor$
$for(copyright.split)$
<meta name="copyright" 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>
$body$
</body>
</html>

0 comments on commit 7d40a23

Please sign in to comment.