20 lines
No EOL
901 B
Handlebars
20 lines
No EOL
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> |