Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- {{!< default}}
- {{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
-
- {{#author}}
- {{!-- Everything inside the #author tags pulls data from the author --}}
-
-
- {{> header background=cover_image}} {{!--Special header.hbs partial to generate the <header> tag--}}
- <div class="inner">
- {{> "site-nav"}}
- <div class="site-header-content">
- {{#if profile_image}}
- <img class="author-profile-image" src="{{profile_image}}" alt="{{name}}" />
- {{/if}}
- <h1 class="site-title">{{name}}</h1>
- {{#if bio}}
- <h2 class="author-bio">{{bio}}</h2>
- {{/if}}
- <div class="author-meta">
- {{#if location}}
- <div class="author-location">{{location}} <span class="bull">•</span></div>
- {{/if}}
- <div class="author-stats">
- {{plural ../pagination.total empty=(t "No posts") singular=(t "1 post") plural=(t "% posts")}}
- </div>
- {{#if website}}
- <a class="social-link social-link-wb" href="{{website}}" target="_blank" rel="noopener">{{> "icons/website"}}</a>
- {{/if}}
- {{#if twitter}}
- <a class="social-link social-link-tw" href="{{twitter_url}}" target="_blank" rel="noopener">{{> "icons/twitter"}}</a>
- {{/if}}
- {{#if facebook}}
- <a class="social-link social-link-fb" href="{{facebook_url}}" target="_blank" rel="noopener">{{> "icons/facebook"}}</a>
- {{/if}}
- <a class="social-link social-link-rss" href="{{url absolute="true"}}/rss/" target="_blank" rel="noopener">{{> "icons/rss"}}</a>
- </div>
- </div>
- </div>
- </header>
- {{/author}}
-
- {{!-- The main content area --}}
- <main id="site-main" class="site-main outer">
- <div class="inner">
-
- <div class="post-feed">
- {{#foreach posts}}
-
- {{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
- {{> "post-card"}}
-
- {{/foreach}}
- </div>
-
- </div>
- </main>
|