mirror of
https://github.com/notrab/dumbo.git
synced 2025-01-17 14:18:14 +01:00
6687353c15
* feat(dumbo): add static files * always serve index.html * update readme * simplify
18 lines
575 B
HTML
18 lines
575 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dumbo Static Files Example</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Welcome to Dumbo Static Files Example</h1>
|
|
<img src="/assets/images/dumbo.jpeg" alt="Dumbo Logo" class="logo">
|
|
<p>This example demonstrates how to serve static files with Dumbo.</p>
|
|
</div>
|
|
<script src="/assets/js/script.js"></script>
|
|
</body>
|
|
</html>
|