|
@@ -2,7 +2,7 @@
|
|
|
{{ $page := .page }}
|
|
|
|
|
|
<!-- About widget -->
|
|
|
-<div class="row" itemprop="author" itemscope itemtype="http://schema.org/Person">
|
|
|
+<div class="row" itemprop="author" itemscope itemtype="http://schema.org/Person" itemref="{{ if $.Site.Params.email }}person-email{{ end }}{{ if $.Site.Params.phone }} person-telephone{{ end }}{{ if $.Site.Params.address}} person-address{{ end }}">
|
|
|
<div class="col-xs-12 col-md-4">
|
|
|
<div id="profile">
|
|
|
|
|
@@ -16,19 +16,21 @@
|
|
|
<h2 itemprop="name">{{ $.Site.Params.name }}</h2>
|
|
|
<h3 itemprop="jobTitle">{{ $.Site.Params.role }}</h3>
|
|
|
{{ if $.Site.Params.organization }}
|
|
|
- <h3 itemprop="worksFor">
|
|
|
- {{ with $.Site.Params.organization_url }}<a href="{{ . }}" target="_blank">{{ end }}
|
|
|
- {{ $.Site.Params.organization }}
|
|
|
+ <h3 itemprop="worksFor" itemscope itemtype="http://schema.org/Organization">
|
|
|
+ {{ with $.Site.Params.organization_url }}<a href="{{ . }}" target="_blank" itemprop="url">{{ end }}
|
|
|
+ <span itemprop="name">{{ $.Site.Params.organization }}</span>
|
|
|
{{ if $.Site.Params.organization_url }}</a>{{ end }}
|
|
|
</h3>
|
|
|
{{ end }}
|
|
|
</div>
|
|
|
|
|
|
+ <link itemprop="url" href="{{ $.Site.BaseURL }}">
|
|
|
+
|
|
|
<ul class="social-icon" aria-hidden="true">
|
|
|
{{ range $.Site.Params.social }}
|
|
|
{{ $pack := or .icon_pack "fa" }}
|
|
|
<li>
|
|
|
- <a href="{{ .link | safeURL }}" target="_blank">
|
|
|
+ <a itemprop="sameAs" href="{{ .link | safeURL }}" target="_blank">
|
|
|
<i class="{{ $pack }} {{ $pack }}-{{ .icon }} big-icon"></i>
|
|
|
</a>
|
|
|
</li>
|