Spaces:
Running
Running
File size: 797 Bytes
5af569a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CV</title>
</head>
<body>
<div class="container">
<div class="left-column">
{% if profile_image %}
<div class="profile-image-container">
<img src="{{ profile_image }}" alt="Profile" class="profile-image">
</div>
{% endif %}
{{ left_column }}
</div>
<div class="right-column">
<h1>{{ name }}</h1>
<h2>{{ title }}</h2>
{{ right_column }}
</div>
</div>
</body>
</html>
|