File: default.html

package info (click to toggle)
lowdown 2.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,484 kB
  • sloc: ansic: 21,512; sh: 1,892; xml: 861; makefile: 518
file content (30 lines) | stat: -rw-r--r-- 811 bytes parent folder | download | duplicates (2)
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
<!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>