paprika/theme/default/sidebar.hbs

16 lines
622 B
Handlebars
Raw Normal View History

2020-04-10 14:38:53 +02:00
<div class="sidebar">
<section class="avatar">
<img src="{{ blog.theme_config.avatar_url }}" />
</section>
2020-04-11 13:50:51 +02:00
<section class="introduction with-divider with-divider-right with-divider-center-mobile">
2020-04-10 14:38:53 +02:00
{{ blog.description }}
</section>
2020-04-11 13:50:51 +02:00
<section class="links with-divider with-divider-right with-divider-center-mobile">
2020-04-10 14:38:53 +02:00
<ul>
{{ #each blog.theme_config.nav_links }}
<li><a {{ #if this.target }}target="{{ this.target }}"{{ /if }} href="{{ this.url }}">{{ this.name }}</a></li>
2020-04-10 14:38:53 +02:00
{{ /each }}
</ul>
</section>
2020-04-14 13:55:41 +02:00
{{> copyright.hbs }}
2020-04-10 14:38:53 +02:00
</div>