mirror of
https://github.com/JuanCanham/fresh-themes.git
synced 2024-11-12 20:00:11 +00:00
Rename "informatic" to "modern".
This commit is contained in:
parent
409c6732ee
commit
0424c6d15b
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
@ -7,7 +7,7 @@ main {
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Lato', sans-serif;
|
||||
font-family: 'Helvetica Neue', Helvetica, 'Lato', sans-serif;
|
||||
font-size: 15px;
|
||||
color: #333;
|
||||
line-height: 1.42857143;
|
||||
@ -92,13 +92,17 @@ a, a:visited {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.defunct {
|
||||
color: #989898;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#summary > p > strong {
|
||||
font-size: 150%;
|
||||
font-size: 1.25em;
|
||||
}
|
||||
|
||||
|
||||
@ -193,3 +197,7 @@ a, a:visited {
|
||||
text-transform: uppercase;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.res-label {
|
||||
font-style: italic;
|
||||
}
|
@ -83,9 +83,9 @@
|
||||
<span class="fa fa-lg fa-building"></span>
|
||||
{% r.work.forEach( function( proj, idx, ar) { %}
|
||||
{% if( proj.website && proj.website.length ) { %}
|
||||
<h4>{{ proj.position }}, <a href="{{ proj.website|raw }}">{{ proj.company }}</a></h4>
|
||||
<h4><span class="res-label">{{ proj.position }}</span>, <a href="{{ proj.website|raw }}">{{ proj.company }}</a></h4>
|
||||
{% } else { %}
|
||||
<h4>{{ proj.position }}, <span class="defunct">{{ proj.company }}</span></h4>
|
||||
<h4><span class="res-label">{{ proj.position }}</span>, <span class="defunct">{{ proj.company }}</span></h4>
|
||||
{% } %}
|
||||
<span class="tenure">{{ proj.startDate }}—{{ proj.endDate }}</span>
|
||||
{{ proj.summary|md }}
|
||||
@ -134,7 +134,7 @@
|
||||
</header>
|
||||
<span class="fa fa-lg fa-trophy"></span>
|
||||
{% r.awards.forEach( function( award, idx, ar) { %}
|
||||
<h4><em>{{ award.title }}</em>, {{ award.awarder }}</h4>
|
||||
<h4><span class="res-label">{{ award.title }}</span>, {{ award.awarder }}</h4>
|
||||
<span class="tenure">{{ award.date }}</span>
|
||||
{{ award.summary|md }}
|
||||
{% }); %}
|
||||
@ -151,13 +151,15 @@
|
||||
{% r.publications.forEach( function( pub, idx, ar) { %}
|
||||
<h4>
|
||||
{% if( pub.website ) { %}
|
||||
<a href="{{ pub.website }}" >{{ pub.name }}</a>, {{ pub.publisher }}
|
||||
<span class="res-label"><a href="{{ pub.website }}" ></span>{{ pub.name }}</a>, {{ pub.publisher }}
|
||||
{% } else { %}
|
||||
{{ pub.name }}, {{ pub.publisher }}
|
||||
<span class="res-label">{{ pub.name }}</span>, {{ pub.publisher }}
|
||||
{% } %}
|
||||
</h4>
|
||||
<span class="tenure">Published on: {{ pub.releaseDate }}</span>
|
||||
<p>{{ pub.summary }}</p>
|
||||
|
||||
{{ pub.summary|md }}
|
||||
|
||||
{% }); %}
|
||||
</section>
|
||||
{% } %}
|
||||
@ -171,9 +173,9 @@
|
||||
<span class="fa fa-lg fa-child"></span>
|
||||
{% r.volunteer.forEach( function( vol, idx, ar) { %}
|
||||
{% if( vol.website && vol.website.length ) { %}
|
||||
<h4>{{ vol.position }}, <a href="{{ vol.website|raw }}">{{ vol.organization }}</a></h4>
|
||||
<h4><span class="res-label">{{ vol.position }}</span>, <a href="{{ vol.website|raw }}">{{ vol.organization }}</a></h4>
|
||||
{% } else { %}
|
||||
<h4>{{ vol.position }}, <span class="defunct">{{ vol.organization }}</span></h4>
|
||||
<h4><span class="res-label">{{ vol.position }}</span>, <span class="defunct">{{ vol.organization }}</span></h4>
|
||||
{% } %}
|
||||
<span class="tenure">{{ vol.startDate }}—{{ vol.endDate }}</span>
|
||||
{{ vol.summary|md }}
|
Loading…
Reference in New Issue
Block a user