blob: 920b3b412dec7559c38b423d334f6f305228ca6b (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title id="title"></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css" id="sheet">
.vevent {
border: 1px solid black;
padding: 0;
margin-bottom: 10px;
}
.key {
font-style: italic;
margin-left: 3px;
}
.value {
margin-left: 20px;
}
abbr {
border: none;
}
.summarykey {
display: none;
}
.summary {
font-weight: bold;
margin: 0;
padding: 3px;
}
.description {
white-space: pre-wrap;
}
</style>
</head>
<body id="item-container">
<!-- Note on the use of the summarykey class:
This node is hidden by default for better readability. If you would
like to show the key, remove the display style above. -->
<div id="templates">
<div class="vevent" id="item-template">
<div class="row summaryrow">
<div class="key summarykey"></div>
<div class="value summary"></div>
</div>
<div class="row intervalrow">
<div class="key intervalkey"></div>
<div class="value">
<abbr class="dtstart"></abbr>
</div>
</div>
<div class="row locationrow">
<div class="key locationkey"></div>
<div class="value location"></div>
</div>
<div class="row descriptionrow">
<div class="key descriptionkey"></div>
<div class="value description"></div>
</div>
</div>
</div>
</body>
</html>
|