-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-conversation.html
More file actions
71 lines (62 loc) · 3.21 KB
/
Copy pathsample-conversation.html
File metadata and controls
71 lines (62 loc) · 3.21 KB
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>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Weekend Camping Trip - chat archive</title>
<style>
body { font-family: system-ui, sans-serif; max-width: 780px; margin: 40px auto; padding: 0 20px; color: #1b1f24; line-height: 1.5; }
h1 { margin: 0 0 6px; font-size: 22px; }
.meta { color: #6b7280; font-size: 12px; margin-bottom: 24px; }
.msg { padding: 8px 12px; margin: 6px 0; border-radius: 10px; background: #f3f4f6; max-width: 75%; }
.msg.out { background: #dbeafe; margin-left: auto; }
.msg header { display: flex; gap: 10px; font-size: 11px; color: #6b7280; margin-bottom: 2px; }
.msg .sender { font-weight: 600; color: #1b1f24; }
.msg .body { margin: 0; white-space: pre-wrap; word-break: break-word; }
.msg .attachments { margin: 6px 0 0; padding-left: 20px; font-size: 12px; color: #374151; }
.msg .reactions { margin: 4px 0 0; font-size: 14px; }
footer { margin-top: 36px; padding-top: 12px; border-top: 1px solid #e5e7eb; color: #9aa3af; font-size: 11px; }
</style>
</head>
<body>
<h1>Weekend Camping Trip</h1>
<p class="meta">Exported 2026-04-22T14:03:10.412Z - 8 messages</p>
<article class="msg">
<header><span class="sender">Ada Example</span><time datetime="2026-04-18T09:12:00.000Z">2026-04-18T09:12:00.000Z</time></header>
<p class="body">Hey, are we still good for Saturday?</p>
</article>
<article class="msg out">
<header><span class="sender">You</span><time datetime="2026-04-18T09:14:12.000Z">2026-04-18T09:14:12.000Z</time></header>
<p class="body">Yes! I reserved site 14 at the state park.</p>
<p class="reactions">thumbs up reaction</p>
</article>
<article class="msg">
<header><span class="sender">Ada Example</span><time datetime="2026-04-18T09:14:55.000Z">2026-04-18T09:14:55.000Z</time></header>
<p class="body">Perfect. I'll bring the tent and the stove.</p>
</article>
<article class="msg out">
<header><span class="sender">You</span><time datetime="2026-04-18T09:15:30.000Z">2026-04-18T09:15:30.000Z</time></header>
<p class="body">I'll handle food. Any dietary stuff?</p>
</article>
<article class="msg">
<header><span class="sender">Ada Example</span><time datetime="2026-04-18T09:16:02.000Z">2026-04-18T09:16:02.000Z</time></header>
<p class="body">Nope, all good.</p>
<p class="reactions">heart reaction</p>
</article>
<article class="msg">
<header><span class="sender">Ada Example</span><time datetime="2026-04-18T09:16:40.000Z">2026-04-18T09:16:40.000Z</time></header>
<p class="body">Sharing the trail map so we're on the same page.</p>
<ul class="attachments">
<li>https://example.test/trail-map.pdf</li>
</ul>
</article>
<article class="msg out">
<header><span class="sender">You</span><time datetime="2026-04-18T09:17:12.000Z">2026-04-18T09:17:12.000Z</time></header>
<p class="body">Got it. Meeting at the trailhead at 8am?</p>
</article>
<article class="msg">
<header><span class="sender">Ada Example</span><time datetime="2026-04-18T09:17:45.000Z">2026-04-18T09:17:45.000Z</time></header>
<p class="body">8am works. See you Saturday!</p>
</article>
<footer>Generated by Open Chat Archiver (open-source, MV3).</footer>
</body>
</html>