You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
437 B
24 lines
437 B
<div class="blog-post">
|
|
|
|
<!-- render post header -->
|
|
<div class="blog-post-head">
|
|
<h1>{{ .Title }}</h1>
|
|
</div>
|
|
|
|
{{ if .FImage }}
|
|
<div class="blog-post-head-image">
|
|
<img src="{{ .FImage }}"></img>
|
|
</div>
|
|
{{ end }}
|
|
|
|
<!-- render post -->
|
|
<div class="blog-post-content">
|
|
{{ .HTML }}
|
|
</div>
|
|
|
|
<!-- render post tailer -->
|
|
<div class="blog-post-tailer">
|
|
<h3>… … …</h3>
|
|
</div>
|
|
|
|
</div> |