<div class="preview-cv">
<div class="person-details">
<h1 class="person-name title">{{inputs.profile.fullname}}</h1>
<h3 class="sub-title">{{inputs.profile.designation}} {{inputs.profile.gender ? ' | ' + inputs.profile.gender : ''}} {{inputs.profile.experienceTotal ? ' | ' + inputs.profile.experienceTotal + ' experience' : ''}}</h3>
<hr>
</div>
<div class="career-objective">
<h2 class="title">Career Objective</h2>
<div class="objective description">
{{inputs.objective.description}}
</div>
</div>
<div class="skills-list">
<h2 class="title">Skills List</h2>
<ul class="skills">
<li class="skill" ng-repeat="skill in inputs.skills.list">
{{ skill | skilltext }}
</li>
</ul>
</div>
<div class="work-experience">
<h2 class="title">Work Experience</h2>
<div class="companies">
<div class="company" ng-repeat="company in inputs.companies.list">
<div class="main-title">
{{ company | companytext }}
</div>
<div class="projects">
<div class="project" ng-repeat="project in company.projects">
<div class="project-title">
{{ project | projecttext }}
</div>
<ul class="responsibilities">
<li class="responsibility" ng-repeat="responsibility in project.responsibilities">
{{ responsibility.value }}
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="educations">
<h2 class="title">Education Summary</h2>
<ul class="educations">
<li class="education" ng-repeat="education in inputs.educations.list">
{{ education | educationtext }}
</li>
</ul>
</div>
<div class="experiences">
<h2 class="title">Professional Experience</h2>
<ul class="experiences">
<li class="experience" ng-repeat="experience in inputs.experiences.list">
{{ experience.description }}
</li>
</ul>
</div>
<div class="activities">
<h2 class="title">Accomplishments</h2>
<ul class="activities">
<li class="activity" ng-repeat="activity in inputs.activities.list">
{{ activity.description }}
</li>
</ul>
</div>
<div class="interest-info">
<h2 class="title">Other Activities</h2>
<div class="interests">
<div class="interest">
<div class="main-title">
Interests / Hobbies
</div>
<ul class="hobbies">
<li class="activity" ng-repeat="activity in inputs.interest.hobbies.list">
{{ activity.value }}
</li>
</ul>
</div>
<div class="interest">
<div class="main-title">
Blogs / Websites
</div>
<ul class="blogs">
<li class="blog" ng-repeat="blog in inputs.interest.blogs.list">
{{ blog.value }}
</li>
</ul>
</div>
<div class="interest">
<div class="main-title">
Projects
</div>
<ul class="projects">
<li class="project" ng-repeat="project in inputs.interest.projects.list">
{{ project.value }}
</li>
</ul>
</div>
</div>
</div>
</div>