1
0
mirror of https://github.com/JuanCanham/fresh-themes.git synced 2024-11-22 16:20:11 +00:00

Compact: More enhancements.

This commit is contained in:
hacksalot 2015-12-18 14:49:12 -05:00
parent 2e2443fb05
commit d09a6b59a3
3 changed files with 35 additions and 22 deletions

View File

@ -175,7 +175,7 @@
<w:link w:val="Heading1Char"/> <w:link w:val="Heading1Char"/>
<w:rsid w:val="00505903"/> <w:rsid w:val="00505903"/>
<w:pPr> <w:pPr>
<w:spacing w:before="100" w:before-autospacing="on"/> <w:spacing w:before="100" w:before-autospacing="off"/>
<w:outlineLvl w:val="0"/> <w:outlineLvl w:val="0"/>
<w:pBdr> <w:pBdr>
<w:bottom w:val="single" w:sz="6" w:space="1" w:color="auto" /> <w:bottom w:val="single" w:sz="6" w:space="1" w:color="auto" />
@ -198,7 +198,7 @@
<w:link w:val="Heading2Char"/> <w:link w:val="Heading2Char"/>
<w:rsid w:val="00505903"/> <w:rsid w:val="00505903"/>
<w:pPr> <w:pPr>
<w:spacing w:before="120"/> <w:spacing w:before="60"/>
<w:outlineLvl w:val="1"/> <w:outlineLvl w:val="1"/>
</w:pPr> </w:pPr>
<w:rPr> <w:rPr>
@ -357,6 +357,7 @@
<w:kern w:val="28"/> <w:kern w:val="28"/>
<w:sz w:val="20"/> <w:sz w:val="20"/>
<w:sz-cs w:val="20"/> <w:sz-cs w:val="20"/>
<w:caps/>
</w:rPr> </w:rPr>
</w:style> </w:style>
<w:style w:type="character" w:styleId="TitleChar"> <w:style w:type="character" w:styleId="TitleChar">
@ -458,14 +459,15 @@
</w:pPr> </w:pPr>
<w:r> <w:r>
<w:rPr> <w:rPr>
<w:sz w:val="36"/> <w:sz w:val="28"/>
<w:b/>
</w:rPr> </w:rPr>
<w:t>{{ r.name }}</w:t> <w:t>{{ r.name }}</w:t>
</w:r> </w:r>
<w:r> <w:r>
<w:tab/> <w:tab/>
</w:r> </w:r>
<w:hlink w:dest="mailto:{{ r.contact.email }}"> <w:hlink w:dest="mailto:{{{ r.contact.email }}}">
<w:r wsp:rsidRPr="003876BF"> <w:r wsp:rsidRPr="003876BF">
<w:rPr> <w:rPr>
<w:rStyle w:val="Hyperlink"/> <w:rStyle w:val="Hyperlink"/>
@ -492,13 +494,13 @@
</w:rPr> </w:rPr>
<w:t> - </w:t> <w:t> - </w:t>
</w:r> </w:r>
<w:hlink w:dest="{{ r.contact.website }}"> <w:hlink w:dest="{{{ r.contact.website }}}">
<w:r wsp:rsidRPr="003876BF"> <w:r wsp:rsidRPr="003876BF">
<w:rPr> <w:rPr>
<w:rStyle w:val="Hyperlink"/> <w:rStyle w:val="Hyperlink"/>
<w:sz-cs w:val="20"/> <w:sz-cs w:val="20"/>
</w:rPr> </w:rPr>
<w:t>{{ r.contact.website }}</w:t> <w:t>{{trimURL r.contact.website }}</w:t>
</w:r> </w:r>
</w:hlink> </w:hlink>
</w:p> </w:p>

View File

@ -26,6 +26,11 @@ h3 {
font-size: 1em; font-size: 1em;
} }
hr {
border: none;
border-top: 1px solid #B3B3B3;
}
main { main {
padding: 15px; padding: 15px;
max-width: 700px; max-width: 700px;
@ -59,16 +64,22 @@ thead {
main > header { main > header {
width: 100%; width: 100%;
float: left; float: left;
margin-bottom: 1em; margin-bottom: 0;
position: relative;
} }
main > header > h1 { main > header > h1 {
float: left; float: left;
font-size: 1.5em; font-size: 1.5em;
text-transform: uppercase;
line-height: 1;
} }
#contact { #contact {
float: right; float: right;
position: absolute;
right: 0;
bottom: 0;
} }
#contact > div { #contact > div {

View File

@ -2,25 +2,25 @@
<html> <html>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{ r.name }}</title> <title>{{ RAW.name }}</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="compact-html.css" rel="stylesheet" type="text/css"> <link href="compact-html.css" rel="stylesheet" type="text/css">
</head> </head>
<body> <body>
<main> <main>
<header> <header>
<h1>{{ r.name }}</h1> <h1>{{{ r.name }}}</h1>
<div id="contact"> <div id="contact">
{{#if r.contact.email}}<div class="email"><a href="mailto:{{ RAW.contact.email }}">{{ r.contact.email }}</a></div>{{/if}} {{#if r.contact.email}}<div class="email"><a href="mailto:{{{ RAW.contact.email }}}">{{ RAW.contact.email }}</a></div>{{/if}}
{{#if r.contact.phone}}<div class="phone">{{ r.contact.phone }}</div>{{/if}} {{#if r.contact.phone}}<div class="phone">{{ RAW.contact.phone }}</div>{{/if}}
{{#if r.contact.website}}<div class="website"><a href="{{ RAW.contact.website }}">{{ r.contact.website }}</a></div>{{/if}} {{#if r.contact.website}}<div class="website"><a href="{{{ RAW.contact.website }}}">{{trimURL RAW.contact.website }}</a></div>{{/if}}
</div> </div>
</header> </header>
{{#if r.info.brief}} {{#if r.info.brief}}
<section id="summary"> <section id="summary">
{{ r.info.brief }} {{{ r.info.brief }}}
</section> </section>
{{/if}} {{/if}}
@ -57,7 +57,7 @@
<h2><span class="fa fa-building" style="vertical-align: top;"></span> Employment</h2><hr> <h2><span class="fa fa-building" style="vertical-align: top;"></span> Employment</h2><hr>
</header> </header>
{{#each r.employment.history }} {{#each r.employment.history}}
{{#compare @index 4 operator="<"}} {{#compare @index 4 operator="<"}}
<h3><em>{{ position }}</em>, <h3><em>{{ position }}</em>,
{{#if url }} {{#if url }}
@ -66,11 +66,11 @@
{{ employer }} {{ employer }}
{{/if}} {{/if}}
<span class="tenure">{{formatDate safe.start 'YYYY-MM' }} &mdash; {{formatDate safe.end 'YYYY-MM' }}<span></h3> <span class="tenure">{{formatDate safe.start 'YYYY-MM' }} &mdash; {{formatDate safe.end 'YYYY-MM' }}<span></h3>
<p style="clear: both;">{{ summary }}</p> <p style="clear: both;">{{{ summary }}}</p>
{{#if highlights}} {{#if highlights}}
<ul> <ul>
{{#each highlights}} {{#each highlights}}
<li>{{ this }}</li> <li>{{{ this }}}</li>
{{/each}} {{/each}}
</ul> </ul>
{{/if}} {{/if}}
@ -83,7 +83,7 @@
<ul> <ul>
{{/compare}} {{/compare}}
<li>{{ position }}, {{ employer }}</li> <li>{{{ position }}}, {{{ employer }}}</li>
{{#if @last}} {{#if @last}}
</ul> </ul>
@ -100,7 +100,7 @@
<h2><span class="fa fa-mortar-board"></span> Education</h2><hr> <h2><span class="fa fa-mortar-board"></span> Education</h2><hr>
</header> </header>
{{#each r.education.history}} {{#each r.education.history}}
<h3>{{ institution }} <span class="tenure">{{formatDate safe.start 'YYYY' }} &mdash; {{formatDate safe.end 'YYYY' }}<span></h3> <h3>{{{ institution }}} <span class="tenure">{{formatDate safe.start 'YYYY' }} &mdash; {{formatDate safe.end 'YYYY' }}<span></h3>
{{/each}} {{/each}}
</section> </section>
@ -119,11 +119,11 @@
{{ organization }} {{ organization }}
{{/if}} {{/if}}
<span class="tenure">{{formatDate safe.start 'YYYY' }} &mdash; {{formatDate safe.end 'YYYY' }}<span></h3> <span class="tenure">{{formatDate safe.start 'YYYY' }} &mdash; {{formatDate safe.end 'YYYY' }}<span></h3>
<p style="clear: both;">{{ summary }}</p> <p style="clear: both;">{{{ summary }}}</p>
{{#if highlights}} {{#if highlights}}
<ul> <ul>
{{#each highlights}} {{#each highlights}}
<li>{{ this }}</li> <li>{{{ this }}}</li>
{{/each}} {{/each}}
</ul> </ul>
{{/if}} {{/if}}
@ -138,9 +138,9 @@
<h2><span class="fa fa-book"></span> Writing</h2><hr> <h2><span class="fa fa-book"></span> Writing</h2><hr>
</header> </header>
{{#each r.writing }} {{#each r.writing }}
<h3><em>{{#if url}}<a href="{{ url }}">{{ title }}</a>{{else}}{{ title }}{{/if}}</em>, <h3><em>{{#if url}}<a href="{{{ url }}}">{{{ title }}}</a>{{else}}{{{ title }}}{{/if}}</em>,
{{ publisher }} <span class="tenure">{{formatDate safe.date 'YYYY'}}</span></h3> {{ publisher }} <span class="tenure">{{formatDate safe.date 'YYYY'}}</span></h3>
{{# if summary}}{{ summary }}{{/if}} {{# if summary}}{{{ summary }}}{{/if}}
{{/each}} {{/each}}
</section> </section>
{{/if}} {{/if}}