Reindent template

This commit is contained in:
Rafael Bardini 2018-11-18 01:04:17 -02:00
parent f203660e46
commit 0bc0d1afdc
1 changed files with 465 additions and 481 deletions

View File

@ -1,44 +1,34 @@
<!doctype html> <!doctype html>
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui"> <meta name="viewport" content="width=device-width, user-scalable=no, minimal-ui">
<title>{{#resume.basics}}{{name}}{{/resume.basics}}</title> <title>{{#resume.basics}}{{name}}{{/resume.basics}}</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.2.0/css/bootstrap.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/2.0.2/octicons.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/2.0.2/octicons.min.css">
<style type="text/css"> <style type="text/css">
{{{css}}} {{{css}}}
</style> </style>
</head> </head>
<body> <body>
<header id="header"> <header id="header">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-sm-9 col-sm-push-3"> <div class="col-sm-9 col-sm-push-3">
{{#resume.basics}} {{#resume.basics}}
{{#name}} {{#name}}
<h1> <h1>{{.}}</h1>
{{.}}
</h1>
{{/name}} {{/name}}
{{#label}} {{#label}}
<h2> <h2>{{.}}</h2>
{{.}}
</h2>
{{/label}} {{/label}}
{{/resume.basics}} {{/resume.basics}}
</div> </div>
</div> </div>
</div> </div>
</header> </header>
<div id="content" class="container">
<div id="content" class="container">
{{#resume.basics}} {{#resume.basics}}
<section id="contact" class="row"> <section id="contact" class="row">
<aside class="col-sm-3"> <aside class="col-sm-3">
@ -57,7 +47,9 @@
{{#phone}} {{#phone}}
<div class="col-sm-6"> <div class="col-sm-6">
<strong>Phone</strong> <strong>Phone</strong>
<div class="phone">{{.}}</div> <div class="phone">
{{.}}
</div>
</div> </div>
{{/phone}} {{/phone}}
{{#url}} {{#url}}
@ -91,9 +83,7 @@
{{#profiles}} {{#profiles}}
<div class="col-sm-6"> <div class="col-sm-6">
{{#network}} {{#network}}
<strong class="network"> <strong class="network">{{.}}</strong>
{{.}}
</strong>
{{/network}} {{/network}}
{{#if username}} {{#if username}}
<div class="username"> <div class="username">
@ -132,8 +122,7 @@
<h4 class="strike-through"> <h4 class="strike-through">
<span>{{name}}</span> <span>{{name}}</span>
<span class="date"> <span class="date">
{{formatDate startDate}} — {{formatDate startDate}} — {{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
{{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
</span> </span>
</h4> </h4>
{{#url}} {{#url}}
@ -178,8 +167,7 @@
<h4 class="strike-through"> <h4 class="strike-through">
<span>{{organization}}</span> <span>{{organization}}</span>
<span class="date"> <span class="date">
{{formatDate startDate}} — {{formatDate startDate}} — {{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
{{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
</span> </span>
</h4> </h4>
{{#url}} {{#url}}
@ -224,8 +212,7 @@
<h4 class="strike-through"> <h4 class="strike-through">
<span>{{institution}}</span> <span>{{institution}}</span>
<span class="date"> <span class="date">
{{formatDate startDate}} — {{formatDate startDate}} — {{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
{{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
</span> </span>
</h4> </h4>
{{#url}} {{#url}}
@ -270,8 +257,7 @@
<h4 class="strike-through"> <h4 class="strike-through">
<span>{{name}}</span> <span>{{name}}</span>
<span class="date"> <span class="date">
{{formatDate startDate}} — {{formatDate startDate}} — {{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
{{#if endDate}}{{formatDate endDate}}{{else}}Present{{/if}}
</span> </span>
</h4> </h4>
{{#url}} {{#url}}
@ -487,8 +473,6 @@
</div> </div>
</section> </section>
{{/if}} {{/if}}
</div> </div>
</body> </body>
</html> </html>