24 lines
596 B
Markdown
24 lines
596 B
Markdown
|
# How a Template is Written
|
||
|
|
||
|
Templates are written in HTML and use Jinja2 syntax for dynamic content. Below is an example template (`base.html`):
|
||
|
|
||
|
```html
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>{{ title }}</title>
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='base.css') }}">
|
||
|
{% for style in styles %}
|
||
|
<link rel="stylesheet" href="{{ style }}">
|
||
|
{% endfor %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="content">
|
||
|
{{ content }}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
```
|