Welcome to mirror list, hosted at ThFree Co, Russian Federation.

page.hbs - github.com/roryg/ghostwriter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 022b024e244ab344372f2640e5a7fee23a0df937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{!< default}}

<div class="container">
    {{#post}}
        <article class="post-container {{post_class}}">
            <header class="post-header">
                <h1 class="post-title">{{title}}</h1>

                <p class="blog-description">{{@blog.description}}</p>
            </header>

            <div class="post-content clearfix">
                <img class="post-featured-image" src="{{image}}">

                {{{content}}}

                {{#if tags}}
                    <p class="post-tags"><span>Tagged:</span> {{tags}}</p>
                {{/if}}
            </div>
        </article>
    {{/post}}
</div>