1-page-pdf-cv-maker / templates /cv_template.html
Abhishek Paliwal
Initial commit
5af569a
raw
history blame contribute delete
797 Bytes
<!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>