Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules
python_modules
__pycache__
CLAUDE.md
32 changes: 19 additions & 13 deletions 06-assets/assets/index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
<!DOCTYPE html>
<!doctype html>
<html>
<head>
<title>Assets Example</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="container">
<h1>Assets Handling Example</h1>
<p>This demonstrates serving static content from a Python Worker.</p>
<img src="/image.svg" alt="Example circle image" />
</div>
<script src="/script.js"></script>
</body>
<head>
<title>Assets Example</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="container">
<h1>Assets Handling Example</h1>
<p>
This demonstrates serving static content from a Python Worker.
</p>
<img src="/image.svg" alt="Example circle image" />
<img
src="painting.jpg"
alt="A painting of a little house in Switzerland"
/>
</div>
<script src="/script.js"></script>
</body>
</html>
Binary file added 06-assets/assets/painting.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading