File: simple_template.html

package info (click to toggle)
raintpl 3.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 888 kB
  • sloc: php: 1,555; javascript: 683; makefile: 8
file content (26 lines) | stat: -rw-r--r-- 368 bytes parent folder | download | duplicates (3)
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
<!DOCTYPE html>
<html lang="en">
<head>
	<title>Simple template</title>
        <link rel="stylesheet" href="style.css" type="text/css" />

</head>
<body>

	<h2>Variable</h2>
	Hi <b>{$name}</b>, this is a beautiful day for a Jedi!

	<br>
	<br>

	<h2>Week</h2>
	<ul>
		{loop="$week"}
		<li>
			{$value}
		</li>
		{/loop}
	</ul>

</body>
</html>