mirror of
				https://github.com/JuanCanham/fresh-themes.git
				synced 2025-10-30 20:37:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>{{ RAW.name }}</title>
 | |
|     {{{styleSheet "html.css"}}}
 | |
|   </head>
 | |
|   <body>
 | |
|     <main>
 | |
|       <header>
 | |
|         <h1>{{{ r.name }}}</h1>
 | |
|         <div id="contact">
 | |
|           {{#has 'contact.email'}}<div class="email"><a href="mailto:{{{ RAW.contact.email }}}">{{ RAW.contact.email }}</a></div>{{/has}}
 | |
|           {{#has 'contact.phone'}}<div class="phone">{{ RAW.contact.phone }}</div>{{/has}}
 | |
|           {{#has 'contact.website'}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{trimURL RAW.contact.website }}</a></div>{{/has}}
 | |
|         </div>
 | |
|       </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.
 | |
| -->}}
 | |
| 
 | |
| {{> section/skills }}
 | |
| 
 | |
| {{> section/employment }}
 | |
| 
 | |
| {{> section/projects }}
 | |
| 
 | |
| {{> section/education }}
 | |
| 
 | |
| {{> section/affiliation }}
 | |
| 
 | |
| {{> section/service }}
 | |
| 
 | |
| {{> section/samples }}
 | |
| 
 | |
| {{> section/writing }}
 | |
| 
 | |
| {{> section/reading }}
 | |
| 
 | |
| {{> section/recognition }}
 | |
| 
 | |
| {{> section/speaking }}
 | |
| 
 | |
| 
 | |
| 
 | |
|     </main>
 | |
|   </body>
 | |
| </html>
 |