blob: a56038220dff6579a926d9a33f7c484b605e8c79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<section class="visible-md visible-lg">
<hr>
{{ with .Site.GetPage "/about" }}
<h5><a href="/about/">ABOUT ME</a></h5>
{{ else }}
<h5>ABOUT ME</h5>
{{ end }}
{{ $sidebar := .Site.Params.sidebar }}
<div class="short-about">
{{ with $sidebar.avatar }}
<img src="{{ $sidebar.avatar }}" />
{{ end }}
{{ with $sidebar.bio }}
<p>{{ $sidebar.bio }}</p>
{{ end }}
<!-- SNS Link -->
{{ partial "sns-links.html" (dict "center" false "social" .Site.Params.social ) }}
</div>
</section>
|