Changeset 2575241
- Timestamp:
- 07/30/2021 10:46:04 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
my-resume-builder/trunk/templates/my-resume.php
r2546877 r2575241 35 35 <img style="width:2em" src="<?php echo plugin_dir_url(__DIR__) . 'images/loc.jpg' ?>"> 36 36 <span class="pl-2"><?php 37 echo esc_html( $mrb_contact['address'] );37 echo ; 38 38 ?> 39 39 </span> … … 104 104 <div class="history-block col"> 105 105 <span style="font-size: 1vw; color: #454545;"> 106 <?php echo esc_html( $history['date_range'] )?>106 <?php ?> 107 107 </span><br> 108 108 <span style="font-weight: bold; color: #454545; font-size: 1.5vw;"> 109 <?php echo esc_html( $history['position'] )?>109 <?php echo ?> 110 110 </span><br> 111 111 <span style="font-size: 1vw; color: #454545;"> 112 <?php echo esc_html( $history['company'] )?>112 <?php echo ?> 113 113 </span><br> 114 <span><?php echo esc_html( $history['roles'] )?></span>114 <span><?php echo ?></span> 115 115 </div> 116 116 </div> … … 139 139 <?php foreach ($mrb_skills as $key => $skill) { 140 140 if (strpos($key, 'title') === 0) { // if it is a title 141 echo '<h4 class="section-title text-center">' . esc_html( $skill ). '</h4>';141 echo '<h4 class="section-title text-center">' . . '</h4>'; 142 142 continue; 143 143 } 144 144 ?> 145 145 <div class="skills-block col"> 146 <p><?php echo esc_html( $skill['skill_type'] )?></p>147 <p><?php echo esc_html( $skill['description'] )?></p>146 <p><?php echo ?></p> 147 <p><?php echo ?></p> 148 148 </div> 149 149 <?php … … 174 174 ?> 175 175 <div class="projects-block col"> 176 <p><?php echo esc_html( $project['project_type'] )?></p>177 <p><?php echo esc_html( $project['description'] )?></p>176 <p><?php echo ?></p> 177 <p><?php echo ?></p> 178 178 </div> 179 179 <?php
Note: See TracChangeset
for help on using the changeset viewer.