mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 08:10:11 +01:00
23 lines
480 B
Text
23 lines
480 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ page_title|default("Default Title") }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello, {{ user_name }}!</h1>
|
|
|
|
{% if items %}
|
|
<h2>Items:</h2>
|
|
<ul>
|
|
{% for item in items %}
|
|
<li>{{ item }}</li>
|
|
{% else %}
|
|
<li>No items found.</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
{# This is a comment #}
|
|
<p>Current year: {{ current_year }}</p>
|
|
</body>
|
|
</html>
|