forked from smrose/polymorphic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple.html
More file actions
48 lines (38 loc) · 830 Bytes
/
simple.html
File metadata and controls
48 lines (38 loc) · 830 Bytes
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Simple Layout File</title>
</head>
<body>
<pre>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>%%title%%</title>
<style>
body {
font-family: sans-serif;
}
.thematic {
float: right;
width: 15vw;
}
</style>
</head>
<body>
<img src="%%thematicimage%%" title="%%thematicimage-alttext%%" class="thematic">
<h1>%%title%%</h1>
<h2>Problem</h2>
<p>%%problem%%</p>
<h2>Discussion</h2>
<p>%%discussion%%</p>
<h2>Context</h2>
<p>%%context%%</p>
<h2>Solution</h2>
<p>%%solution%%</p>
</body>
</html>
</body>
</html>