Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Resume Review Output</title> | |
| <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet"> | |
| <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <!-- Font Awesome CDN --> | |
| <style> | |
| body { | |
| background-image: url('https://www.example.com/light-bg.jpg'); | |
| background-size: cover; | |
| background-color: #f4f4f9; | |
| color: #2c3e50; | |
| font-family: 'Roboto', sans-serif; | |
| overflow-x: hidden; | |
| } | |
| .container { | |
| background: rgba(255, 255, 255, 0.95); | |
| border-radius: 15px; | |
| box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); | |
| padding: 20px; | |
| margin-top: 50px; | |
| } | |
| .card { | |
| border: none; | |
| background: linear-gradient(135deg, #ecf0f1, #ffffff); | |
| border-radius: 15px; | |
| transition: transform 0.3s, box-shadow 0.3s; | |
| } | |
| .card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); | |
| } | |
| .info-section .info-item { | |
| background: rgba(236, 240, 241, 0.8); | |
| padding: 15px; | |
| margin-bottom: 10px; | |
| border-radius: 10px; | |
| transition: background-color 0.3s, transform 0.3s; | |
| } | |
| .info-section .info-item:hover { | |
| background: rgba(236, 240, 241, 0.9); | |
| transform: translateY(-3px); | |
| } | |
| .info-title { | |
| font-size: 1.2rem; | |
| font-weight: 500; | |
| color: #2980b9; | |
| } | |
| .info-content { | |
| font-size: 1rem; | |
| font-weight: 400; | |
| color: #34495e; | |
| } | |
| .btn-toggle { | |
| background-color: #e74c3c; | |
| border: none; | |
| color: #ffffff; | |
| cursor: pointer; | |
| font-size: 1rem; | |
| padding: 10px 20px; | |
| border-radius: 5px; | |
| display: inline-flex; | |
| align-items: center; | |
| transition: background-color 0.3s, transform 0.3s; | |
| } | |
| .btn-toggle::after { | |
| content: '\25BC'; | |
| margin-left: 10px; | |
| transition: transform 0.3s; | |
| } | |
| .btn-toggle[aria-expanded="true"]::after { | |
| transform: rotate(180deg); | |
| } | |
| .btn-toggle:hover { | |
| background-color: #c0392b; | |
| transform: scale(1.05); | |
| } | |
| h1 { | |
| font-size: 2.5rem; | |
| font-weight: 700; | |
| text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); | |
| color: #2c3e50; | |
| } | |
| a { | |
| color: #3498db; | |
| } | |
| a:hover { | |
| text-decoration: underline; | |
| color: #2980b9; | |
| } | |
| .collapse { | |
| background-color: rgba(255, 255, 255, 0.9); | |
| padding: 10px; | |
| border-radius: 10px; | |
| } | |
| .section-header { | |
| display: flex; | |
| align-items: center; | |
| margin-bottom: 10px; | |
| } | |
| .section-header i { | |
| margin-right: 10px; | |
| } | |
| .no-data { | |
| color: #e74c3c; | |
| font-style: italic; | |
| font-size: 1rem; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="card shadow-lg p-4"> | |
| <h1 class="text-center mb-4">Resume Review Output</h1> | |
| <div class="content"> | |
| <div class="info-section" style="display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;"> | |
| <!-- Resume Score Section (Left) --> | |
| <div class="info-item" style="flex: 1;"> | |
| <div class="section-header"> | |
| <i class="fas fa-star"></i> | |
| <div class="info-title">Resume Score:</div> | |
| </div> | |
| <div class="info-content"> | |
| <!-- Display Resume Score --> | |
| {{ parsed_resume['imarticus_score'] or 'No score available.' }} | |
| </div> | |
| <div class="info-content"> | |
| {% set max_score = 63 %} | |
| {% set score = parsed_resume['imarticus_score'] %} | |
| {% set percentage = (score / max_score) * 100 %} | |
| {% if percentage == 0 %} | |
| {% set rating = 'The resume is bad' %} | |
| {% elif percentage <= 15 %} | |
| {% set rating = 'Resume needs significant improvement' %} | |
| {% elif percentage <= 35 %} | |
| {% set rating = 'Resume needs improvement' %} | |
| {% elif percentage <= 55 %} | |
| {% set rating = 'Resume is average' %} | |
| {% elif percentage <= 75 %} | |
| {% set rating = 'Resume is good' %} | |
| {% elif percentage <= 90 %} | |
| {% set rating = 'Resume is very good' %} | |
| {% else %} | |
| {% set rating = 'Resume is excellent' %} | |
| {% endif %} | |
| <p>Resume Score: <strong>{{ score }} / {{ max_score }} ({{ percentage|round(2) }}%)</strong></p> | |
| <p>Evaluation: <strong>{{ rating }}</strong></p> | |
| </div> | |
| </div> | |
| <!-- Suggestions Section (Right) --> | |
| <div class="suggestion-section" style="flex: 1;"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#basic-info-suggestions" aria-expanded="false" aria-controls="basic-info-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="basic-info-suggestions"> | |
| <ul> | |
| <li>Incorporate job-specific keywords to match your desired role.</li> | |
| <li>Quantify your achievements, such as "Reduced costs by 15%." </li> | |
| <li>Keep formatting consistent, including fonts and alignment.</li> | |
| <li>Add a concise professional summary highlighting key skills.</li> | |
| <li>Proofread thoroughly to eliminate grammar or spelling mistakes.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Detailed Score Breakdown Section --> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-list"></i> | |
| <div class="info-title">Detailed Score Breakdown:</div> | |
| </div> | |
| <div class="info-content"> | |
| <ul> | |
| <li>Name: {{ parsed_resume['name_score'] }} / 3</li> | |
| <li>Contact Number: {{ parsed_resume['contact_number_score'] }} / 3</li> | |
| <li>Email: {{ parsed_resume['email_score'] }} / 3</li> | |
| <li>LinkedIn URL: {{ parsed_resume['linkedin_url_score'] }} / 3</li> | |
| <li>GitHub URL: {{ parsed_resume['github_url_score'] }} / 3</li> | |
| <li>Missing Sections: {{ parsed_resume['missing_sections_score'] }} / 10</li> | |
| <li>Common Projects: {{ parsed_resume['common_projects_score'] }} / 5</li> | |
| <li>Section Order: {{ parsed_resume['section_order_score'] }} / 2</li> | |
| <li>Projects: {{ parsed_resume['projects_score'] }} / 5</li> | |
| <li>Certifications: {{ parsed_resume['certifications_score'] }} / 7</li> | |
| <li>Relevant Experience: {{ parsed_resume['relevant_experience_score'] }} / 5</li> | |
| <li>Data Science Skills: {{ parsed_resume['ds_skills_score'] }} / 5</li> | |
| <li>Extra URLs Bonus: {{ parsed_resume['extra_urls_bonus'] }} / 5</li> | |
| <li>Summary: {{ parsed_resume['summary_score'] }} / 5</li> | |
| <li>Project Link: {{ parsed_resume['project_link_score'] }} / 2</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="info-section" style="display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;"> | |
| <!-- Basic Information Section (Left) --> | |
| <div class="info-item" style="flex: 1;"> | |
| <div class="section-header"> | |
| <i class="fas fa-user"></i> | |
| <div class="info-title">Basic Information Section:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['basic_information_section'] }}</div> | |
| </div> | |
| <!-- Suggestions Section (Right) --> | |
| <div class="suggestion-section" style="flex: 1;"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#basic-info-suggestions" aria-expanded="false" aria-controls="basic-info-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="basic-info-suggestions"> | |
| <ul> | |
| <li>Ensure your contact information is up-to-date and professional (e.g., email address).</li> | |
| <li>Make sure the profile summary highlights your core skills and career goals.</li> | |
| <li>If applicable, add relevant certifications, degrees, and professional training to enhance credibility.</li> | |
| <li>Review and update any outdated or irrelevant personal information (e.g., hobbies, languages, etc.).</li> | |
| <li>Ensure that your professional experience is listed in chronological order, with key achievements highlighted.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Name Section --> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-id-badge"></i> | |
| <div class="info-title">Name:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['name'] }}</div> | |
| </div> | |
| <!-- Contact Number Section --> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-phone"></i> | |
| <div class="info-title">Contact Number:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['contact_number'] }}</div> | |
| </div> | |
| <!-- Email Section --> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-envelope"></i> | |
| <div class="info-title">Email:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['email'] }}</div> | |
| </div> | |
| <!-- LinkedIn URL Section --> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fab fa-linkedin"></i> | |
| <div class="info-title">LinkedIn:</div> | |
| </div> | |
| <div class="info-content"><a href="{{ parsed_resume['linkedin_urls'] }}">{{ parsed_resume['linkedin_urls'] }}</a></div> | |
| </div> | |
| <!-- GitHub URL Section --> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fab fa-github"></i> | |
| <div class="info-title">GitHub:</div> | |
| </div> | |
| <div class="info-content"><a href="{{ parsed_resume['github_urls'] }}">{{ parsed_resume['github_urls'] }}</a></div> | |
| </div> | |
| <div class="info-section" style="display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;"> | |
| <!-- Extra URLs Section (Left) --> | |
| <div class="info-item" style="flex: 1;"> | |
| <div class="section-header"> | |
| <i class="fas fa-link"></i> | |
| <div class="info-title">Additional URLs:</div> | |
| </div> | |
| <div class="info-content"> | |
| <ul> | |
| {% if parsed_resume['extra_urls'] %} | |
| {% for url in parsed_resume['extra_urls'] %} | |
| <li><a href="{{ url }}">{{ url }}</a></li> | |
| {% endfor %} | |
| {% else %} | |
| <p class="no-data">No additional URLs found.</p> | |
| {% endif %} | |
| </ul> | |
| </div> | |
| </div> | |
| <!-- Suggestions Section (Right) --> | |
| <div class="suggestion-section" style="flex: 1;"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#other-urls-suggestions" aria-expanded="false" aria-controls="other-urls-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="other-urls-suggestions"> | |
| <ul> | |
| <li>Ensure all URLs are up-to-date and working. Remove any broken or outdated links.</li> | |
| <li>If you have a portfolio, blog, or personal website, include the URL to showcase your work.</li> | |
| <li>Ensure that your LinkedIn, GitHub, and other professional links are included to make it easy for employers to find more about you.</li> | |
| <li>If applicable, provide links to any published work or notable projects relevant to the job you're applying for.</li> | |
| <li>Ensure that any social media links provided are professional (e.g., avoid personal or non-professional accounts).</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Found Skills Section --> | |
| <div class="info-section" style="display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;"> | |
| <div class="info-item" style="flex: 1;"> | |
| <p><strong>Found Skills:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#found-keywords" aria-expanded="false" aria-controls="found-keywords"> | |
| <i class="fas fa-plus-circle"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="found-keywords"> | |
| <ul> | |
| {% if parsed_resume['found_keywords'] %} | |
| {% for keyword in parsed_resume['found_keywords'] %} | |
| <li>{{ keyword }}</li> | |
| {% endfor %} | |
| {% else %} | |
| <p class="no-data">No skills found.</p> | |
| {% endif %} | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="suggestion-section" style="flex: 1;"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#found-skills-suggestions" aria-expanded="false" aria-controls="found-skills-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="found-skills-suggestions"> | |
| <ul> | |
| <li>Ensure the listed skills match the requirements of the job you're applying for.</li> | |
| <li>Highlight skills with measurable outcomes or certifications to demonstrate proficiency.</li> | |
| <li>Ensure that key skills from the job description are included in your resume to improve your chances.</li> | |
| <li>If possible, categorize skills into technical, soft skills, and language proficiency for clarity.</li> | |
| <li>Consider adding any relevant new skills acquired recently, such as software or tools.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Missing Skills Section --> | |
| <div class="info-section" style="display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px;"> | |
| <div class="info-item" style="flex: 1;"> | |
| <p><strong>Missing Skills:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#missing-skills" aria-expanded="false" aria-controls="missing-skills"> | |
| <i class="fas fa-minus-circle"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="missing-skills"> | |
| <ul> | |
| {% if parsed_resume['missing_skills'] %} | |
| {% for skill in parsed_resume['missing_skills'] %} | |
| <li>{{ skill }}</li> | |
| {% endfor %} | |
| {% else %} | |
| <p class="no-data">No missing skills found.</p> | |
| {% endif %} | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="suggestion-section" style="flex: 1;"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#missing-skills-suggestions" aria-expanded="false" aria-controls="missing-skills-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="missing-skills-suggestions"> | |
| <ul> | |
| <li>Consider acquiring and adding any critical skills relevant to the job you are applying for.</li> | |
| <li>Look for online courses, certifications, or workshops to enhance your skillset.</li> | |
| <li>Update your resume to reflect the new skills as you acquire them.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="info-container"> | |
| <!-- Left Section: Grammar & Spelling Issues --> | |
| <div class="info-item left-section"> | |
| <div class="section-header"> | |
| <i class="fas fa-spell-check"></i> | |
| <div class="info-title">Grammar & Spelling Issues in Career Objective and Profile Summary:</div> | |
| </div> | |
| <div class="info-content"> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#grammar-issues" aria-expanded="false" aria-controls="grammar-issues"> | |
| <i class="fas fa-plus-circle"></i> Click here | |
| </button> | |
| <div class="collapse" id="grammar-issues"> | |
| {% if parsed_resume['section_grammar_check_issues'] %} | |
| {% for section, issues in parsed_resume['section_grammar_check_issues'].items() %} | |
| <div class="info-subitem"> | |
| <div class="subsection-header">{{ section }} Grammar & Spelling Issues:</div> | |
| <ul> | |
| {% for issue in issues["grammar_issues"] %} | |
| <li> | |
| <strong>Context:</strong> {{ issue["context"] }} <br> | |
| <strong>Error:</strong> {{ issue["error"] }} <br> | |
| <strong>Suggestion:</strong> {{ issue["suggested_correction"] | join(", ") }} | |
| </li> | |
| {% endfor %} | |
| {% for issue in issues["spelling_errors"] %} | |
| <li> | |
| <strong>Context:</strong> {{ issue["context"] }} <br> | |
| <strong>Spelling Mistake:</strong> {{ issue["error"] }} <br> | |
| <strong>Suggestion:</strong> {{ issue["suggested_correction"] | join(", ") }} | |
| </li> | |
| {% endfor %} | |
| </ul> | |
| </div> | |
| {% endfor %} | |
| {% else %} | |
| <p class="no-data">No grammar or spelling issues found.</p> | |
| {% endif %} | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Right Section: Suggestions for Grammar Issues --> | |
| <div class="suggestion-section right-section"> | |
| <div class="section-header"> | |
| <i class="fas fa-lightbulb"></i> | |
| <div class="info-title">Tips & Hints:</div> | |
| </div> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#grammar-issues-suggestions" aria-expanded="false" aria-controls="grammar-issues-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| <div class="collapse" id="grammar-issues-suggestions"> | |
| <ul> | |
| <li>Proofread your career objective and profile summary for any grammatical errors.</li> | |
| <li>Use grammar-check tools like Grammarly to catch errors.</li> | |
| <li>Ensure sentence structure is clear and professional.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="container"> | |
| <div class="row"> | |
| <!-- Left Column: Parsed Resume Data --> | |
| <div class="col-md-6"> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-sort-amount-up"></i> | |
| <div class="info-title">Experience Order:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['experience_order_suggestion'] or 'No suggestion available.' }}</div> | |
| </div> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-briefcase"></i> | |
| <div class="info-title">Work Experience Check:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['work_experience_check'] or 'No issues found.' }}</div> | |
| </div> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-clock"></i> | |
| <div class="info-title">Project Length:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['project_length_suggestion'] or 'No suggestion available.' }}</div> | |
| </div> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-certificate"></i> | |
| <div class="info-title">Certifications:</div> | |
| </div> | |
| <div class="info-content"> | |
| {% if parsed_resume['certifications']['found'] %} | |
| <span style="color: green;">✔ {{ parsed_resume['certifications']['message'] }}</span> | |
| <br> | |
| <strong>Extracted Text:</strong> {{ parsed_resume['certifications']['text'] }} | |
| {% else %} | |
| <span style="color: red;">✖ No certification found.</span> | |
| {% endif %} | |
| </div> | |
| </div> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-graduation-cap"></i> | |
| <div class="info-title">Education Order:</div> | |
| </div> | |
| <div class="info-content">{{ parsed_resume['education_order_suggestion'] or 'No suggestion available.' }}</div> | |
| </div> | |
| </div> | |
| <!-- Right Column: Collapsible Suggestions --> | |
| <div class="col-md-6"> | |
| <div class="suggestion-section"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#experience-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="experience-suggestions"> | |
| <ul> | |
| <li>Ensure that your most recent experience appears at the top.</li> | |
| <li>Group related job experiences together.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="suggestion-section"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#work-experience-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="work-experience-suggestions"> | |
| <ul> | |
| <li>List your work experience in reverse chronological order.</li> | |
| <li>Fill employment gaps with freelance or consulting roles.</li> | |
| <li>Highlight achievements, not just responsibilities.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="suggestion-section"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#project-length-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="project-length-suggestions"> | |
| <ul> | |
| <li>Long-term projects (6+ months) show commitment.</li> | |
| <li>Use metrics to highlight project impact.</li> | |
| <li>Include short-term projects to demonstrate versatility.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="suggestion-section"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#certifications-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="certifications-suggestions"> | |
| <ul> | |
| <li>Add relevant industry certifications.</li> | |
| <li>Include well-known certifications from Coursera, Udemy, etc.</li> | |
| <li>Ensure your certifications are up to date.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="suggestion-section"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#education-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="education-suggestions"> | |
| <ul> | |
| <li>List your most recent education at the top.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="container"> | |
| <div class="row"> | |
| <!-- Left Column: Parsed Resume Data --> | |
| <div class="col-md-6"> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-link"></i> | |
| <div class="info-title">Recommended Blogs:</div> | |
| </div> | |
| <div class="info-content"> | |
| {% if parsed_resume['recommended_blogs'] %} | |
| <ul> | |
| {% for blog in parsed_resume['recommended_blogs'] %} | |
| <li><a href="{{ blog }}" target="_blank">{{ blog }}</a></li> | |
| {% endfor %} | |
| </ul> | |
| {% else %} | |
| No recommended blogs found. | |
| {% endif %} | |
| </div> | |
| </div> | |
| <div class="info-item"> | |
| <div class="section-header"> | |
| <i class="fas fa-youtube"></i> | |
| <div class="info-title">Recommended YouTube Links:</div> | |
| </div> | |
| <div class="info-content"> | |
| {% if parsed_resume['recommended_youtube_links'] %} | |
| <ul> | |
| {% for youtube_link in parsed_resume['recommended_youtube_links'] %} | |
| <li><a href="{{ youtube_link }}" target="_blank">{{ youtube_link }}</a></li> | |
| {% endfor %} | |
| </ul> | |
| {% else %} | |
| No recommended YouTube links found. | |
| {% endif %} | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Right Column: Collapsible Suggestions --> | |
| <div class="col-md-6"> | |
| <div class="suggestion-section"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#blogs-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="blogs-suggestions"> | |
| <ul> | |
| <li>Read blogs related to your field to stay updated with trends.</li> | |
| <li>Follow blogs from industry leaders for valuable insights.</li> | |
| <li>Engage by commenting or sharing key takeaways.</li> | |
| <li>Consider writing your own blog to showcase expertise.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="suggestion-section"> | |
| <p> | |
| <strong>Tips & Hints:</strong> | |
| <button class="btn-toggle" data-toggle="collapse" data-target="#youtube-suggestions"> | |
| <i class="fas fa-lightbulb"></i> Click here | |
| </button> | |
| </p> | |
| <div class="collapse" id="youtube-suggestions"> | |
| <ul> | |
| <li>Watch videos related to your industry or career growth.</li> | |
| <li>Take notes and apply key learnings to your resume or projects.</li> | |
| <li>Follow reputable channels for consistent learning.</li> | |
| <li>Use subtitles or playback speed to enhance comprehension.</li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.1/dist/umd/popper.min.js"></script> | |
| <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script> | |
| </body> | |
| </html> | |