-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathblog_post.html
More file actions
38 lines (32 loc) · 909 Bytes
/
blog_post.html
File metadata and controls
38 lines (32 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
layout: default
---
{% include fwd_back_link.ext %}
<hr>
<div class="blog-header">
<div class="row">
{% if page.avatar %}
<div class="col-md-3">
<img src="{{ page.avatar }}" alt="{{ page.author }}" width="100%" style="float:right">
</div>
<div class="col-md-9">
{% else %}
{% if page.photo %}
<div class="col-md-3">
<img src="{{ site.baseurl }}/images/{{ page.photo }}" alt="{{ page.author }}" width="100%" style="float:right">
</div>
<div class="col-md-9">
{% else %}
<div class="col-md-12">
{% endif %}
{% endif %}
<h1 class="blog-title">{{ page.title }}</h1>
</div>
</div>
<p class="blog-post-meta">{{ page.date | date_to_string }} by <a href="{{ page.url }}">{{ page.author }}</a></p>
</div>
<div class="row">
<div class="col-sm-12 blog-main">
{{ content }}
</div>
</div>