mirror of
https://github.com/aljazceru/Journal-ghost.git
synced 2025-12-28 10:34:23 +01:00
46 lines
1.7 KiB
Handlebars
46 lines
1.7 KiB
Handlebars
{{!< default}}
|
|
|
|
<main id="gh-main" class="gh-main gh-canvas">
|
|
{{#author}}
|
|
<section class="gh-pagehead">
|
|
{{#if profile_image}}
|
|
<img class="gh-author-image gh-pagehead-image" src="{{profile_image}}" alt="{{name}}">
|
|
{{else}}
|
|
<span class="gh-author-icon">{{> icons/avatar}}</span>
|
|
{{/if}}
|
|
|
|
<header class="gh-pagehead-content">
|
|
<h1 class="gh-author-name gh-pagehead-title">{{name}}</h1>
|
|
|
|
{{#if bio}}
|
|
<div class="gh-author-bio gh-pagehead-description">{{bio}}</div>
|
|
{{/if}}
|
|
|
|
<div class="gh-author-meta">
|
|
{{#if location}}
|
|
<span class="gh-author-location">📍 {{location}}</span>
|
|
{{/if}}
|
|
{{#if website}}
|
|
<a class="gh-author-website" href="{{website}}" target="_blank" rel="noopener">{{website}}</a>
|
|
{{/if}}
|
|
<div class="gh-author-social">
|
|
{{#if twitter}}
|
|
<a class="gh-author-twitter" href="{{twitter_url}}" target="_blank" rel="noopener">{{> icons/twitter}}</a>
|
|
{{/if}}
|
|
{{#if facebook}}
|
|
<a class="gh-author-facebook" href="{{facebook_url}}" target="_blank" rel="noopener">{{> icons/facebook}}</a>
|
|
{{/if}}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
</section>
|
|
{{/author}}
|
|
|
|
<div class="gh-feed">
|
|
{{#foreach posts}}
|
|
{{> loop}}
|
|
{{/foreach}}
|
|
</div>
|
|
|
|
<button class="gh-loadmore gh-btn">Load more issues</button>
|
|
</main> |