paprika/theme/default/sidebar.hbs
2020-04-11 21:01:23 +08:00

20 lines
901 B
Handlebars

<div class="sidebar">
<section class="avatar">
<img src="{{ blog.theme_config.avatar_url }}" />
</section>
<section class="introduction with-divider with-divider-right with-divider-center-mobile">
{{ blog.description }}
</section>
<section class="links with-divider with-divider-right with-divider-center-mobile">
<ul>
{{ #each blog.theme_config.nav_links }}
<li><a {{ #if this.target }}target="{{ this.target }}"{{ /if }} href="{{ this.url }}">{{ this.name }}</a></li>
{{ /each }}
</ul>
</section>
<section class="copyright">
Copyright © {{ cur_year }} {{ blog.title }}<br />
Powered by <a href="https://github.com/PeterCxy/paprika" target="_blank">paprika</a><br />
Hosted on <a href="https://workers.cloudflare.com/" target="_blank">Cloudflare Workers</a>
</section>
</div>