mirror of
				https://github.com/JuanCanham/fresh-themes.git
				synced 2025-10-31 21:07:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			79 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>{{ r.name }}</title>
 | |
|     <link href='https://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'>
 | |
|     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
 | |
|     {{{styleSheet "positive-pdf.css"}}}
 | |
|   </head>
 | |
|   <body>
 | |
|     <main>
 | |
|       <header>
 | |
|         <h1>{{{initialWords r.name }}} <span style="color: #C00000;">{{{lastWord r.name }}}</span></h1>
 | |
|         <span class="label">{{{ r.info.label }}}</span>
 | |
|         <p id="contact">
 | |
|           {{#if r.contact.email}}<span class="email"><a href="mailto:{{ RAW.contact.email }}">{{{ r.contact.email }}}</a></span>{{/if}}
 | |
|           {{#if r.contact.phone}}<span class="phone">{{{ r.contact.phone }}}</span>{{/if}}
 | |
|           {{#if r.contact.website}}<span class="website"><a href="{{ RAW.contact.website }}">{{{ r.contact.website }}}</a></span>{{/if}}
 | |
|         </p>
 | |
|       </header>
 | |
| 
 | |
| 
 | |
|       {{#has "info.brief"}}
 | |
|       <section id="summary">
 | |
|         {{{ r.info.brief }}}
 | |
|       </section>
 | |
|       {{/has}}
 | |
| 
 | |
| 
 | |
|       {{!<!--
 | |
|         Use predefined global partials for the other sections.
 | |
| 
 | |
|         The "inline" bit before each section allows us to pass a custom heading
 | |
|         icon into the global partial. For this theme, we're using Font Awesome.
 | |
|       -->}}
 | |
| 
 | |
|       {{#*inline "icon-skills"}}<span class="fa fa-lg fa-code"></span>{{/inline}}
 | |
|       {{> section/skills _icon="icon-skills"}}
 | |
| 
 | |
|       {{#*inline "icon-employment"}}<span class="fa fa-lg fa-building"></span>{{/inline}}
 | |
|       {{> section/employment _icon="icon-employment" }}
 | |
| 
 | |
|       {{#*inline "icon-projects"}}<span class="fa fa-lg fa-star"></span>{{/inline}}
 | |
|       {{> section/projects _icon="icon-projects"}}
 | |
| 
 | |
|       {{#*inline "icon-education"}}<span class="fa fa-lg fa-mortar-board"></span>{{/inline}}
 | |
|       {{> section/education _icon="icon-education"}}
 | |
| 
 | |
|       {{#*inline "icon-affiliation"}}<span class="fa fa-lg fa-share-alt"></span>{{/inline}}
 | |
|       {{> section/affiliation _icon="icon-affiliation"}}
 | |
| 
 | |
|       {{#*inline "icon-service"}}<span class="fa fa-lg fa-child"></span>{{/inline}}
 | |
|       {{> section/service _icon="icon-service"}}
 | |
| 
 | |
|       {{#*inline "icon-samples"}}<span class="fa fa-lg fa-share"></span>{{/inline}}
 | |
|       {{> section/samples _icon="icon-samples"}}
 | |
| 
 | |
|       {{#*inline "icon-writing"}}<span class="fa fa-lg fa-pencil"></span>{{/inline}}
 | |
|       {{> section/writing _icon="icon-writing"}}
 | |
| 
 | |
|       {{#*inline "icon-reading"}}<span class="fa fa-lg fa-book"></span>{{/inline}}
 | |
|       {{> section/reading _icon="icon-reading"}}
 | |
| 
 | |
|       {{#*inline "icon-recognition"}}<span class="fa fa-lg fa-trophy"></span>{{/inline}}
 | |
|       {{> section/recognition _icon="icon-recognition"}}
 | |
| 
 | |
|       {{#*inline "icon-speaking"}}<span class="fa fa-lg fa-users"></span>{{/inline}}
 | |
|       {{> section/speaking _icon="icon-speaking"}}
 | |
| 
 | |
|       {{#*inline "icon-testimonials"}}<span class="fa fa-lg fa-quote-left"></span>{{/inline}}
 | |
|       {{> section/testimonials _icon="icon-testimonials"}}
 | |
| 
 | |
|       {{#*inline "icon-references"}}<span class="fa fa-lg fa-thumbs-o-up"></span>{{/inline}}
 | |
|       {{> section/references _icon="icon-references"}}
 | |
| 
 | |
|     </div>
 | |
|   </main>
 | |
| </html>
 |