LeCV - Creative responsive resume / CV template

Onepage and multipage


Don’t forget to rate if you enjoy the product!

Features

Contact Form:

To config contact form, open submit.php and edit :


  1. /* config start */
  2.  
  3. $emailAddress = 'you@gmail.com';
  4. $fromName="example company";
  5. $gmail=false;
  6.  
  7. /* NOTE: IF YOU RECIEVED THIS MESSAGE "Error Occured:Could not instantiate mail function." YOU SHOULD SET SMTP CONFIG
  8. * AND SET $SMTP VALUE TO TRUE */
  9.  
  10. /* config end */

if your host support Mail() function, set $gmail=false and enter email address and fromname, but if your server blocked mail() to prevent spamming, you should use SMTP,  so set $gmail=true and set SMTP configuration, I write here for gmail, and you can use another smtp server, just need to set right configuration:

 


  1. if($gmail){
  2.  
  3. $mail->IsSMTP();
  4. $mail->Host = "smtp.gmail.com";
  5. $mail->SMTPSecure = "ssl";
  6. $mail->Port = 465;
  7.  
  8.  
  9. // optional
  10. // used only when SMTP requires authentication
  11.  
  12. $mail->SMTPAuth = true;
  13. $mail->Username = 'GMAIL USERNAME';
  14. $mail->Password = 'YOUR GMAIL PASSWORD';
  15.  
  16. }

 


Other servers:


  1. Gmail
  2.  
  3. smtp_host: smtp.gmail.com
  4. smtp_port: 465
  5. smtp_ssl: 1

  1. - Hotmail
  2.  
  3. smtp_host: smtp.live.com
  4. smtp_port: 25 or 587
  5. smtp_start_tls: 1

  1. - Yahoo Mail Plus (currently a paid service)
  2.  
  3. smtp_host: smtp.mail.yahoo.com
  4. smtp_port: 25

There are some options for titles:

<h4 class="title-marked primary">About Me</h4>

 

 

 

<div class="le-title title-quote">
                            <h3 class="title">why working with me?</h3>
                            <p>
                                Here's what I do best!
                            </p>
                        </div>

 

 

 

 

   <div class="le-title title-iconic">
                            <span class="icon-gears"></span>
                            <h3 class="uppercase title">Skills</h3>
                        </div>

 

 

 

 

 <div class="iconic-box">
                                    <div class="head">
                                        <i class="icon-edit fa-3x "></i>
                                        <h4 class="uppercase">Design websites</h4>
                                    </div>

                                    <p>
                                        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla id dolor sollicitudin, viverra dui sit amet, fringilla turpis.
                                    </p>
                                </div>

 

 

 

 

 <a class="le-link" href="#">read more</a>

 

 

 

 

  <div class="services-item">
                            <span class="icon-basket"></span>
                            <h4 class="uppercase">e-commerce development</h4>
                            <p>Woocommerce, shopify </p>
                        </div>

 

 

 

 

      <div id="caption" class="le-box cut-up ">
                    <div class="square"></div>
                    <div class="first-part">
                        <h1>
                            Hi, I'm <strong class="dotted-text">JOHN DOE</strong> 

                        </h1>
                        <p>
                            front-end developer / webdesigner
                        </p>
                    </div>

                    <div class="second-part">
                        <ul class="social-icons">
                            <li><a class="fa fa-facebook" href="#facebook"></a></li>
                            <li><a class="fa fa-twitter" href="#twitter"></a></li>
                            <li><a class="fa fa-linkedin" href="#linkedin"></a></li>
                            <li><a class="fa fa-youtube" href="#youtube"></a></li>
                        </ul>
                    </div>
                </div>

Note: you can use cut-down class to use this version:

Start Here

Start Here

Start Here

Smooth scrolling disabled  by default, you can enable it by editing script.js 

find enableSmoothScroll=false and change it to true