diff options
Diffstat (limited to 'layouts/partials/sections')
-rw-r--r-- | layouts/partials/sections/contacts.html | 2 | ||||
-rw-r--r-- | layouts/partials/sections/education.html | 2 | ||||
-rw-r--r-- | layouts/partials/sections/experience.html | 2 | ||||
-rw-r--r-- | layouts/partials/sections/projects.html | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/sections/contacts.html b/layouts/partials/sections/contacts.html index 7647243..b9ad0c5 100644 --- a/layouts/partials/sections/contacts.html +++ b/layouts/partials/sections/contacts.html @@ -1,6 +1,6 @@ <div class="align-center"> <h1 class="name">{{ .Site.Params.Name }}</h1> - <div class="font-small"> + <div class="subtitle"> {{ with .Site.Params.Phone }} <a href="tel:{{ . }}">{{ . }}</a><span> |</span> {{ end }} diff --git a/layouts/partials/sections/education.html b/layouts/partials/sections/education.html index 36a30c7..03b104c 100644 --- a/layouts/partials/sections/education.html +++ b/layouts/partials/sections/education.html @@ -7,7 +7,7 @@ <td><strong>{{ .Title }}</strong></td> <td class="align-right">{{ with .Params.location}}{{ . }}{{ end }}</td> </tr> - <tr> + <tr class="subtitle"> <td><em>{{ with .Params.degree}}{{ . }}{{ end }}</em> </td> <td class="align-right"><em> diff --git a/layouts/partials/sections/experience.html b/layouts/partials/sections/experience.html index 5991c8a..64e2406 100644 --- a/layouts/partials/sections/experience.html +++ b/layouts/partials/sections/experience.html @@ -23,7 +23,7 @@ {{ end }} </td> </tr> - <tr> + <tr class="subtitle"> <td><em>{{with .Params.workplace}}{{ . }}{{ end }}</em></td> <td class="align-right"><em>{{ with .Params.location}}{{ . }}{{ end }}</em></td> </tr> diff --git a/layouts/partials/sections/projects.html b/layouts/partials/sections/projects.html index 75289ea..1bc67b6 100644 --- a/layouts/partials/sections/projects.html +++ b/layouts/partials/sections/projects.html @@ -5,7 +5,7 @@ <tbody> <tr> <td><strong>{{ .Title }} </strong><span>|</span> - <em>{{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}</em> + <em class="subtitle">{{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}</em> </td> <td class="align-right"> {{ with .Params.start_date }} @@ -21,7 +21,7 @@ {{ else }} {{ time.Format "Jan. 2006" . }} {{ end }} - {{ else }}{{ "Present" }} + {{ else }}{{ "Present" }} {{ end }} </td> </tr> |