2017-08-13 11:41:35 +03:00
|
|
|
<aside class="col-sm-3 ml-auto blog-sidebar">
|
2017-01-09 00:14:11 +02:00
|
|
|
{{ if and (.Site.Params.sidebar) (isset .Site.Params.sidebar "about") }}
|
2016-09-02 10:18:18 +03:00
|
|
|
<section class="sidebar-module sidebar-module-inset">
|
2016-10-03 22:57:27 +03:00
|
|
|
<h4>{{ i18n "about" }}</h4>
|
2016-09-07 16:41:04 +03:00
|
|
|
<p>{{ .Site.Params.sidebar.about | markdownify }}</p>
|
2016-09-02 10:18:18 +03:00
|
|
|
</section>
|
2016-09-07 16:41:04 +03:00
|
|
|
{{ end }}
|
2016-08-28 22:44:18 +03:00
|
|
|
|
2017-01-09 00:14:11 +02:00
|
|
|
{{ if .Site.Params.sidebar }}
|
2017-03-11 16:20:50 -06:00
|
|
|
{{ partialCached "recent.html" .}}
|
2017-01-09 00:14:11 +02:00
|
|
|
{{ end }}
|
|
|
|
|
2016-09-08 15:00:23 +03:00
|
|
|
{{ with .Site.Menus.sidebar }}
|
2016-09-02 10:18:18 +03:00
|
|
|
<section class="sidebar-module">
|
2016-12-09 15:46:31 +01:00
|
|
|
<h4>{{ i18n "links" }}</h4>
|
2016-08-28 22:41:52 +03:00
|
|
|
<ol class="list-unstyled">
|
2016-09-08 15:00:23 +03:00
|
|
|
{{ range . }}
|
|
|
|
<li><a href="{{ .URL | absURL }}">{{ .Name }}</a></li>
|
|
|
|
{{ end }}
|
2016-08-28 22:41:52 +03:00
|
|
|
</ol>
|
2016-09-02 10:18:18 +03:00
|
|
|
</section>
|
2016-09-08 15:00:23 +03:00
|
|
|
{{ end }}
|
2016-09-02 10:18:18 +03:00
|
|
|
</aside><!-- /.blog-sidebar -->
|
2016-11-24 07:33:56 -05:00
|
|
|
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|