Spaces:
Paused
Paused
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width" /> | |
| <title>User: {{ name }}</title> | |
| <link rel="stylesheet" href="../static/css/main.css" /> | |
| </head> | |
| <body> | |
| <h1>Welcome {{ name }}!</h1> | |
| <p> | |
| We can pass variables to the HTML page like this. | |
| </p> | |
| <p> | |
| You passed name={{ name }} | |
| </p> | |
| <h1>Navigation</h1> | |
| <li> | |
| <a href="../..">Home</a> | |
| </li> | |
| </body> | |
| </html> |